icinga2/icinga-app/icinga1.conf

36 lines
532 B
Plaintext
Raw Normal View History

local object Application "icinga" {
ca = "ca.crt",
cert = "icinga-c1.pem",
2012-06-12 10:49:30 +02:00
node = "10.0.10.14",
service = 7778
2012-06-12 10:49:30 +02:00
}
local object Component "cibsync" {
2012-06-12 10:49:30 +02:00
}
local object Component "demo" {
2012-06-12 10:49:30 +02:00
}
local object Component "discovery" {
2012-06-12 10:49:30 +02:00
broker = 1
}
local object Endpoint "icinga-c2" {
2012-06-12 10:49:30 +02:00
roles = { "demo" }
}
local object Endpoint "icinga-c3" {
2012-06-12 10:49:30 +02:00
roles = { "demo" }
}
local object Role "broker" {
2012-06-12 10:49:30 +02:00
publications = { "discovery::NewComponent" }
}
local object Role "demo" {
2012-06-12 10:49:30 +02:00
publications = { "demo::*" },
subscriptions = { "demo::*" }
}