You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1001 B
Bash
33 lines
1001 B
Bash
#!/bin/sh
|
|
|
|
# SUBMIT_HOST_CHECK_RESULT
|
|
# Written by Ethan Galstad (egalstad@nagios.org)
|
|
# Last Modified: 02-18-2002
|
|
#
|
|
# This script will write a command to the Nagios command
|
|
# file to cause Nagios to process a passive service check
|
|
# result. Note: This script is intended to be run on the
|
|
# same host that is running Nagios. If you want to
|
|
# submit passive check results from a remote machine, look
|
|
# at using the nsca addon.
|
|
#
|
|
# Arguments:
|
|
# $1 = host_name (Short name of host that the service is
|
|
# associated with)
|
|
# $2 = return_code (An integer that determines the state
|
|
# of the service check, 0=UP, 1=DOWN, 2=UNREACHABLE,
|
|
#
|
|
|
|
echocmd="/bin/echo"
|
|
|
|
CommandFile="/usr/local/nagios/var/rw/nagios.cmd"
|
|
|
|
# get the current date/time in seconds since UNIX epoch
|
|
datetime=`date +%s`
|
|
|
|
# create the command line to add to the command file
|
|
cmdline="[$datetime] PROCESS_HOST_CHECK_RESULT;$1;$2;$3"
|
|
|
|
# append the command to the end of the command file
|
|
`$echocmd $cmdline >> $CommandFile`
|