Subversion Repositories vnag

Rev

Rev 80 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
80 daniel-mar 1
// Put this file in /etc/icinga2/conf.d/...
2
 
3
// VNag - Nagios Framework for PHP
4
// Developed by Daniel Marschall, ViaThinkSoft <www.viathinksoft.com>
5
// Licensed under the terms of the Apache 2.0 license
6
//
7
// Revision 2023-10-14
8
 
9
object CheckCommand "vnag_ping" {
10
	// PLEASE ADJUST THIS PATH
11
	command = [ "/daten/vnag/bin/ping.phar" ]
12
 
13
	arguments = {
14
		"-H" = {
15
			value = "$vnag_ping_hostname$"
16
			description = "Hostname or IP address to be pinged"
17
		}
18
	}
19
}
20
 
21
// Example usage:
22
//
23
// apply Service "example_ping" {
24
//	import "generic-service"
25
//	check_command = "vnag_ping"
26
//	vars = {
27
//		vnag_ping_hostname = "example.com"
28
//	}
29
//	assign where host.name == NodeName
30
// }