Home Directory Plugins Operating Systems Linux check ps cpu - simple bash script

Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check ps cpu - simple bash script

Rating
0 votes
Favoured:
0
Owner
License
Other
Hits
145799
Files:
FileDescription
check_ps_cpucheck_ps_cpu
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
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...