Re: Help needed regarding Parsing Apache Web log file, access_log

2003-06-21 Thread R. Joseph Newton
Anand Babu wrote: > No, I was not expecting anyone to give me a ready made program! I believe in the > adage that "Self Help is the Best Help":-) > Good. You will find a lot of help, then. > Thanks > > Anand > > - > > The script: > > > > #!/usr/bin/perl > > use Getopt::Lon

Re: Help needed regarding Parsing Apache Web log file, access_log

2003-06-18 Thread Anand Babu
Hi, Further to my posts 48450 & 48452, I have modified the perl script. Here it is: -- #!/usr/bin/perl ###use strict; use Getopt::Long; use Time::Local; my $file="access_log_modified"; my $begin_time = ""; my $end_time; my @visual_pages = (); my @final_visual_pages =

Re: Help needed regarding Parsing Apache Web log file, access_log

2003-06-18 Thread Anand Babu
No, I was not expecting anyone to give me a ready made program! I believe in the adage that "Self Help is the Best Help":-) Thanks for the pointer to http://www.oreilly.com/catalog/perlwsmng/chapter/ch08.html. I already looked at that before posting my message. At the end of this email, is the

Re: Help needed regarding Parsing Apache Web log file, access_log

2003-06-18 Thread Ben Crane
Try: http://www.oreilly.com/catalog/perlwsmng/chapter/ch08.html good starting place! __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

Re: Help needed regarding Parsing Apache Web log file, access_log

2003-06-18 Thread Ben Crane
Try: http://www.oreilly.com/catalog/perlwsmng/chapter/ch08.html good starting place! __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

Re: Help needed regarding Parsing Apache Web log file, access_log

2003-06-18 Thread Ramprasad
Anand Babu wrote: Hi all, I am new to this group. I need help regarding a perl script which parses the web log file, access_log. Welcome , This is the most friendly list I have seen The format of the access_log is: 127.0.0.1 - - [15/Jun/2003:13:54:02 -0100] "GET / HTTP/1.1" 200 34906

Help needed regarding Parsing Apache Web log file, access_log

2003-06-17 Thread Anand Babu
Hi all, I am new to this group. I need help regarding a perl script which parses the web log file, access_log. The format of the access_log is: 127.0.0.1 - - [15/Jun/2003:13:54:02 -0100] "GET / HTTP/1.1" 200 34906 The goal is to 1. Perform a count of the pages for the given timestam