icinga2/lib/perfdata/graphitewriter.ti

23 lines
423 B
Plaintext
Raw Normal View History

2014-05-25 16:23:35 +02:00
#include "base/dynamicobject.hpp"
2013-10-26 09:41:45 +02:00
namespace icinga
{
class GraphiteWriter : DynamicObject
{
[config] String host {
default {{{ return "127.0.0.1"; }}}
};
[config] String port {
default {{{ return "2003"; }}}
};
[config] String host_name_template {
default {{{ return "icinga.$host.name$"; }}}
};
[config] String service_name_template {
default {{{ return "icinga.$host.name$.$service.name$"; }}}
};
2013-10-26 09:41:45 +02:00
};
}