2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-08-04 14:47:44 +02:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2015-01-28 10:57:34 +01:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library perfdata;
|
|
|
|
|
2015-01-28 10:57:34 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
class OpenTsdbWriter : ConfigObject
|
2015-01-28 10:57:34 +01:00
|
|
|
{
|
2019-02-19 14:06:15 +01:00
|
|
|
activation_priority 100;
|
2018-04-26 15:53:11 +02:00
|
|
|
|
2015-01-28 10:57:34 +01:00
|
|
|
[config] String host {
|
|
|
|
default {{{ return "127.0.0.1"; }}}
|
|
|
|
};
|
|
|
|
[config] String port {
|
|
|
|
default {{{ return "4242"; }}}
|
|
|
|
};
|
2018-10-24 13:55:19 +02:00
|
|
|
[config] bool enable_ha {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
2015-01-28 10:57:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|