문제

I have several cron jobs (calling my PHP scripts via curl) in the background that are running. I'm trying to monitor their performance. Using top, I see a bunch of httpd commands -- but I have a feeling these do not represent the cron jobs (e.g. too many httpd exit for the cron tasks being called).

How can I know what the httpd processes are for sure? Are there any other tools I should be looking at to monitor my system?

도움이 되었습니까?

해결책

What you want is to look in /proc/[pid]/status.

다른 팁

You can get a hierarchically overview about your running processes with ps efaux or pstree -A -p
Maybe that helps.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top