]> git.pld-linux.org Git - packages/nagios-nrpe.git/blame - commands.cfg
cleanup unused macro
[packages/nagios-nrpe.git] / commands.cfg
CommitLineData
ea740bab
ER
1# COMMAND DEFINITIONS
2# Command definitions that this daemon will run. Definitions
3# are in the following format:
4#
5# command[<command_name>]=<command_line>
6#
7# When the daemon receives a request to return the results of <command_name>
8# it will execute the command specified by the <command_line> argument.
9#
10# Unlike Nagios, the command line cannot contain macros - it must be
11# typed exactly as it should be executed.
12#
13# Note: Any plugins that are used in the command lines must reside
14# on the machine that this daemon is running on! The examples below
15# assume that you have plugins installed in a /usr/local/nagios/libexec
16# directory. Also note that you will have to modify the definitions below
17# to match the argument format the plugins expect. Remember, these are
18# examples only!
19
20
21# The following examples use hardcoded command arguments...
22
23#command[check_users]=/usr/lib/nagios/check_users -w 5 -c 10
24#command[check_load]=/usr/lib/nagios/check_load -w 15,10,5 -c 30,25,20
25#command[check_hda1]=/usr/lib/nagios/check_disk -w 20% -c 10% -p /dev/hda1
26#command[check_zombie_procs]=/usr/lib/nagios/check_procs -w 5 -c 10 -s Z
27#command[check_total_procs]=/usr/lib/nagios/check_procs -w 150 -c 200
28
29
30# The following examples allow user-supplied arguments and can
31# only be used if the NRPE daemon was compiled with support for
32# command arguments *AND* the dont_blame_nrpe directive in this
33# config file is set to '1'. This poses a potential security risk, so
34# make sure you read the SECURITY file before doing this.
35
36#command[check_users]=/usr/lib/nagios/check_users -w $ARG1$ -c $ARG2$
37#command[check_load]=/usr/lib/nagios/check_load -w $ARG1$ -c $ARG2$
38#command[check_disk]=/usr/lib/nagios/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
39#command[check_procs]=/usr/lib/nagios/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$
This page took 0.035893 seconds and 4 git commands to generate.