1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
#!@@PERL@@ -w
# -*- perl -*-
#
# Copyright (C) 2004 Dagfinn Ilmari Mannsaaker
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 dated June, 1991.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
# USA.
#
#
# Counts the number of matching log lines
#
# Parameters:
#
# config (required)
#
# Config variables:
#
# logfile - Files to grep (shellglob) (required)
# regex - Regex to look for (required)
# label - Label
# regex_<key> - Additional regexes
# label_<key> - Additional labels
# title - Graph title
#
# TODO: Handle rotated logs
#
# $Log$
# Revision 1.5 2005/01/05 16:44:02 ilmari
# Fixed typo in generic/loggrep breaking implicit labeling.
#
# 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/11/20 05:59:25 ilmari
# Added plugin generic/loggrep for generic log grepping.
#
#
# Magic markers (optional - used by munin-config and some installation
# scripts):
#
#%# family=manual
use strict;
my %regex;
my $logfile = $ENV{logfile};
(my $name = $0) =~ s|.*/||;
die("No log file specified") unless defined $logfile;
if (exists $ENV{'regex'}) {
$regex{'count'}{'regex'} = qr/$ENV{'regex'}/;
$regex{'count'}{'label'} = $ENV{'label'} || $ENV{'regex'};
$regex{'count'}{'value'} = 0;
}
for my $key (map {/^regex_(.+)/} keys %ENV) {
$regex{$key}{'regex'} = qr/$ENV{"regex_$key"}/;
$regex{$key}{'label'} = $ENV{"label_$key"} || $ENV{"regex_$key"};
$regex{$key}{'value'} = 0;
}
die("No regexes specified") unless keys %regex;
my $statefile = "@@PLUGSTATE@@/$name.state";
if ($ARGV[0] and $ARGV[0] eq 'config') {
my $title = $ENV{title} || "Entries in $logfile";
print "graph_title $title\n";
print "graph_args --base 1000 -l 0\n";
print "graph_vlabel entries / \${graph_period}\n";
print "graph_category other\n";
for my $key (keys %regex) {
print "$key.label $regex{$key}{'label'}\n";
print "$key.type DERIVE\n";
print "$key.min 0\n";
print "$key.draw LINE2\n";
}
exit 0;
}
my %pos = map { $_ => undef } glob($logfile);
if (-f $statefile) {
open(my $in, '<', $statefile) or die("Can't read $statefile: $!\n");
while (<$in>) {
chomp;
if (/^([^=]+)=(\d+)$/ && exists $regex{$1}) {
$regex{$1}{'value'} = $2;
} else {
last;
}
}
do {
chomp;
if (<$in> =~ /^(\d+)$/ and exists $pos{$_}) {
$pos{$_} = $1
}
} while (<$in>);
close $in;
}
for my $log (keys %pos) {
$pos{$log} = parse_log($log, $pos{$log});
}
for my $key (keys %regex) {
print "$key.value $regex{$key}{'value'}\n";
}
if(-l $statefile) {
die("$statefile is a symbolic link, refusing to touch it.\n");
}
open(my $out, '>', $statefile) or die("Can't write $statefile: $!\n");
for my $key (keys %regex) {
print $out "$key=$regex{$key}{'value'}\n";
}
for my $log (keys %pos) {
print $out "$log\n$pos{$log}\n";
}
close $out;
sub parse_log {
my ($fname, $start) = @_;
open(my $logfh, $fname) or die ("Can't open log file $fname: $!\n");
my $size = (stat $logfh)[7];
# First encounter
$start = $size unless defined $start;
# The log has been rotated, start over
$start = 0 if $size < $start;
seek($logfh, $start, 0) or die ("Can't seek to $fname:$start: $!\n");
while (tell($logfh) < $size) {
my $line = <$logfh>;
for my $match (values %regex) {
if ($line =~ $match->{'regex'}) {
$match->{'value'}++;
}
}
}
close($logfh);
return $size;
}
# vim:syntax=perl
|