From b47505cef2e3cfd524e1b5647e76ec87e1966c1e Mon Sep 17 00:00:00 2001 From: Samuel Smith Date: Fri, 15 Jan 2016 00:45:54 -0600 Subject: [PATCH] Correct graph_vlabel to data type. --- plugins/network/tc_drops_ | 2 +- plugins/network/tc_packets_ | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/network/tc_drops_ b/plugins/network/tc_drops_ index 72d088e0..d4b5719b 100755 --- a/plugins/network/tc_drops_ +++ b/plugins/network/tc_drops_ @@ -46,7 +46,7 @@ case $1 in echo "graph_order `mytc $DEVICE | awk '{ print $2 "_" $3 "_drops" }' | tr "\n" " "`" echo "graph_title $DEVICE TC traffic drops" echo 'graph_args --base 1000' - echo 'graph_vlabel bits per ${graph_period}' + echo 'graph_vlabel drops per ${graph_period}' echo 'graph_category network' echo "graph_info This graph shows the TC classes traffic drops of the $DEVICE network interface, epxressed in packets." diff --git a/plugins/network/tc_packets_ b/plugins/network/tc_packets_ index fc08bafa..31aec7cf 100755 --- a/plugins/network/tc_packets_ +++ b/plugins/network/tc_packets_ @@ -46,7 +46,7 @@ case $1 in echo "graph_order `mytc $DEVICE | awk '{ print $2 "_" $3 "_packets" }' | tr "\n" " "`" echo "graph_title $DEVICE TC traffic packets" echo 'graph_args --base 1000' - echo 'graph_vlabel bits per ${graph_period}' + echo 'graph_vlabel packets per ${graph_period}' echo 'graph_category network' echo "graph_info This graph shows the TC classes traffic packets of the $DEVICE network interface."