2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

Correct graph_vlabel to data type.

This commit is contained in:
Samuel Smith 2016-01-15 00:45:54 -06:00
parent 74aa84d51a
commit b47505cef2
2 changed files with 2 additions and 2 deletions

View File

@ -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."

View File

@ -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."