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.
|
|
|
I think better way is get load avarage, because it depends not only on CPU, but on HDD speed also. Here is a doc: http://php.net/manual/en/function.sys-getloadavg.php |
|||||
|
|
Take a look at this library http://phpsysinfo.sourceforge.net/ Demo: http://phpsysinfo.sourceforge.net/phpsysinfo/index.php?disp=dynamic Edit: This was taken from Stephen's comment. I put it here just so that it gets enough exposure for people to read.
|
|||||||
|
|
I recently have some issue to get CPU load and i feel like sharing it . Here was my solution witch help me out : My situation : I've use Zend Framework 1.2 to build monitoring application and i want to get cpu load and show it on the page . after doing some research i found out i could use COM Object and query the Win OS with wmi so i put these code to my init function :
And i added an Action and an function to use that wmi and get cpu load any time i want by calling that function .
Hope it help . |
|||
|
|