mirror of https://github.com/Icinga/icinga2.git
31 lines
564 B
Plaintext
31 lines
564 B
Plaintext
local object Application "icinga" {
|
|
cert = "icinga-c2.pem",
|
|
ca = "ca.crt",
|
|
|
|
pidpath = "icinga-checker1.pid",
|
|
|
|
macros = {
|
|
plugindir = "/usr/local/icinga/libexec"
|
|
}
|
|
}
|
|
|
|
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 = { "*" }
|
|
}
|