|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /usr/local/src/munin-1.2.6/node/node.d/ |
Upload File : |
#!@@PERL@@ -w
#
# Plugin to monitor the volume og mails delivered by courier-mta.
#
# Author: Rune Nordbøe Skillingstad <runesk@linpro.no>
#
# Usage: copy or link into /etc/munin/node.d/
#
# Parameters:
#
# config (required)
# autoconf (optional - used by munin-config)
#
# Config variables:
#
# logdir - Where to find logfiles
# logfile - What file to read in logdir
#
# $Log$
# Revision 1.4 2004/12/10 18:51:43 jimmyo
# linux/apt* has been forced to LANG=C, to get predictable output.
#
# Revision 1.3 2004/12/10 10:47:47 jimmyo
# Change name from ${scale} to ${graph_period}, to be more consistent.
#
# Revision 1.2 2004/12/09 22:12:54 jimmyo
# Added "graph_period" option, to make "graph_sums" usable.
#
# Revision 1.1 2004/10/19 18:45:30 jimmyo
# Added new plugins generic/courier_mta*, contributed by Rune N. Skillingstad.
#
#
# Magic markers (optional - used by munin-config and some installation
# scripts):
#
#%# family=auto
#%# capabilities=autoconf
my $statefile = "@@PLUGSTATE@@/munin-plugin-courier_mta_mailvolume.state";
my $pos = undef;
my $volume = 0;
my $LOGDIR = $ENV{'logdir'} || '/var/log';
my $LOGFILE = $ENV{'logfile'} || 'mail.log';
my $COURIER = $ENV{'courier'} || '/usr/sbin/courier';
if ( $ARGV[0] and $ARGV[0] eq "autoconf" )
{
my $logfile;
if(-x $COURIER) {
if(-d $LOGDIR) {
$logfile = "$LOGDIR/$LOGFILE";
if(-f $logfile) {
if(-r "$logfile") {
print "yes\n";
exit 0;
} else {
print "no (logfile not readable)\n";
}
} else {
print "no (logfile not found)\n";
}
} else {
print "no (could not find logdir)\n";
}
} else {
print "no (could not find executable)\n";
}
exit 1;
}
my $logfile = "$LOGDIR/$LOGFILE";
my $prevdate = get_prev_date();
if(-f "$logfile.$prevdate") {
$rotlogfile = "$logfile.$prevdate";
} elsif (-f "$logfile.0") {
$rotlogfile = $logfile . ".0";
} elsif (-f "$logfile.1") {
$rotlogfile = $logfile . ".1";
} elsif (-f "$logfile.01") {
$rotlogfile = $logfile . ".01";
} else {
$rotlogfile = $logfile . ".0";
}
if(-f "$statefile") {
open (IN, "$statefile") or exit 4;
if(<IN> =~ /^(\d+):(\d+)/) {
($pos, $volume) = ($1, $2);
}
close IN;
}
if(! -f $logfile and ! -f $rotlogfile) {
print "volume.value U\n";
exit 0;
}
$startsize = (stat $logfile)[7];
if(!defined $pos) {
# Initial run.
$pos = $startsize;
}
if($startsize < $pos) {
# Log rotated
parseLogfile ($rotlogfile, $pos, (stat $rotlogfile)[7]);
$pos = 0;
}
parseLogfile ($logfile, $pos, $startsize);
$pos = $startsize;
if($ARGV[0] and $ARGV[0] eq "config") {
print "graph_title Courier MTA mailvolume throughput\n";
print "graph_args --base 1000 -l 0\n";
print "graph_vlabel bytes / \${graph_period}\n";
print "graph_scale no\n";
print "graph_total Total\n";
print "volume.label throughput\n";
print "volume.type DERIVE\n";
print "volume.min 0\n";
exit 0;
}
print "volume.value $volume\n";
if(-l $statefile) {
die("$statefile is a symbolic link, refusing to touch it.");
}
open (OUT, ">$statefile") or exit 4;
print OUT "$pos:$volume\n";
close OUT;
sub parseLogfile {
my ($fname, $start, $stop) = @_;
open (LOGFILE, $fname) or exit 3;
seek (LOGFILE, $start, 0) or exit 2;
while (tell (LOGFILE) < $stop) {
my $line =<LOGFILE>;
chomp ($line);
if($line =~ /(?:courierlocal|courieresmtp): id=.*,from=.*,addr=.*,size=(\d+),success:.*delivered/) {
$volume += $1;
}
}
close(LOGFILE);
}
sub get_prev_date {
my @date = localtime (time - 86400);
my $prevdate = $date[5]+1900 . $date[4]+1 . $date[3];
return $prevdate;
}