Jan Dittberner
022e34449a
- add basic service and host templates - add service groups - define a few services - add beholder host
18 lines
400 B
Text
18 lines
400 B
Text
// vim: set ft=icinga2 et sw=2 ts=2 si ai:
|
|
object ServiceGroup "disk" {
|
|
display_name = "Disk Checks"
|
|
|
|
assign where service.check_command == "disk"
|
|
}
|
|
|
|
object ServiceGroup "package-updates" {
|
|
display_name = "Package Update Status"
|
|
|
|
assign where service.check_command == "apt"
|
|
}
|
|
|
|
object ServiceGroup "procs" {
|
|
display_name = "Process Checks"
|
|
|
|
assign where service.check_command == "procs"
|
|
}
|