Updated test configs.

This commit is contained in:
Gunnar Beutner 2012-06-14 16:14:13 +02:00
parent 8e61490530
commit 0b9cd3423b
2 changed files with 42 additions and 12 deletions

View File

@ -10,20 +10,49 @@ local object application "icinga" {
local object component "configrpc" {
}
local object component "demo" {
local object component "delegation" {
}
local object component "discovery" {
broker = 0
broker = 1
}
local object endpoint "icinga-c1" {
local object endpoint "icinga-c3" {
node = "192.168.5.46",
service = 7777,
roles = { "broker" }
roles = { "all" }
}
local object role "broker" {
publications = { "discovery::NewComponent" }
local object role "all" {
publications = { "*" },
subscriptions = { "*" }
}
# --------------------------------------------
object host "localhost" {
}
abstract object service "nagios-service" {
check_type = "nagios",
macros = {
plugindir = "/usr/local/icinga/libexec"
}
}
abstract object service "ping" inherits "nagios-service" {
check_type = "nagios",
check_command = "$plugindir$/check_ping -H $address$",
check_interval = 30
}
object service "localhost-ping" inherits "ping" {
host_name = "localhost",
macros += {
address = "localhost"
}
}

View File

@ -10,20 +10,21 @@ local object application "icinga" {
local object component "configrpc" {
}
local object component "demo" {
local object component "checker" {
}
local object component "discovery" {
broker = 0
}
local object endpoint "icinga-c1" {
node = "10.0.10.14",
local object endpoint "icinga-c2" {
node = "192.168.2.235",
service = 7777,
roles = { "broker" }
roles = { "all" }
}
local object role "broker" {
publications = "discovery::NewComponent"
local object role "all" {
publications = { "*" },
subscriptions = { "*" }
}