]> granicus.if.org Git - icinga2/blob - lib/perfdata/opentsdbwriter.ti
Merge pull request #7124 from Icinga/bugfix/namespace-thread-safe
[icinga2] / lib / perfdata / opentsdbwriter.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2  
3 #include "base/configobject.hpp"
4
5 library perfdata;
6
7 namespace icinga
8 {
9
10 class OpenTsdbWriter : ConfigObject
11 {
12         activation_priority 100;
13
14         [config] String host {
15                 default {{{ return "127.0.0.1"; }}}
16         };
17         [config] String port {
18                 default {{{ return "4242"; }}}
19         };
20         [config] bool enable_ha {
21                 default {{{ return false; }}}
22         };
23 };
24
25 }