Last active
March 1, 2020 10:14
-
-
Save thbkrkr/0e777fafc97b8e1888eae96e13628387 to your computer and use it in GitHub Desktop.
Basic perfs checks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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