2013-02-28 11:45:47 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-02-28 11:45:47 +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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-03-28 13:52:29 +01:00
|
|
|
%type PerfdataWriter {
|
2014-05-21 18:16:25 +02:00
|
|
|
%attribute %string "host_perfdata_path",
|
|
|
|
%attribute %string "service_perfdata_path",
|
|
|
|
%attribute %string "host_temp_path",
|
|
|
|
%attribute %string "service_temp_path",
|
|
|
|
%attribute %string "host_format_template",
|
|
|
|
%attribute %string "service_format_template",
|
2014-03-28 13:52:29 +01:00
|
|
|
%attribute %number "rotation_interval"
|
2013-02-28 11:45:47 +01:00
|
|
|
}
|
|
|
|
|
2014-03-28 13:52:29 +01:00
|
|
|
%type GraphiteWriter {
|
2014-08-17 17:57:20 +02:00
|
|
|
%attribute %string "host",
|
|
|
|
%attribute %string "port",
|
2014-10-11 20:38:24 +02:00
|
|
|
%attribute %string "host_name_template",
|
|
|
|
%attribute %string "service_name_template"
|
2013-10-14 20:12:42 +02:00
|
|
|
}
|
2014-11-10 20:09:54 +01:00
|
|
|
|
|
|
|
%type GelfWriter {
|
|
|
|
%attribute %string "host",
|
2014-11-11 14:05:28 +01:00
|
|
|
%attribute %string "port",
|
|
|
|
%attribute %string "source"
|
2014-11-10 20:09:54 +01:00
|
|
|
}
|
|
|
|
|