mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-21 18:41:03 +00:00
16 lines
454 B
Bash
Executable file
16 lines
454 B
Bash
Executable file
#!/bin/bash
|
|
|
|
user=''
|
|
pass=''
|
|
|
|
if [ "$1" = "config" ]; then
|
|
echo "graph_title Transmission seed ratios"
|
|
echo "graph_vlabel Seed ratio %"
|
|
echo "graph_category Transmission"
|
|
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
|
|
exit 0
|
|
fi
|
|
|
|
transmission-remote -n $user:$pass -l | gawk -f /usr/share/munin/plugins/tr_ratios_data
|
|
|