icinga2/lib/perfdata/opentsdbwriter.ti

26 lines
382 B
Plaintext

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
library perfdata;
namespace icinga
{
class OpenTsdbWriter : ConfigObject
{
activation_priority 100;
[config] String host {
default {{{ return "127.0.0.1"; }}}
};
[config] String port {
default {{{ return "4242"; }}}
};
[config] bool enable_ha {
default {{{ return true; }}}
};
};
}