commands to tabs
This commit is contained in:
parent
d418c61626
commit
d7a2fec32a
|
@ -2,8 +2,7 @@ object CheckCommand "check_net_int" {
|
||||||
import "by_ssh"
|
import "by_ssh"
|
||||||
vars.by_ssh_timeout = "420"
|
vars.by_ssh_timeout = "420"
|
||||||
timeout = "420"
|
timeout = "420"
|
||||||
# vars.by_ssh_command = "sudo /usr/lib64/nagios/plugins/check_net_int.sh -w $int_warn$ -c $int_crit$"
|
vars.by_ssh_command = PluginDir + "/check_interface_load.sh -w $int_warn$ -c $int_crit$ -o StrictHostKeyChecking=no"
|
||||||
vars.by_ssh_command = "sudo /usr/lib/nagios/plugins/check_interface_load.sh -w 10000 -c 20000"
|
|
||||||
vars.int_warn=""
|
vars.int_warn=""
|
||||||
vars.int_crit=""
|
vars.int_crit=""
|
||||||
}
|
}
|
||||||
|
@ -12,8 +11,38 @@ object CheckCommand "check_open_ports" {
|
||||||
import "by_ssh"
|
import "by_ssh"
|
||||||
vars.by_ssh_timeout = "420"
|
vars.by_ssh_timeout = "420"
|
||||||
timeout = "420"
|
timeout = "420"
|
||||||
vars.by_ssh_command = "sudo /usr/lib/nagios/plugins/check_network_ports.sh -p \"$ports$\" -H $host$"
|
vars.by_ssh_command = PluginDir + "/check_network_ports.sh -p \"$ports$\" -H $host$ -o StrictHostKeyChecking=no"
|
||||||
vars.ports=""
|
vars.ports=""
|
||||||
vars.host=""
|
vars.host=""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
########################################################################################
|
||||||
|
# OpenWRT APs
|
||||||
|
########################################################################################
|
||||||
|
object CheckCommand "check_bandwidth" {
|
||||||
|
import "by_ssh"
|
||||||
|
vars.by_ssh_command = PluginDir + "/check_bandwidth.sh -i $interface$"
|
||||||
|
vars.by_ssh_timeout = "420"
|
||||||
|
timeout = "420"
|
||||||
|
}
|
||||||
|
|
||||||
|
#######################################################################################
|
||||||
|
# VOC switches
|
||||||
|
#######################################################################################
|
||||||
|
object CheckCommand "check_operstatus" {
|
||||||
|
import "plugin-check-command"
|
||||||
|
command = PluginDir + "/check_snmp -H $host$ -C openfest --oid $OID$ -s $value$"
|
||||||
|
vars.host=""
|
||||||
|
vars.OID=""
|
||||||
|
vars.value=""
|
||||||
|
timeout = "120"
|
||||||
|
}
|
||||||
|
|
||||||
|
object CheckCommand "check_operstatus_regex" {
|
||||||
|
import "plugin-check-command"
|
||||||
|
command = PluginDir + "/check_snmp -H $host$ -C openfest --oid $OID$ -r $value$"
|
||||||
|
vars.host=""
|
||||||
|
vars.OID=""
|
||||||
|
vars.value=""
|
||||||
|
timeout = "120"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue