mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
17 lines
227 B
Plaintext
17 lines
227 B
Plaintext
#include "base/dynamicobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class OpenTsdbWriter : DynamicObject
|
|
{
|
|
[config] String host {
|
|
default {{{ return "127.0.0.1"; }}}
|
|
};
|
|
[config] String port {
|
|
default {{{ return "4242"; }}}
|
|
};
|
|
};
|
|
|
|
}
|