blob: 83d43c460f73ff5066cc6c8f4182d2b901a3ce84 (
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 hostgroup {
hostgroup_name app-servers
alias Application Servers
register 0
}
define service {
use ssh-service
hostgroup_name app-servers
service_description CPU
check_command check_ssh_load!16.0,8.0,4.0!24.0,16.0,8.0
}
define service {
use ssh-service
hostgroup_name app-servers
service_description MEMORY
check_command check_ssh_mem!50!80
}
define service {
use ssh-service
hostgroup_name app-servers
service_description SWAP
check_command check_ssh_swap!20!10
}
define service {
use ssh-service
hostgroup_name app-servers
service_description DISK
check_command check_ssh_all_disks!20%!10%
}
|