mirror of https://github.com/Icinga/icinga2.git
parent
87cead02ed
commit
63e6bc8ce7
|
@ -0,0 +1,6 @@
|
|||
object Service "disk" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "disk"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
object Service "http" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "http_ip"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
object Service "icinga" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "icinga"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
object Service "kernel" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "kernel"
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
object Service "load" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "load"
|
||||
}
|
||||
|
||||
object ScheduledDowntime "backup-downtime" {
|
||||
import "backup-downtime"
|
||||
|
||||
host_name = "localhost"
|
||||
service_name = "load"
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
object Service "processes" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "processes"
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
object Service "ssh" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "ssh"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
object Service "swap" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "swap"
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
object Service "users" {
|
||||
import "generic-service"
|
||||
|
||||
host_name = "localhost"
|
||||
check_command = "users"
|
||||
}
|
Loading…
Reference in New Issue