icinga2/lib/remote/endpoint.ti

26 lines
398 B
Plaintext
Raw Normal View History

2013-10-26 09:41:45 +02:00
#include "base/dynamicobject.h"
namespace icinga
{
class Endpoint : DynamicObject
{
[config] String host;
[config] String port {
default {{{ return "5665"; }}}
};
[config] double keep_alive {
default {{{ return 300; }}}
};
[config] double log_duration {
default {{{ return 86400; }}}
};
2013-10-26 09:41:45 +02:00
[state] double local_log_position;
[state] double remote_log_position;
bool syncing;
2013-10-26 09:41:45 +02:00
};
}