From e55e233b225163d845c452f4cb2da11632a43045 Mon Sep 17 00:00:00 2001 From: XciD Date: Tue, 4 Feb 2014 17:38:33 +0100 Subject: [PATCH] Update rtom_mem Add category for people who have multiple sessions --- plugins/rtorrent/rtom_mem | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/rtorrent/rtom_mem b/plugins/rtorrent/rtom_mem index c3a98557..5a5a0f17 100755 --- a/plugins/rtorrent/rtom_mem +++ b/plugins/rtorrent/rtom_mem @@ -26,7 +26,7 @@ # 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" # port rTorrent's scgi port (scgi_port) - using scgi_port - needed, when "src" is NOT set to "socket" -# +# category Change graph category # # Configuration example # @@ -34,6 +34,7 @@ # user username # env.src socket # env.socket /home/user/torrent/.socket/rpc.socket +# env.category Category # # [rtom_mem] # 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" ) { + my $category = $ENV{"category"} || ""; print "graph_title rTorrent memory usage\n"; print "graph_args --base 1024 --lower-limit 0\n"; print "graph_vlabel Bytes\n"; - print "graph_category rTorrent\n"; + print "graph_category rTorrent ".${category}."\n"; print "mem.label Memory usage\n"; print "mem.info Memory osage of rTorrent\n"; print "mem.type GAUGE\n";