Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: How to read from rotated log file?

by johngg (Canon)
on Jan 29, 2012 at 23:47 UTC ( [id://950672]=note: print w/replies, xml ) Need Help??


in reply to How to read from rotated log file?

If you know the date you want to go back to then you should be able to convert that date into epoch seconds (see Time::Local) and compare with the time last modified (see stat) of your compressed log files to see which one to examine.

If you are using 5.12 or later you should be able to use the built-in IO::Uncompress::Bunzip2 module to read the file. 5.10 or earlier and you will have to use the bunzip2 executable the way JavaFan has shown for gunzip.

Cheers,

JohnGG

Replies are listed 'Best First'.
Re^2: How to read from rotated log file?
by Wen (Initiate) on Feb 02, 2012 at 05:40 UTC
    Thank you, JohnGG. It is a great idea to look at the file creation dates and I used the piece of code by JavaFan with slight modifications. Thanks for your help, guys!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-19 21:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found