blob: f6def62ad0ecc747e9ed91b78008ab6473193ee7 (
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
|
define hostgroup {
hostgroup_name nsclients
alias Windows Systems
register 0
}
define service {
use pdv-service
hostgroup_name nsclients
service_description CPU
check_command check_nt!CPULOAD!-l 5,80,90
}
define service {
use pdv-service
hostgroup_name nsclients
service_description MEMORY
check_command check_nt!MEMUSE!-w 80 -c 90
}
define service {
use pdv-service
hostgroup_name nsclients
service_description DISK C:
check_command check_nt!USEDDISKSPACE!-l c -w 80 -c 90
}
|