blob: 2c0bb52221cd33229232042113d5de2e00b812e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
define command {
command_name check_by_ssh_check_raid
command_line $USER1$/check_by_ssh -t 30 -H $HOSTADDRESS$ "$USER1$/check_raid.py"
}
define command {
command_name check_by_ssh_check_disk
command_line $USER1$/check_by_ssh -t 30 -H $HOSTADDRESS$ "$USER1$/check_disk -w $ARG1$% -c $ARG2$% -p $ARG3$"
}
# 'check_postgres_conns' command definition
define command{
command_name check_postgres_conns
command_line $USER1$/check_by_ssh -t 30 -H $HOSTADDRESS$ "$USER1$/check_procs -u postgres -w $ARG1$ -c $ARG2$ -a $ARG3$"
}
|