1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 18:38:30 +00:00

Add source HOST to graph_title

This commit is contained in:
Lee Clemens 2016-02-05 23:03:21 -05:00
parent 39976312f7
commit dc129c541b

View file

@ -73,8 +73,7 @@ END {
}
if [ "$1" = "config" ]; then
echo 'graph_title Traceroute (%) to '$totrace
echo "graph_title Traceroute `mtr -nrc 1 localhost | grep -E '^HOST' | awk '{print $2}'` to "$totrace
echo 'graph_args --base 1000 -l 0 -u 100 -r'
echo 'graph_vlabel ms (percentage)'
echo 'graph_category network'
@ -86,4 +85,3 @@ if [ "$1" = "config" ]; then
else
dotrace;
fi