如何获得 CPU 和内存使用率
我想知道 php 中的内存和 CPU 使用情况,因为我使用 cronejobs 有时 CPU 过载,所以在这种情况下我不想启动更多进程,我只想跳过这个 cron.>
I want to know the memory and CPU usage in php, because I'm using cronejobs sometimes the CPU is overloaded so in this case I don't wan to start more process, I just want to skip this cron.
推荐答案
我认为更好的方法是获取 load avarage,因为它不仅取决于 CPU,还取决于 HDD 速度.
I think better way is get load avarage, because it depends not only on CPU, but on HDD speed also.
这是一个文档:http://php.net/manual/en/function.sys-getloadavg.php
相关文章