Linux CPU 사용량
cpu 전체값 = (user모드 + nice user 모드 + system 모드 + idle 상태)user 모드 사용율 = (user모드 / cpu 전체값) * 100user 모드 사용율 = (user 모드 * 100) / cpu 전체값 [ec2-user@toast-019 ~]$ grep 'cpu ' /proc/statcpu 1291418 1501 335382 927676464 130888 0 16998 42896 0 0 [ec2-user@toast-019 ~]$ grep 'cpu ' /proc/stat | awk '{usage=($2+$4)*100/($2+$4+$5)} END {print usage}'0.175057 [ec2-user@toast-019 ~]$ top -b -n 1 | grep ^CpuC..
카테고리 없음
2017. 5. 26. 10:50