collectd: sqm_collect: tidy interval string handling
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
(cherry picked from commit c2c91ea99e
)
This commit is contained in:
parent
9a38e786f8
commit
49685b6bef
2 changed files with 4 additions and 5 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=collectd
|
||||
PKG_VERSION:=5.11.0
|
||||
PKG_RELEASE:=6
|
||||
PKG_RELEASE:=7
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=https://collectd.org/files/ \
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
. /usr/share/libubox/jshn.sh
|
||||
|
||||
HOSTNAME="${COLLECTD_HOSTNAME:-localhost}"
|
||||
INTERVAL="${COLLECTD_INTERVAL:-60.000}"
|
||||
INTERVAL="${COLLECTD_INTERVAL:-60}"
|
||||
|
||||
handle_cake() {
|
||||
local ifc ifr tin i
|
||||
|
@ -79,8 +79,7 @@ process_qdisc() {
|
|||
local ifc jsn
|
||||
|
||||
ifc="$1"
|
||||
jsn=$(tc -s -j qdisc show dev "$ifc")
|
||||
[ $? ] || return
|
||||
jsn=$(tc -s -j qdisc show dev "$ifc") || return
|
||||
|
||||
# strip leading & trailing []
|
||||
jsn="${jsn#[}" ; jsn="${jsn%]}"
|
||||
|
@ -104,5 +103,5 @@ while true ; do
|
|||
for ifc in "$@" ; do
|
||||
process_qdisc "$ifc"
|
||||
done
|
||||
sleep "${INTERVAL%.000}"
|
||||
sleep "${INTERVAL%%.*}"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue