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_minecraft_java_version" {
10
	// PLEASE ADJUST THIS PATH
11
	command = [ "/daten/vnag/bin/minecraft_java_version.phar" ]
12
 
13
	arguments = {
14
		"-d" = {
15
			value = "$vnag_minecraft_java_version_dir$"
16
			description = "Location where the Minecraft for Java server.jar is located"
17
			required = true
18
		}
19
	}
20
}
21
 
22
// Example usage:
23
//
24
// apply Service "example_server1_minecraft_java_version" {
25
//	import "generic-service"
26
//	check_command = "vnag_minecraft_java_version"
27
//	vars = {
28
//		vnag_minecraft_java_version_dir = "/home/minecraft/minecraft*/server.jar"
29
//	}
30
//	assign where host.name == NodeName
31
// }