From: Gunnar Beutner Date: Wed, 25 Sep 2013 07:46:47 +0000 (+0200) Subject: Update example config files. X-Git-Tag: v0.0.3~428 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b205d73c91d964d74302f506e7b9549ad958ce2;p=icinga2 Update example config files. --- 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" }