Add missing files.

Refs #6002
This commit is contained in:
Gunnar Beutner 2014-04-13 17:35:07 +02:00
parent 87cead02ed
commit 63e6bc8ce7
9 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,6 @@
object Service "disk" {
import "generic-service"
host_name = "localhost"
check_command = "disk"
}

View File

@ -0,0 +1,6 @@
object Service "http" {
import "generic-service"
host_name = "localhost"
check_command = "http_ip"
}

View File

@ -0,0 +1,6 @@
object Service "icinga" {
import "generic-service"
host_name = "localhost"
check_command = "icinga"
}

View File

@ -0,0 +1,6 @@
object Service "kernel" {
import "generic-service"
host_name = "localhost"
check_command = "kernel"
}

View File

@ -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"
}

View File

@ -0,0 +1,7 @@
object Service "processes" {
import "generic-service"
host_name = "localhost"
check_command = "processes"
}

View File

@ -0,0 +1,6 @@
object Service "ssh" {
import "generic-service"
host_name = "localhost"
check_command = "ssh"
}

View File

@ -0,0 +1,6 @@
object Service "swap" {
import "generic-service"
host_name = "localhost"
check_command = "swap"
}

View File

@ -0,0 +1,6 @@
object Service "users" {
import "generic-service"
host_name = "localhost"
check_command = "users"
}