icinga2/icinga-app/icinga-standalone.conf

38 lines
566 B
Plaintext
Raw Normal View History

2012-08-14 14:09:08 +02:00
local object IcingaApplication "icinga" {
2012-08-14 10:53:04 +02:00
macros = {
plugindir = "/usr/local/icinga/libexec"
}
2012-07-03 14:18:46 +02:00
}
local object Component "checker" {
2012-06-12 11:45:37 +02:00
}
local object Component "delegation" {
2012-06-14 13:21:40 +02:00
}
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
}
2012-08-17 13:56:04 +02:00
object Host "localhost" {
2012-08-17 14:26:10 +02:00
services = { "ping" },
macros = {
address = "localhost"
}
2012-06-17 21:27:13 +02:00
}