2014-11-05 22:00:44 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2017-01-10 15:54:22 +01:00
|
|
|
* Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/) *
|
2014-11-05 22:00:44 +01:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
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
|
|
|
{
|
|
|
|
[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; }}}
|
|
|
|
};
|
2014-11-05 22:00:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|