2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-11-05 22:00:44 +01:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-11-05 22:00:44 +01:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library perfdata;
|
|
|
|
|
2014-11-05 22:00:44 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
class GelfWriter : ConfigObject
|
2014-11-05 22:00:44 +01:00
|
|
|
{
|
2019-02-19 14:06:15 +01:00
|
|
|
activation_priority 100;
|
2018-04-26 15:53:11 +02:00
|
|
|
|
2014-11-05 22:00:44 +01:00
|
|
|
[config] String host {
|
|
|
|
default {{{ return "127.0.0.1"; }}}
|
|
|
|
};
|
|
|
|
[config] String port {
|
|
|
|
default {{{ return "12201"; }}}
|
|
|
|
};
|
2014-11-11 14:05:28 +01:00
|
|
|
[config] String source {
|
|
|
|
default {{{ return "icinga2"; }}}
|
|
|
|
};
|
2015-08-06 14:13:00 +02:00
|
|
|
[config] bool enable_send_perfdata {
|
|
|
|
default {{{ return false; }}}
|
|
|
|
};
|
2017-06-06 19:48:23 +02:00
|
|
|
|
|
|
|
[no_user_modify] bool connected;
|
|
|
|
[no_user_modify] bool should_connect {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
2018-10-24 13:43:38 +02:00
|
|
|
[config] bool enable_ha {
|
2019-03-27 15:29:03 +01:00
|
|
|
default {{{ return false; }}}
|
2018-10-24 13:43:38 +02:00
|
|
|
};
|
2018-11-30 22:08:18 +01:00
|
|
|
[config] bool enable_tls {
|
|
|
|
default {{{ return false; }}}
|
|
|
|
};
|
2021-08-12 16:43:29 +02:00
|
|
|
[config] bool insecure_noverify {
|
|
|
|
default {{{ return false; }}}
|
|
|
|
};
|
2018-11-30 22:08:18 +01:00
|
|
|
[config] String ca_path;
|
|
|
|
[config] String cert_path;
|
|
|
|
[config] String key_path;
|
2014-11-05 22:00:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|