Update example config files.

This commit is contained in:
Gunnar Beutner 2013-09-25 09:46:47 +02:00
parent b3ff87b9dd
commit 1b205d73c9
2 changed files with 10 additions and 16 deletions

View File

@ -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",
}

View File

@ -10,16 +10,11 @@
#include <itl/itl.conf>
#include <itl/standalone.conf>
/**
* 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"
}