jackbwa

Member
May 1, 2010
11
0
51
Hello
I’m searching for cpu log for my server.
Tried to check the page server status – daily process log. But there is nothing and going back in days also show nothing.
Why the daily process log is clean and where can I find a log of cpu usage?
Thanks
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,267
463
Hello :)

You can view the logs within the following directory for this information:

Code:
/var/log/dcpumon
This data is processed by the following cron job:

Code:
*/5 * * * * /usr/local/cpanel/bin/dcpumon >/dev/null 2>&1
Check to see if this cron job exists on your system by running a command such as:

Code:
crontab -l
Then, make sure the crond service is running:
Code:
pidof crond
service crond restart
Thank you.