From 1b205d73c91d964d74302f506e7b9549ad958ce2 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 25 Sep 2013 09:46:47 +0200 Subject: [PATCH] Update example config files. --- etc/icinga2/icinga2.conf.dist | 9 ++++----- etc/icinga2/icinga2.conf.win32 | 17 ++++++----------- 2 files changed, 10 insertions(+), 16 deletions(-) diff --git a/etc/icinga2/icinga2.conf.dist b/etc/icinga2/icinga2.conf.dist index a95d1eb43..28244afa8 100644 --- a/etc/icinga2/icinga2.conf.dist +++ b/etc/icinga2/icinga2.conf.dist @@ -18,12 +18,13 @@ set IcingaMacros = { } /** - * The compat component periodically updates the status.dat and objects.cache + * The compat library periodically updates the status.dat and objects.cache * files. These are used by the Icinga 1.x CGIs to display the state of * hosts and services. CompatLog writeis the Icinga 1.x icinga.log and archives. */ library "compat" -object CompatComponent "compat" { } +object StatusDataWriter "status" { } +object ExternalCommandListener "command" { } object CompatLog "compat-log" { } /** @@ -67,7 +68,5 @@ object Host "localhost" { address6 = "::1", }, - hostcheck = "ping4", - - check_interval = 1m + check = "ping4", } diff --git a/etc/icinga2/icinga2.conf.win32 b/etc/icinga2/icinga2.conf.win32 index 492d119b1..59bf17697 100644 --- a/etc/icinga2/icinga2.conf.win32 +++ b/etc/icinga2/icinga2.conf.win32 @@ -10,16 +10,11 @@ #include #include -/** - * Global configuration settings - */ -object IcingaApplication "icinga" { - pid_path = "icinga2.pid", - state_path = "icinga2.state", +set IcingaPidPath = "icinga2.pid" +set IcingaStatePath = "icinga2.state" - macros = { - plugindir = "C:\\Plugins" - } +set IcingaMacros = { + plugindir = "C:\\Plugins" } /** @@ -28,7 +23,7 @@ object IcingaApplication "icinga" { * hosts and services. */ library "compat" -object Component "compat" { +object StatusDataWriter "status" { status_path = "status.dat", objects_path = "objects.cache", } @@ -45,6 +40,6 @@ object Host "localhost" inherits "itl-host" { address = "127.0.0.1" }, - check_interval = 1m + check = "ping4" } -- 2.40.0