Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Parsing a specific section of a log file

by f00li5h (Chaplain)
on Mar 01, 2007 at 02:59 UTC ( [id://602640]=note: print w/replies, xml ) Need Help??


in reply to Parsing a specific section of a log file

Is there any chance of tampering with the program/script that produces the log, and have it perform whatever task you want this log monitoring script to do at the time those things would be written into the log?

This does ofcourse assume bundles of things about your situation, but it may still be a little cleaner for you to catch the data before it goes into the log file, so you don't have to drag it out again.

@_=qw; ask f00li5h to appear and remain for a moment of pretend better than a lifetime;;s;;@_[map hex,split'',B204316D8C2A4516DE];;y/05/os/&print;

Replies are listed 'Best First'.
Re^2: Parsing a specific section of a log file
by vxp (Pilgrim) on Mar 01, 2007 at 04:05 UTC
    no :)

    its some java thing written by our development dept., i dont think theyd want to change it.. plus not really necessary either..

    i followed suggestions here and here's the solution i came up with (used localtime instead of gmtime, gmtime() didnt return correct time)

    use File::ReadBackwards; use POSIX "strftime"; my $success; my $items; my $earliest = POSIX::strftime( "%Y-%m-%d %H:%M:%S", localtime( time() + - 30 * 60 ) ); $bw = File::ReadBackwards->new( '/var/log/mmsagent/mmsagent.log' ) or die "can't read '/var/log/mmsagent/mmsagent.lo +g' $!" ; while ( defined( my $log_line = $bw->readline() ) ) { last if $log_line lt $earliest; if ($log_line =~ /STATUS = SUCCESS/) { print $log_line; } }

    works perfect, only prints out the relevant lines if they happened within half an hour ago. much thanks to everyone involved for their help!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://602640]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-26 02:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found