Home Directory Plugins Operating Systems Windows NRPE check_essential_processes (windows)

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_essential_processes (windows)

Rating
0 votes
Favoured:
0
Last Release Date
2014-09-12
Compatible With
  • Nagios 3.x
Hits
15576
Files:
FileDescription
check_essential_processes.plcheck_essential_processes.pl
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
check_essential_processes takes a space-separated list of processes and returns critical if any are not running.

This is written in perl, so requires a perl environment to run. It runs great under tinyperl, and my preferred use is to compile before deploying to clients. I put the perl runtime, and all of my scripts under nsclient++/scripts/perl
define host{
_ESSENTIALPROCS importantprogram notice_no_dot_exe
}

define command{
command_name check_essential_procs
command_line $USER1$/check_nrpe -t 10 -H $HOSTADDRESS$ -c check_essential_proc -a "$_HOSTESSENTIALPROCS$"
}

define service{
check_command check_essential_procs
}

nsclient.ini:

[/settings/external scripts/scripts]
check_essential_proc = scriptsperlcheck_essential_processes.exe "$ARG1$"