I have a Kubernetes Cluster running with 3 nodes setup. Things were running smooth but from 27th March onwards, I see a sudden spike in Outgoing Max going as high as 1 GB/s which is leading to massive Public Bandwidth usage for the droplet. Please help me dignose this.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
Is it only the bandwidth that has increased or is it also the CPU and memory?
I could suggest checking a few things:
Check your logs to see if there is any suspicious amount of traffic hitting the cluster
Check your network connections using
netstat -cWplant
Use
lsof -i |grep -v 'localhost'
to check all open files matching an internet addressUse
ntop
to monitor the network activity on a process levelBest,
Bobby