From dac093c3b06c62739d3d9a70034d9dc16f70ce25 Mon Sep 17 00:00:00 2001 From: ricardo Date: Mon, 27 Aug 2012 14:08:54 +0200 Subject: [PATCH] tomcat access plugin --- plugins/tomcat/tomcat_access | 117 +++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100755 plugins/tomcat/tomcat_access diff --git a/plugins/tomcat/tomcat_access b/plugins/tomcat/tomcat_access new file mode 100755 index 00000000..bdf401d4 --- /dev/null +++ b/plugins/tomcat/tomcat_access @@ -0,0 +1,117 @@ +#!/usr/bin/perl +# -*- perl -*- + +=head1 NAME + +tomcat_access - Plugin to monitor the number of accesses to Tomcat +servers. + +=head1 CONFIGURATION + +The following environment variables are used by this plugin + + timeout - Connection timeout + url - Override default status-url + ports - HTTP port numbers + pname - Nome of the connector + user - Manager username + password - Manager password + +=head1 USAGE + +Requirements: + +Needs access to +http://:@localhost:8080/manager/status?XML=true (or +modify the address for another host). + +Tomcat 5.0 or higher. + +A munin-user in $CATALINA_HOME/conf/tomcat-users.xml should be set up +for this to work. + +Tip: To see if it's already set up correctly, just run this plugin +with the parameter "autoconf". If you get a "yes", everything should +work like a charm already. + +tomcat-users.xml example: + + +=head1 AUTHOR + +Ricardo Fraile +Rune Nordbøe Skillingstad + +=head1 LICENSE + +GPL 2. + +=head1 MAGIC MARKERS + + #%# family=manual + #%# capabilities=autoconf + +=cut + +use strict; + +my $ret = undef; + +if(!eval "require LWP::UserAgent;") { + $ret = "LWP::UserAgent not found"; +} + +if(!eval "require XML::Simple;") { + $ret .= "XML::Simple not found"; +} + +my $URL = exists $ENV{'url'} ? $ENV{'url'} : "http://%s:%s\@127.0.0.1:%d/manager/status?XML=true"; +my $PORT = exists $ENV{'ports'} ? $ENV{'ports'} : 8080; +my $PNAME = exists $ENV{'pname'} ? $ENV{'pname'} : "http-8080"; +my $USER = exists $ENV{'user'} ? $ENV{'user'} : "munin"; +my $PASSWORD = exists $ENV{'password'} ? $ENV{'password'} : "munin"; +my $TIMEOUT = exists $ENV{'timeout'} ? $ENV{'timeout'} : 30; + +my $url = sprintf $URL, $USER, $PASSWORD, $PORT; + +if(exists $ARGV[0] and $ARGV[0] eq "autoconf") { + if($ret) { + print "no ($ret)\n"; + exit 0; + } + my $au = LWP::UserAgent->new(timeout => $TIMEOUT); + my $repsonse = $au->request(HTTP::Request->new('GET',$url)); + if($repsonse->is_success and $repsonse->content =~ /.*<\/status>/im) { + print "yes\n"; + exit 0; + } else { + print "no (no tomcat status)\n"; + exit 0; + } +} + +if(exists $ARGV[0] and $ARGV[0] eq "config") { + print "graph_title Tomcat accesses\n"; + print "graph_args --base 1000\n"; + print "graph_vlabel accesses / \${graph_period}\n"; + print "graph_category tomcat\n"; + print "accesses.label Accesses\n"; + print "accesses.type DERIVE\n"; + print "accesses.max 1000000\n"; + print "accesses.min 0\n"; + exit 0; +} + +my $ua = LWP::UserAgent->new(timeout => $TIMEOUT); +my $xs = new XML::Simple; +my $response = $ua->request(HTTP::Request->new('GET',$url)); +my %options = ( KeyAttr => { connector => 'name' }, ForceArray => 1 ); +my $xml = $xs->XMLin($response->content, %options); + +if($xml->{'connector'}->{"\"".$PNAME."\""}->{'requestInfo'}->[0]->{'requestCount'}) { + print "accesses.value " . $xml->{'connector'}->{"\"".$PNAME."\""}->{'requestInfo'}->[0]->{'requestCount'} . "\n"; +} else { + print "accesses.value U\n"; +} + +# vim:syntax=perl