mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
This patch ensures that specific configuration types are pre-activated and post-activated. In general, logging is first, then common configuration objects like host/service, downtimes, etc. In the end, all features are activated after to ensure that notifications are only sent once downtimes are applied. A similar thing happens for starting with checks too early. The ApiListener feature runs first to allow cluster connections at first glance. fixes #6057 fixes #6231
43 lines
777 B
Plaintext
43 lines
777 B
Plaintext
#include "base/configobject.hpp"
|
|
|
|
library perfdata;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class ElasticsearchWriter : ConfigObject
|
|
{
|
|
activation_priority 100;
|
|
|
|
[config, required] String host {
|
|
default {{{ return "127.0.0.1"; }}}
|
|
};
|
|
[config, required] String port {
|
|
default {{{ return "9200"; }}}
|
|
};
|
|
[config, required] String index {
|
|
default {{{ return "icinga2"; }}}
|
|
};
|
|
[config] bool enable_send_perfdata {
|
|
default {{{ return false; }}}
|
|
};
|
|
[config] String username;
|
|
[config] String password;
|
|
|
|
[config] bool enable_tls {
|
|
default {{{ return false; }}}
|
|
};
|
|
[config] String ca_path;
|
|
[config] String cert_path;
|
|
[config] String key_path;
|
|
|
|
[config] int flush_interval {
|
|
default {{{ return 10; }}}
|
|
};
|
|
[config] int flush_threshold {
|
|
default {{{ return 1024; }}}
|
|
};
|
|
};
|
|
|
|
}
|