change scale and unit of check_snmp_int.pl

This commit is contained in:
Jan Wagner 2007-07-09 13:20:09 +00:00
parent f0b4e079cd
commit 0924c1761c
2 changed files with 11 additions and 4 deletions

7
debian/changelog vendored
View file

@ -1,3 +1,10 @@
nagios-snmp-plugins (1.1.1-3) UNRELEASED; urgency=low
* change unit to bit/s in interface check
* add option for scale of bandwidth to interface check
-- Jan Wagner <waja@cyconet.org> Fri, 06 Jul 2007 23:25:38 +0200
nagios-snmp-plugins (1.1.1-2) unstable; urgency=low nagios-snmp-plugins (1.1.1-2) unstable; urgency=low
* make use of dpatch infrastructure * make use of dpatch infrastructure

View file

@ -4,17 +4,17 @@
# 'check_snmp_int_v1' command definition # 'check_snmp_int_v1' command definition
define command { define command {
command_name check_snmp_int_v1 command_name check_snmp_int_v1
command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ -C $ARG3$ -n $ARG1$ $ARG2$ command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ -C $ARG3$ -n $ARG1$ -B$ARG4$ $ARG2$
} }
# 'check_snmp_int_v2' command definition # 'check_snmp_int_v2' command definition
define command { define command {
command_name check_snmp_int_v2 command_name check_snmp_int_v2
command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ -C $ARG3$ -2 -n $ARG1$ $ARG2$ command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ -C $ARG3$ -2 -n $ARG1$ -B$ARG4$ $ARG2$
} }
# 'check_snmp_int_v3' command definition # 'check_snmp_int_v3' command definition
define command{ define command {
command_name check_snmp_int_v3 command_name check_snmp_int_v3
command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ $USER9$ -n $ARG1$ $ARG2$ command_line $USER1$/check_snmp_int.pl -H $HOSTADDRESS$ $USER9$ -n $ARG1$ -B$ARG4$ $ARG2$
} }