mirror of https://github.com/Icinga/icinga2.git
38 lines
566 B
Plaintext
38 lines
566 B
Plaintext
local object IcingaApplication "icinga" {
|
|
macros = {
|
|
plugindir = "/usr/local/icinga/libexec"
|
|
}
|
|
}
|
|
|
|
local object Component "checker" {
|
|
|
|
}
|
|
|
|
local object Component "delegation" {
|
|
|
|
}
|
|
|
|
local object Component "compat" {
|
|
|
|
}
|
|
|
|
abstract object Service "nagios-service" {
|
|
methods = {
|
|
check = "native::NagiosCheck"
|
|
}
|
|
}
|
|
|
|
abstract object Service "ping" inherits "nagios-service" {
|
|
check_command = "$plugindir$/check_ping -H $address$",
|
|
check_interval = 5,
|
|
retry_interval = 5
|
|
}
|
|
|
|
object Host "localhost" {
|
|
services = { "ping" },
|
|
|
|
macros = {
|
|
address = "localhost"
|
|
}
|
|
}
|