Skip to content

Instantly share code, notes, and snippets.

@loveky
Last active December 22, 2015 15:19
Show Gist options
  • Save loveky/6492076 to your computer and use it in GitHub Desktop.
Save loveky/6492076 to your computer and use it in GitHub Desktop.

查看当前系统中占用物理内存最多的进程

watch -n 10 "ps -eo pid,user,%cpu,%mem,rss,vsz,sz,comm,args | sort -k5 -n -r |head -15"

查看磁盘IO

iostat -d -x -h xvda 2
netstat -ntu | grep ESTAB | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr
netstat -plan|grep :80|awk {'print $5'}|cut -d: -f 1|sort|uniq -c|sort -nk 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment