icinga2/lib/perfdata/opentsdbwriter.ti
Michael Friedrich 0466316019 Quality: Rewrite OpenTSDB to use Boost ASIO and I/O engine
The connection handling and code isn't really good, but not
really actively maintained either.

Besides that, the "telnet" method doesn't allow for TLS,
this needs a general rewrite against their HTTP API.

I've also added function documentation where applicable.
2019-05-27 15:09:26 +02:00

31 lines
493 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 false; }}}
};
[no_user_modify] bool connected;
[no_user_modify] bool should_connect {
default {{{ return true; }}}
};
};
}