Subversion Repositories vnag

Rev

Rev 35 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 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
//
79 daniel-mar 7
// Revision 2023-10-14
2 daniel-mar 8
 
9
object CheckCommand "vnag_mdstat" {
35 daniel-mar 10
	// PLEASE ADJUST THIS PATH
79 daniel-mar 11
	command = [ "/daten/vnag/bin/mdstat.phar" ]
2 daniel-mar 12
 
13
	arguments = {
14
		"-v" = {
15
			set_if = "$vnag_mdstat_verbose$"
16
			description = "Additionally list drives which are OK, not just the drives which have failed."
17
		}
18
	}
19
}
20
 
21
// Example usage:
22
//
23
// apply Service "example_mdstat" {
24
//	import "generic-service"
25
//	check_command = "vnag_mdstat"
26
//	vars = {
27
//		vnag_mdstat_verbose = false
28
//	}
29
//	assign where host.name == NodeName
30
// }