php怎么获取centos的cpu当前使用率
时间:2021-07-01 10:21:17
帮助过:188人阅读
php如何获取centos的cpu当前使用率
如题。
我用
$str = shell_exec('more /proc/stat');
或者
popen('top -b -n 2 | grep -E "(Cpu)"',"r");
取的好象都不准确,每次都是0.4%,但在服务器上用top查看 变化是0.7,1.0,14.....
一般如何快速获取啊
分享到:
------解决方案--------------------LINUX下查看CPU使用率的命令
------解决方案--------------------
你的系统有安装sysstat么,可以使用mpstat、sar等
http://www.cyberciti.biz/tips/how-do-i-find-out-linux-cpu-utilization.html