Skip to content

Instantly share code, notes, and snippets.

@thbkrkr
Last active March 1, 2020 10:14
Show Gist options
  • Select an option

  • Save thbkrkr/0e777fafc97b8e1888eae96e13628387 to your computer and use it in GitHub Desktop.

Select an option

Save thbkrkr/0e777fafc97b8e1888eae96e13628387 to your computer and use it in GitHub Desktop.
Basic perfs checks
# top 5 CPU processes
ps -eo pcpu,comm= --sort=-pcpu | head -n 5
# top 5 MEM processes
ps -eo pmem,comm= --sort=-pmem | head -n 5
# sort tcp open connections
echo "TCP ACTIVE CONN"
netstat -ant | tail -n +3 | awk '{print $6}' | sort | uniq -c | sed -e 's/^\s*/ /' | sort -rn
# show established
ss state established | awk '{print $5}' | sort | uniq -c | sort -nr | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment