################################################################################
# Sample object config file for Nagios
#
# Read the documentation for more information on this configuration file. I've
# provided some comments here, but things may not be so clear without further
# explanation, so make sure to read the HTML documentation!
#
# Last Modified: 05-27-2002
#
################################################################################
################################################################################
# COMMAND DEFINITIONS
#
# SYNTAX:
#
# define command{
# template <templatename>
# name <objectname>
# command_name <commandname>
# command_line <commandline>
# }
#
# WHERE:
#
# <templatename> = object name of another command definition that should be
# used as a template for this definition (optional)
# <objectname> = object name of command definition, referenced by other
# command definitions that use it as a template (optional)
# <commandname> = name of the command, as recognized/used by Nagios
# <commandline> = command line
#
################################################################################
# 'check_http_bind_5280' command definition
define command{
command_name check_http_bind_5280
command_line /usr/lib/nagios/plugins/check_http -H $HOSTADDRESS$ -p 5280 -u /http-bind/
}
# 'check_ping_google' command definition
define command{
command_name check_ping_google
command_line /usr/lib/nagios/plugins/check_fping -H google.com -w 300,1% -c 700,2% -n 20
}