/usr/share/doc/librrd-simple-perl/examples/ColloquyBotLogParser.pl is in librrd-simple-perl 1.44-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/perl -w
############################################################
#
# $Id: ColloquyBotLogParser.pl 965 2007-03-01 19:11:23Z nicolaw $
# ColloquyBotLogParser.pl - Example script bundled as part of RRD::Simple
#
# Copyright 2005,2006 Nicola Worthington
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
############################################################
use strict;
use integer;
use RRD::Simple;
use Time::Local;
my $rrd = '/home/system/colloquy/botbot/logs/botbot.rrd';
unless (-f $rrd) {
RRD::Simple->create($rrd,
OBSERVED => 'GAUGE',
LIST => 'GAUGE',
SHOUT => 'GAUGE'
);
}
my $hits = {OBSERVED => {}, SHOUT => {}, LIST => {}};
my ($first,$last) = (0,0);
my $lastUpdate = RRD::Simple->last($rrd);
my %months = (qw(Jan 0 Feb 1 Mar 2 Arp 3 May 4 Jun 5
Jul 6 Aug 7 Sep 8 Oct 9 Nov 10 Dec 11));
$|++;
while (<>) {
if (my ($wday,$mon,$mday,$hour,$min,$sec,$year,$type) = $_
=~ /^\[(...) (...) (..) (..):(..):(..) (....)\] \[(\S+)/) {
$year -= 1900;
my @val = split(/\s/,sprintf('%d %d %d %d %d %d',
$sec,$min,$hour,$mday,$months{$mon},$year));
my $time = timelocal(@val);
next if $lastUpdate >= $time;
$first ||= $time; $last = $time;
if ($type =~ /^OBSERVED|LIST|SHOUT/) {
print ".";
$type = 'LIST' if $type =~ /^LIST/;
my $period = ($time / 300) * 300;
$hits->{$type}->{$period}++;
}
}
}
print "\n";
die "No new data" unless $first > $lastUpdate;
die "Wasn't anything new in the log files" unless $first && $last;
$first = ($first / 300) * 300;
$last = ($last / 300) * 300;
print join(', ',RRD::Simple->sources($rrd))."\n";
print RRD::Simple->last($rrd)."\n";
for (my $time = $first; $time <= $last; $time += 300) {
my @vals;
for my $type (keys %{$hits}) {
push @vals, ($type,(exists $hits->{$type}->{$time} ?
$hits->{$type}->{$time} : 0));
}
print "RRD::Simple->update('$rrd',$time,'".join("','",@vals)."');\n";
eval{RRD::Simple->update($rrd,$time,@vals);};
}
RRD::Simple->graph($rrd,
destination => '/home/system/apache/htdocs/talker',
title => 'Talker Activity',
width => 600,
'vertical-label' => 'Messages',
'units-exponent' => 0
);
|