icinga-zones/global-templates/servicegroups.conf
Jan Dittberner 022e34449a First objects
- add basic service and host templates
- add service groups
- define a few services
- add beholder host
2023-08-15 17:46:37 +02:00

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