icinga2/lib/perfdata/perfdatawriter.ti

62 lines
1.6 KiB
Plaintext
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
2014-05-25 16:23:35 +02:00
#include "base/application.hpp"
2013-10-26 09:41:45 +02:00
library perfdata;
2013-10-26 09:41:45 +02:00
namespace icinga
{
class PerfdataWriter : ConfigObject
2013-10-26 09:41:45 +02:00
{
activation_priority 100;
[config] String host_perfdata_path {
2018-08-09 15:37:23 +02:00
default {{{ return Configuration::SpoolDir + "/perfdata/host-perfdata"; }}}
2013-10-26 09:41:45 +02:00
};
[config] String service_perfdata_path {
2018-08-09 15:37:23 +02:00
default {{{ return Configuration::SpoolDir + "/perfdata/service-perfdata"; }}}
};
[config] String host_temp_path {
2018-08-09 15:37:23 +02:00
default {{{ return Configuration::SpoolDir + "/tmp/host-perfdata"; }}}
};
[config] String service_temp_path {
2018-08-09 15:37:23 +02:00
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 {
2013-10-26 09:41:45 +02:00
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$";
2013-10-26 09:41:45 +02:00
}}}
};
[config] double rotation_interval {
default {{{ return 30; }}}
};
[config] bool enable_ha {
default {{{ return false; }}}
};
2013-10-26 09:41:45 +02:00
};
}