blob: 08fe0aff9f03080f75ce35d1ff6f114e2b394f6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
define host {
use workhours
host_name nagios.adyxax.org
address 10.1.0.101
}
define service{
use local-service
host_name nagios.adyxax.org
service_description Root Partition
check_command check_local_disk!20%!10%!/
}
define service{
use local-service
host_name nagios.adyxax.org
service_description Current Load
check_command check_local_load!5.0,4.0,3.0!10.0,6.0,4.0
}
define service{
use local-service
host_name nagios.adyxax.org
service_description Swap Usage
check_command check_local_swap!20!10
}
define service{
use local-service
host_name nagios.adyxax.org
service_description SSH
check_command check_ssh
}
|