xiwizard_printer_host - arguments

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
briannd81
Posts: 31
Joined: Sun May 03, 2015 5:41 pm

xiwizard_printer_host - arguments

Post by briannd81 »

Does xiwizard_printer_ping_servicetakes any default arguments similar to check_host_alive?

For example, check_host_alive pass in the following

$USER1$/check_icmp -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 5
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: xiwizard_printer_host - arguments

Post by lmiltchev »

The "xiwizard_printer_ping_service" is one of the default service templates. See below how it is defined:

Code: Select all

define service {
       name                          		xiwizard_printer_ping_service
       use                           		xiwizard_generic_service
       check_command                 		check_xi_service_ping!3000.0!80%!5000.0!100%
       register                    		0

}
It uses the "check_xi_service_ping" command:

Code: Select all

define command {
       command_name                  		check_xi_service_ping
       command_line                  		$USER1$/check_icmp -H $HOSTADDRESS$ -w $ARG1$,$ARG2$ -c $ARG3$,$ARG4$ -p 5
}
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked