diff --git a/plugins/rtorrent/rtom_allsessions_mem b/plugins/rtorrent/rtom_allsessions_mem new file mode 100644 index 00000000..42dcc077 --- /dev/null +++ b/plugins/rtorrent/rtom_allsessions_mem @@ -0,0 +1,89 @@ +#!/usr/bin/perl -w +# +# xmlrpc based munin plugin for monitoring rtorrent's memory usage +# prerequisites: +# - rtorrent 0.7.5 or newer compiled with --with-xmlrpc-c +# check http://libtorrent.rakshasa.no/wiki/RTorrentXMLRPCGuide for further informations +# +# written by Gabor Hudiczius +# web: http://projects.cyla.homeip.net/rtwi/wiki/rTorrentOMeter +# email: ghudiczius@gmail.com +# +# 0.2.0 - 080619 +# support for scgi_port and scgi_local +# configurable via munin env variables +# initial release +# +# +# Parameters: +# +# config required +# +# +# Configurable variables +# +# src "socket" when using scgi_socket, or anything else when using scgi_port +# socket rTorrent's rpc socket (scgi_local) - using scgi_local - needed, when "src" is set to "socket" +# category Change graph category +# +# Configuration example +# +# [rtom_all] +# user username +# env.src socket +# env.socket /home/user/torrent/.socket/rpc.socket,/home/user/torrent/.socket/rpc.socket +# env.category Category +# +#%# family=auto + + +if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) { + exit 1; +} + +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 ".${category}."\n"; + print "mem.label Memory usage\n"; + print "mem.info Memory osage of rTorrent\n"; + print "mem.type GAUGE\n"; + print "mem.draw LINE2\n"; + exit 0; +} + +use IO::Socket; +my @sockets = split /,/, $ENV{"socket"} || ""; +my $mem = 0; +my $src = $ENV{"src"} || ""; + +my $pattern = qr/<(int|i4|i8|ex\.i8)>(\d+)<\/(int|i4|i8|ex\.i8)><\/value>/; +my $line = "get_memory_usage"; +my $llen = length $line; +my $header = "CONTENT_LENGTH\000${llen}\000SCGI\001\000"; +my $hlen = length $header; +$line = "${hlen}:${header},${line}"; + +for $socket (@sockets) +{ + if ( ( defined $src ) && ( $src eq "socket" ) ) { + socket( SOCK, PF_UNIX, SOCK_STREAM, 0 ) or die; + connect( SOCK, sockaddr_un( $socket ) ) or die $!; + } + + print SOCK $line; + flush SOCK; + + while ( $line = ) { + if ( $line =~ /$pattern/ ) { + $mem = $mem + $2; + } + } + close (SOCK); +} + +print "mem.value ${mem}\n"; + +exit; diff --git a/plugins/rtorrent/rtom_allsessions_peers b/plugins/rtorrent/rtom_allsessions_peers new file mode 100644 index 00000000..c704ec13 --- /dev/null +++ b/plugins/rtorrent/rtom_allsessions_peers @@ -0,0 +1,122 @@ +#!/usr/bin/perl -w +# +# xmlrpc based munin plugin for monitoring rtorrent's peer count +# prerequisites: +# - rtorrent 0.7.5 or newer compiled with --with-xmlrpc-c +# check http://libtorrent.rakshasa.no/wiki/RTorrentXMLRPCGuide for further informations +# +# written by Gabor Hudiczius +# web: http://projects.cyla.homeip.net/rtwi/wiki/rTorrentOMeter +# email: ghudiczius@gmail.com +# +# 0.2.0 - 080619 +# support for scgi_port and scgi_local +# configurable via munin env variables +# initial release +# +# +# Parameters: +# +# config required +# +# +# Configurable variables +# +# src "socket" when using scgi_socket, or anything else when using scgi_port +# socket rTorrent's rpc socket (scgi_local) - using scgi_local - needed, when "src" is set to "socket" +# category Change graph category +# +# Configuration example +# +# [rtom_peers] +# user username +# env.src socket +# env.socket /home/usernametorrent/.socket/rpc.socket,/home/usernametorrent/.socket/rpc2.socket +# env.category Category +# +#%# family=auto + + +if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) { + exit 1; +} + +if ( $ARGV[0] and $ARGV[0] eq "config" ) { + my $category = $ENV{"category"} || ""; + print "graph_title rTorrent peer statistics\n"; + print "graph_args --base 1000 --lower-limit 0\n"; + print "graph_vlabel peers\n"; + print "graph_category rTorrent ".${category}."\n"; + print "outgoing.label outgoing\n"; + print "outgoing.draw AREA\n"; + print "outgoing.info number of outgoing connections\n"; + print "incoming.label incoming\n"; + print "incoming.draw STACK\n"; + print "incoming.info number of incoming connections\n"; + print "plain.label plain text\n"; + print "plain.draw LINE2\n"; + print "plain.info number of plain text connections\n"; + print "encrypted.label encrypted\n"; + print "encrypted.draw LINE2\n"; + print "encrypted.info number of encrypted connections\n"; + print "total.label total\n"; + print "total.draw LINE2\n"; + print "total.info total number of connections\n"; + exit 0; +} + +use IO::Socket; + +my @sockets = split /,/, $ENV{"socket"} || ""; +my $mem = 0; +my $src = $ENV{"src"} || ""; + +my $pattern = qr/<(int|i4|i8|ex\.i8)>(\d+)<\/(int|i4|i8|ex\.i8)><\/value>/; +my $tpattern = qr/[0-9A-F]{20}/; + +my $line = "d.multicallmaind.get_hash=p.multicall=,p.is_encrypted=,p.is_incoming="; +my $llen = length $line; +my $header = "CONTENT_LENGTH\000${llen}\000SCGI\001\000"; +my $hlen = length $header; +$line = "${hlen}:${header},${line}"; + +my $tor = 0; +my $tot = 0; +my $enc = 0; +my $inc = 0; +my $pline = ""; +my $ppline = ""; +my $out = 0; +my $pla = 0; + +for $socket (@sockets) +{ + if ( ( defined $src ) && ( $src eq "socket" ) ) { + socket( SOCK, PF_UNIX, SOCK_STREAM, 0 ); + connect( SOCK, sockaddr_un( $socket ) ); + } + + print SOCK $line; + flush SOCK; + + while ( $line = ) { + if ( $line =~ /$tpattern/ ) { + $tor += 1; + } elsif ( $line =~ /$pattern/ ) { + $tot += 1; + $enc += $2; + $line = ; + $line =~ /$pattern/; + $inc += $2; + } + $ppline = $pline; + $pline = $line; + } + close (SOCK); + + $out = $out + $tot - $inc; + $pla = $pla + $tot - $enc; +} +print "torrents.value ${tor}\ntotal.value ${tot}\nencrypted.value ${enc}\nplain.value ${pla}\nincoming.value ${inc}\noutgoing.value ${out}\n"; + +exit; diff --git a/plugins/rtorrent/rtom_allsessions_spdd b/plugins/rtorrent/rtom_allsessions_spdd new file mode 100644 index 00000000..be226160 --- /dev/null +++ b/plugins/rtorrent/rtom_allsessions_spdd @@ -0,0 +1,124 @@ +#!/usr/bin/perl -w +# +# xmlrpc based munin plugin for monitoring rtorrent's upload/download speed +# prerequisites: +# - rtorrent 0.7.5 or newer compiled with --with-xmlrpc-c +# check http://libtorrent.rakshasa.no/wiki/RTorrentXMLRPCGuide for further informations +# +# written by Gabor Hudiczius +# web: http://projects.cyla.homeip.net/rtwi/wiki/rTorrentOMeter +# email: ghudiczius@gmail.com +# +# 0.0.0 - 071218 +# initial release +# +# 0.0.1 - 071220 +# minor textbugs fixed +# +# 0.1.0d - 080519 +# full rewrite in perl +# support for scgi_port and scgi_local +# configurable via munin env variables +# different ul/dl scale can be set for asymmetric connections +# using get_(up|down)_total, and derive +# +# 0.2.0 - 080619 +# upload and download limit displayed on the graph +# +# +# Parameters: +# +# config required +# +# +# Configurable variables +# +# src "socket" when using scgi_socket, or anything else when using scgi_port +# socket rTorrent's rpc socket (scgi_local) - using scgi_local - needed, when "src" is set to "socket" +# diff "yes" for using bps for upload and Bps for download, or anything else for using Bps for both +# +# +# Configuration example +# +# [rtom_spdd] +# user username +# env.src socket +# env.socket /home/user/torrent/.socket/rpc.socket,/home/user2/torrent/.socket/rpc2.socket +# env.category Sometext +# +# +#%# family=auto + + +if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) { + exit 1; +} + +if ( $ARGV[0] and $ARGV[0] eq "config" ) { + my $diff = $ENV{"diff"} || ""; + my $category = $ENV{"category"} || ""; + print "graph_order down up\n"; + print "graph_title rTorrent speeds\n"; + print "graph_args --base 1024\n"; + print "graph_vlabel Bytes per \${graph_period}\n"; + print "graph_category rTorrent ".${category}."\n"; + print "down.label Download B/s\n"; + print "down.info Download speed in Bytes per seconds\n"; + print "down.type DERIVE\n"; + print "down.min 0\n"; + print "down.draw AREA\n"; + if ( ( defined $diff ) && ( $diff eq "yes" ) ) { + print "up.label Upload b/s\n"; + print "up.info Upload speed in bits per seconds\n"; + print "up.cdef up,8,*\n"; + } else { + print "up.label Upload B/s\n"; + print "up.info Upload speed in Bytes per seconds\n"; + } + print "up.type DERIVE\n"; + print "up.min 0\n"; + print "up.draw LINE2\n"; + exit 0; +} + +use IO::Socket; +my @sockets = split /,/, $ENV{"socket"} || ""; +my $src = $ENV{"src"} || ""; + +my $up = -1; +my $down = -1; + +for $socket (@sockets) +{ + my $pattern = qr/<(int|i4|i8|ex\.i8)>([-]{0,1}\d+)<\/(int|i4|i8|ex\.i8)><\/value>/; + my $line = "system.multicallmethodNameget_up_totalparamsmethodNameget_down_totalparamsmethodNameget_upload_rateparamsmethodNameget_download_rateparams"; + my $llen = length $line; + my $header = "CONTENT_LENGTH\000${llen}\000SCGI\001\000"; + my $hlen = length $header; + $line = "${hlen}:${header},${line}"; + if ( ( defined $src ) && ( $src eq "socket" ) ) { + socket( SOCK, PF_UNIX, SOCK_STREAM, 0 ); + connect( SOCK, sockaddr_un( $socket ) ); + } + + print SOCK $line; + flush SOCK; + my $up_tmp = -1; + my $down_tmp = -1; + while (( $up_tmp == -1 ) && ( $line = ) ) { + if ( $line =~ /$pattern/ ) { + $up_tmp = $2; + } + } + while (( $down_tmp == -1 ) && ( $line = ) ) { + if ( $line =~ /$pattern/ ) { + $down_tmp = $2; + } + } + close (SOCK); + $up = $up + $up_tmp; + $down = $down + $down_tmp; +} +print "up.value ${up}\ndown.value ${down}\n"; + +exit; diff --git a/plugins/rtorrent/rtom_allsessions_vol b/plugins/rtorrent/rtom_allsessions_vol new file mode 100644 index 00000000..57b819e4 --- /dev/null +++ b/plugins/rtorrent/rtom_allsessions_vol @@ -0,0 +1,112 @@ +#!/usr/bin/perl -w +# +# xmlrpc based munin plugin for monitoring rtorrent's torrent count +# prerequisites: +# - rtorrent 0.7.5 or newer compiled with --with-xmlrpc-c +# check http://libtorrent.rakshasa.no/wiki/RTorrentXMLRPCGuide for further informations +# +# written by Gabor Hudiczius +# web: http://projects.cyla.homeip.net/rtwi/wiki/rTorrentOMeter +# email: ghudiczius@gmail.com +# +# 0.2.0 - 080619 +# support for scgi_port and scgi_local +# configurable via munin env variables +# initial release +# +# +# Parameters: +# +# config required +# +# +# Configurable variables +# +# src "socket" when using scgi_socket, or anything else when using scgi_port +# socket rTorrent's rpc socket (scgi_local) - using scgi_local - needed, when "src" is set to "socket" +# category Change graph category +# +# Configuration example +# +# [rtom_vol] +# user username +# env.src socket +# env.socket /home/user/torrent/.socket/rpc.socket,/home/user/torrent/.socket/rpc2.socket +# env.category Sometext +# +#%# family=auto + +my @views = ( "default", "started", "stopped", "complete", "incomplete" ); + +if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) { + exit 1; +} + +if ( $ARGV[0] and $ARGV[0] eq "config" ) { + my $category = $ENV{"category"} || ""; + print "graph_args --base 1000 -r --lower-limit 0\n"; + print "graph_title rTorrent volume\n"; + print "graph_vlabel active torrents\n"; + print "graph_category rTorrent ".${category}."\n"; + print "complete.label complete\n"; + print "complete.draw AREA\n"; + print "complete.info complete torrents\n"; + print "incomplete.label incomplete\n"; + print "incomplete.draw STACK\n"; + print "incomplete.info incomplete torrents\n"; + print "stopped.label stopped\n"; + print "stopped.draw LINE2\n"; + print "stopped.info stopped torrents\n"; + print "started.label started\n"; + print "started.draw LINE2\n"; + print "started.info started torrents\n"; + print "default.label total\n"; + print "default.draw LINE2\n"; + print "default.info all torrents\n"; + print "hashing.graph no\n"; + print "seeding.graph no\n"; + print "active.graph no\n"; + exit 0; +} + +use IO::Socket; + +my @sockets = split /,/, $ENV{"socket"} || ""; +my $src = $ENV{"src"} || ""; + +my $pattern = qr/([A-Z0-9]+)<\/string><\/value>/; + +my $line; +my $llenmy; +my $header; +my $hlen; + +my $num; +foreach ( @views ) { + $num = 0; + for $socket (@sockets){ + if ( ( defined $src ) && ( $src eq "socket" ) ) { + socket( SOCK, PF_UNIX, SOCK_STREAM, 0 ); + connect( SOCK, sockaddr_un( $socket ) ); + } + + $line = "d.multicall${_}d.get_hash="; + $llen = length $line; + $header = "CONTENT_LENGTH\000${llen}\000SCGI\001\000"; + $hlen = length $header; + $line = "${hlen}:${header},${line}"; + + print SOCK $line; + flush SOCK; + + while ( $line = ) { + if ( $line =~ /$pattern/ ) { + $num++; + } + } + close (SOCK); + } + print "${_}.value ${num}\n"; +} + +exit; 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"; diff --git a/plugins/rtorrent/rtom_peers b/plugins/rtorrent/rtom_peers index 37aeda60..9720d693 100755 --- a/plugins/rtorrent/rtom_peers +++ b/plugins/rtorrent/rtom_peers @@ -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/usernametorrent/.socket/rpc.socket +# env.category Category # # [rtom_peers] # 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 peer statistics\n"; print "graph_args --base 1000 --lower-limit 0\n"; print "graph_vlabel peers\n"; - print "graph_category rTorrent\n"; + print "graph_category rTorrent ".${category}."\n"; print "outgoing.label outgoing\n"; print "outgoing.draw AREA\n"; print "outgoing.info number of outgoing connections\n"; diff --git a/plugins/rtorrent/rtom_spdd b/plugins/rtorrent/rtom_spdd index ac1254b0..26f79c26 100755 --- a/plugins/rtorrent/rtom_spdd +++ b/plugins/rtorrent/rtom_spdd @@ -37,7 +37,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 # diff "yes" for using bps for upload and Bps for download, or anything else for using Bps for both # # @@ -47,6 +47,7 @@ # user username # env.src socket # env.socket /home/user/torrent/.socket/rpc.socket +# env.category Sometext # # [rtom_spdd] # env.ip 127.0.0.1 @@ -62,12 +63,12 @@ if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) { if ( $ARGV[0] and $ARGV[0] eq "config" ) { my $diff = $ENV{"diff"} || ""; - + my $category = $ENV{"category"} || ""; print "graph_order down up\n"; print "graph_title rTorrent speeds\n"; print "graph_args --base 1024\n"; print "graph_vlabel Bytes per \${graph_period}\n"; - print "graph_category rTorrent\n"; + print "graph_category rTorrent ".${category}."\n"; print "down.label Download B/s\n"; print "down.info Download speed in Bytes per seconds\n"; print "down.type DERIVE\n"; diff --git a/plugins/rtorrent/rtom_vol b/plugins/rtorrent/rtom_vol index ced74a2b..8e9d7cc2 100755 --- a/plugins/rtorrent/rtom_vol +++ b/plugins/rtorrent/rtom_vol @@ -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 Sometext # # [rtom_vol] # env.ip 127.0.0.1 @@ -49,10 +50,11 @@ if ( $ARGV[0] and $ARGV[0] eq "autoconf" ) { } if ( $ARGV[0] and $ARGV[0] eq "config" ) { + my $category = $ENV{"category"} || ""; print "graph_args --base 1000 -r --lower-limit 0\n"; print "graph_title rTorrent volume\n"; print "graph_vlabel active torrents\n"; - print "graph_category rTorrent\n"; + print "graph_category rTorrent ".${category}."\n"; print "complete.label complete\n"; print "complete.draw AREA\n"; print "complete.info complete torrents\n";