mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-21 08:51:10 -05:00
24 lines
438 B
Text
24 lines
438 B
Text
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class Endpoint : DynamicObject
|
|
{
|
|
[config] String host;
|
|
[config] String port;
|
|
[config] Array::Ptr config_files;
|
|
[config] Array::Ptr config_files_recursive;
|
|
[config] Array::Ptr accept_config;
|
|
|
|
[state] double seen;
|
|
[state] double local_log_position;
|
|
[state] double remote_log_position;
|
|
[state] Dictionary::Ptr features;
|
|
|
|
bool syncing {
|
|
default {{{ return false; }}}
|
|
};
|
|
};
|
|
|
|
}
|