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

Merge pull request #762 from samuraiii/patch-1

To get rid of non ascii characters in graphs
This commit is contained in:
sumpfralle 2016-10-26 00:32:45 +02:00 committed by GitHub
commit 5dfe3432fa

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