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

Update rtom_peers

Add Category for people who have multiple sessions
This commit is contained in:
XciD 2014-02-04 17:39:47 +01:00
parent e55e233b22
commit e384c4b637

View File

@ -26,7 +26,7 @@
# socket rTorrent's rpc socket (scgi_local) - using scgi_local - needed, when "src" is set to "socket" # socket rTorrent's rpc socket (scgi_local) - using scgi_local - needed, when "src" is set to "socket"
# ip rTorrent's ip address - using scgi_port - needed, when "src" is NOT set to "socket" # ip rTorrent's ip address - using scgi_port - needed, when "src" is NOT set to "socket"
# port rTorrent's scgi port (scgi_port) - using scgi_port - needed, when "src" is NOT set to "socket" # port rTorrent's scgi port (scgi_port) - using scgi_port - needed, when "src" is NOT set to "socket"
# # category Change graph category
# #
# Configuration example # Configuration example
# #
@ -34,6 +34,7 @@
# user username # user username
# env.src socket # env.src socket
# env.socket /home/usernametorrent/.socket/rpc.socket # env.socket /home/usernametorrent/.socket/rpc.socket
# env.category Category
# #
# [rtom_peers] # [rtom_peers]
# env.ip 127.0.0.1 # env.ip 127.0.0.1
@ -48,10 +49,11 @@ if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) {
} }
if ( $ARGV[0] and $ARGV[0] eq "config" ) { if ( $ARGV[0] and $ARGV[0] eq "config" ) {
my $category = $ENV{"category"} || "";
print "graph_title rTorrent peer statistics\n"; print "graph_title rTorrent peer statistics\n";
print "graph_args --base 1000 --lower-limit 0\n"; print "graph_args --base 1000 --lower-limit 0\n";
print "graph_vlabel peers\n"; print "graph_vlabel peers\n";
print "graph_category rTorrent\n"; print "graph_category rTorrent ".${category}."\n";
print "outgoing.label outgoing\n"; print "outgoing.label outgoing\n";
print "outgoing.draw AREA\n"; print "outgoing.draw AREA\n";
print "outgoing.info number of outgoing connections\n"; print "outgoing.info number of outgoing connections\n";