mirror of https://github.com/Icinga/icinga2.git
25 lines
446 B
Plaintext
25 lines
446 B
Plaintext
#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;
|
|
[config] int metric;
|
|
|
|
[state] double seen;
|
|
[state] double local_log_position;
|
|
[state] double remote_log_position;
|
|
[state] Dictionary::Ptr features;
|
|
|
|
bool syncing;
|
|
double blocked_until;
|
|
};
|
|
|
|
}
|