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

To get rid of non ascii characters in graphs

This commit is contained in:
samuraiii 2016-10-25 22:39:56 +02:00 committed by GitHub
parent 2590bb356c
commit 5884bddab1

View file

@ -8,7 +8,7 @@ if [ "$1" = "config" ]; then
echo "graph_vlabel Seed ratio %"
echo "graph_category torrent"
echo "graph_info This plugin shows your transmission ratios per torrent"
transmission-remote -n $user:$pass -l | gawk -f /usr/share/munin/plugins/tr_ratios_labels
transmission-remote -n $user:$pass -l | gawk -f /usr/share/munin/plugins/tr_ratios_labels | iconv -f utf-8 -t ascii//translit
exit 0
fi