icinga2/components/cluster/clusterlistener.ti
Michael Friedrich d3cdbb5156 Implement IcingaStatusWriter object dumping local and feature stats.
Refactored the cluster listener health check too.

Refs #5622
Refs #5444
2014-02-17 18:51:16 +01:00

21 lines
378 B
Plaintext

#include "base/dynamicobject.h"
#include "base/application.h"
namespace icinga
{
class ClusterListener : DynamicObject
{
[config] String cert_path;
[config] String key_path;
[config] String ca_path;
[config] String crl_path;
[config] String bind_host;
[config] String bind_port;
[config] Array::Ptr peers;
[state] double log_message_timestamp;
String identity;
};
}