mirror of https://github.com/Icinga/icinga2.git
14 lines
336 B
Plaintext
14 lines
336 B
Plaintext
|
/*
|
||
|
* This check requires the "sudo" and "binutils" packages to be installed.
|
||
|
* You will also need to add the following line to your /etc/sudoers file:
|
||
|
* nagios ALL=(ALL:ALL) NOPASSWD: /etc/icinga2/scripts/check_kernel
|
||
|
*/
|
||
|
|
||
|
object Service "kernel" {
|
||
|
import "generic-service"
|
||
|
|
||
|
host_name = "localhost"
|
||
|
check_command = "kernel"
|
||
|
}
|
||
|
|