Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check ps cpu - simple bash script
Simple bash script, to check the output of ps for a defined service/program name and it's cpu usage.
Usage: check_ps_cpu -w <warning> -c <critical> -p <process name>
Returns a warning/critical message, when the cpu usage is above the threshold or when the monitored service is not running at all.
Can be easily adopted to monitor other values of ps, by adding your own ps parameters in the following line
--- snipp ---
CHECK_PROCESS="$(/bin/ps -eo pcpu,comm,user,pid,time | sort -rnk1 | grep $PROCESS)"
--- snipp ---
Be warned about my poor programming skillz. Just thought this script might be useful for someone, so i added it here...
Usage: check_ps_cpu -w <warning> -c <critical> -p <process name>
Returns a warning/critical message, when the cpu usage is above the threshold or when the monitored service is not running at all.
Can be easily adopted to monitor other values of ps, by adding your own ps parameters in the following line
--- snipp ---
CHECK_PROCESS="$(/bin/ps -eo pcpu,comm,user,pid,time | sort -rnk1 | grep $PROCESS)"
--- snipp ---
Be warned about my poor programming skillz. Just thought this script might be useful for someone, so i added it here...
Reviews (0)
Be the first to review this listing!