summaryrefslogtreecommitdiffstats
path: root/lib/perfdata/perfdatawriter.ti
blob: d6d99e8d3076e734addc4848fa8baeb4114080df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#include "base/configobject.hpp"
#include "base/application.hpp"

library perfdata;

namespace icinga
{

class PerfdataWriter : ConfigObject
{
	activation_priority 100;

	[config] String host_perfdata_path {
		default {{{ return Configuration::SpoolDir + "/perfdata/host-perfdata"; }}}
	};
	[config] String service_perfdata_path {
		default {{{ return Configuration::SpoolDir + "/perfdata/service-perfdata"; }}}
	};
	[config] String host_temp_path {
		default {{{ return Configuration::SpoolDir + "/tmp/host-perfdata"; }}}
	};
	[config] String service_temp_path {
		default {{{ return Configuration::SpoolDir + "/tmp/service-perfdata"; }}}
	};
	[config] String host_format_template {
		default {{{
			return "DATATYPE::HOSTPERFDATA\t"
				"TIMET::$host.last_check$\t"
				"HOSTNAME::$host.name$\t"
				"HOSTPERFDATA::$host.perfdata$\t"
				"HOSTCHECKCOMMAND::$host.check_command$\t"
				"HOSTSTATE::$host.state$\t"
				"HOSTSTATETYPE::$host.state_type$";
		}}}
	};
	[config] String service_format_template {
		default {{{
			return "DATATYPE::SERVICEPERFDATA\t"
				"TIMET::$service.last_check$\t"
				"HOSTNAME::$host.name$\t"
				"SERVICEDESC::$service.name$\t"
				"SERVICEPERFDATA::$service.perfdata$\t"
				"SERVICECHECKCOMMAND::$service.check_command$\t"
				"HOSTSTATE::$host.state$\t"
				"HOSTSTATETYPE::$host.state_type$\t"
				"SERVICESTATE::$service.state$\t"
				"SERVICESTATETYPE::$service.state_type$";
		}}}
	};

	[config] double rotation_interval {
		default {{{ return 30; }}}
	};
	[config] bool enable_ha {
		default {{{ return false; }}}
	};
};

}