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
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
local object Component "checker" {
|
2012-06-12 11:45:37 +02:00
|
|
|
|
|
|
|
}
|
2012-06-13 13:42:55 +02:00
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
local object Component "delegation" {
|
2012-06-14 13:21:40 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
local object Component "compat" {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
abstract object Service "nagios-service" {
|
|
|
|
methods = {
|
2012-07-15 10:58:03 +02:00
|
|
|
check = "native::NagiosCheck"
|
2012-06-13 13:42:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-27 16:05:02 +02:00
|
|
|
abstract object Service "ping" inherits "nagios-service" {
|
2012-06-14 11:18:20 +02:00
|
|
|
check_command = "$plugindir$/check_ping -H $address$",
|
2012-07-27 16:05:02 +02:00
|
|
|
check_interval = 5,
|
|
|
|
retry_interval = 5
|
2012-06-13 13:42:55 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|