mirror of https://github.com/Icinga/icinga2.git
26 lines
380 B
Plaintext
26 lines
380 B
Plaintext
|
local object application "icinga" {
|
||
|
ca = "ca.crt",
|
||
|
cert = "icinga-c2.pem"
|
||
|
}
|
||
|
|
||
|
local object component "checker" {
|
||
|
}
|
||
|
|
||
|
local object component "discovery" {
|
||
|
broker = 0
|
||
|
}
|
||
|
|
||
|
/* trusted upstream endpoint */
|
||
|
local object endpoint "icinga-c1" {
|
||
|
node = "192.168.5.46",
|
||
|
service = 7777,
|
||
|
|
||
|
roles = { "all" }
|
||
|
}
|
||
|
|
||
|
local object role "all" {
|
||
|
publications = { "*" },
|
||
|
subscriptions = { "*" }
|
||
|
}
|
||
|
|