2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 13:44:31 -04:00
|
|
|
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configobject.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/application.hpp"
|
2013-10-26 03:41:45 -04:00
|
|
|
|
2015-08-04 08:47:44 -04:00
|
|
|
library perfdata;
|
|
|
|
|
|
2013-10-26 03:41:45 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2015-08-15 14:28:05 -04:00
|
|
|
class PerfdataWriter : ConfigObject
|
2013-10-26 03:41:45 -04:00
|
|
|
{
|
2019-02-19 08:06:15 -05:00
|
|
|
activation_priority 100;
|
2018-04-26 09:53:11 -04:00
|
|
|
|
2014-04-01 14:30:44 -04:00
|
|
|
[config] String host_perfdata_path {
|
2018-08-09 09:37:23 -04:00
|
|
|
default {{{ return Configuration::SpoolDir + "/perfdata/host-perfdata"; }}}
|
2013-10-26 03:41:45 -04:00
|
|
|
};
|
2014-04-01 14:30:44 -04:00
|
|
|
[config] String service_perfdata_path {
|
2018-08-09 09:37:23 -04:00
|
|
|
default {{{ return Configuration::SpoolDir + "/perfdata/service-perfdata"; }}}
|
2013-11-21 01:17:34 -05:00
|
|
|
};
|
2014-04-01 14:30:44 -04:00
|
|
|
[config] String host_temp_path {
|
2018-08-09 09:37:23 -04:00
|
|
|
default {{{ return Configuration::SpoolDir + "/tmp/host-perfdata"; }}}
|
2014-04-01 14:30:44 -04:00
|
|
|
};
|
|
|
|
|
[config] String service_temp_path {
|
2018-08-09 09:37:23 -04:00
|
|
|
default {{{ return Configuration::SpoolDir + "/tmp/service-perfdata"; }}}
|
2014-04-01 14:30:44 -04:00
|
|
|
};
|
|
|
|
|
[config] String host_format_template {
|
|
|
|
|
default {{{
|
|
|
|
|
return "DATATYPE::HOSTPERFDATA\t"
|
2017-12-19 09:50:05 -05:00
|
|
|
"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$";
|
2014-04-01 14:30:44 -04:00
|
|
|
}}}
|
|
|
|
|
};
|
|
|
|
|
[config] String service_format_template {
|
2013-10-26 03:41:45 -04:00
|
|
|
default {{{
|
|
|
|
|
return "DATATYPE::SERVICEPERFDATA\t"
|
2017-12-19 09:50:05 -05:00
|
|
|
"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 03:41:45 -04:00
|
|
|
}}}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[config] double rotation_interval {
|
|
|
|
|
default {{{ return 30; }}}
|
|
|
|
|
};
|
2018-10-24 08:07:36 -04:00
|
|
|
[config] bool enable_ha {
|
2019-03-27 10:29:03 -04:00
|
|
|
default {{{ return false; }}}
|
2018-10-24 08:07:36 -04:00
|
|
|
};
|
2013-10-26 03:41:45 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|