#!/usr/bin/perl # # Parameters supported: # # config # autoconf # # Magic markers: #%# family=auto #%# capabilities=autoconf =head1 NAME apache_processes - Munin plugin to monitor the number of accesses to Apache servers. It handles a list of ports passed in from a plugin configuration file. =head1 APPLICABLE SYSTEMS Apache HTTP servers with C enabled. =head1 CONFIGURATION The plugin needs access to http://localhost/server-status?auto (or modify the URL for another host). See your Apache documentation on how to set up this URL in your httpd.conf. Apache needs ExtendedStatus enabled for this plugin 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. This configuration section shows the defaults of the plugin: [apache_*] env.url http://127.0.0.1:%d/server-status?auto env.ports 80 The %d in the url will be replaced with the port. The default port is 80 as snown. The port list is a space separated list of ports. NOTE that one single Apache can have several open ports, and the plugin needs only to contact one to get the servers global status. The list of ports is only needed if you have several B Apaches configured on your host. If you need authenticated access to the URL you can specify the username and password in the URL. For example: [apache_volume] env.url http://munin:spamalot@localhost/server-status?auto This will provide for HTTP basic authentication. =head1 INTERPRETATION The plugin shows the number of accesses (pages and other items served) globaly on the Apache server. =head1 VERSION $Id: apache_accesses.in 1488 2008-02-20 19:11:33Z matthias $ =head1 BUGS Does not support digest authentication. =head1 AUTHOR Unknown =head1 LICENSE GPLv2 =cut my $ret = undef; if (! eval "require LWP::UserAgent;") { $ret = "LWP::UserAgent not found"; } my $URL = exists $ENV{'url'} ? $ENV{'url'} : "http://127.0.0.1:%d/server-status?auto"; my @PORTS = exists $ENV{'ports'} ? split(' ', $ENV{'ports'}) : (80); if ( defined $ARGV[0] and $ARGV[0] eq "autoconf" ) { if ($ret) { print "no ($ret)\n"; exit 1; } my $ua = LWP::UserAgent->new(timeout => 30); my @badports; foreach my $port (@PORTS) { my $url = sprintf $URL, $port; my $response = $ua->request(HTTP::Request->new('GET',$url)); push @badports, $port unless $response->is_success and $response->content =~ /^Total Accesses:/im; } if (@badports) { print "no (no apache server-status or ExtendedStatus missing on ports @badports)\n"; exit 1; } else { print "yes\n"; exit 0; } } if ( defined $ARGV[0] and $ARGV[0] eq "config" ) { print "graph_title Apache accesses\n"; print "graph_args --base 1000\n"; print "graph_vlabel accesses / \${graph_period}\n"; print "graph_category apache\n"; foreach my $port (@PORTS) { print "accesses$port.label port $port\n"; print "accesses$port.type DERIVE\n"; print "accesses$port.max 1000000\n"; print "accesses$port.min 0\n"; } exit 0; } my $ua = LWP::UserAgent->new(timeout => 30); foreach my $port (@PORTS) { my $url = sprintf $URL, $port; my $response = $ua->request(HTTP::Request->new('GET',$url)); if ($response->content =~ /^Total Accesses:\s+(.+)$/im) { print "accesses$port.value $1\n"; } else { print "accesses$port.value U\n"; } } # vim:syntax=perl