Re: apache log parsing

2005-04-11 Thread Michele Ouellet
-- There exist some apps to make statistics from apache logs, -- e.g. awstats (awstats.sourceforge.net), analog, Webalizer and more. -- But don't know which one is the best, sorry. I don't know which is best either but I have been using awstats for an Intranet; it is reasonably easy to configure

Re[2]: apache log parsing

2005-04-03 Thread John
From: John Doe <[EMAIL PROTECTED]> To: beginners@perl.org Date: Thursday, March 31, 2005, 7:42:03 PM Subject: apache log parsing Thursday, March 31, 2005, 7:42:03 PM, you wrote: > Am Donnerstag, 31. März 2005 15.36 schrieb John: > [...] > Hi John >> I found the a

Re: apache log parsing

2005-03-31 Thread John W. Krahn
John wrote: hello Hello, I want to split the datetime of apache log i tried this code with no success @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS has anyone tried anything like that? my @fields = $datetime =~ /\d+/g; John -- use Perl; program fulfillment -- To unsubscribe, e-mail: [EM

Re: apache log parsing

2005-03-31 Thread John Doe
Am Donnerstag, 31. März 2005 15.36 schrieb John: [...] Hi John > I found the a module Apache::Regexp can parse apache logs > but i am afraid it cannot output statistics just does what > i am trying to do subsrt the datetime, hosts, etc. There exist some apps to make statistics from apache logs,

Re[2]: apache log parsing

2005-03-31 Thread John
From: John Doe <[EMAIL PROTECTED]> To: beginners@perl.org Date: Thursday, March 31, 2005, 2:24:24 PM Subject: apache log parsing Thursday, March 31, 2005, 2:24:24 PM, you wrote: > Am Donnerstag, 31. März 2005 11.08 schrieb John: >> hello >> >> I want to split

Re: apache log parsing

2005-03-31 Thread Offer Kaye
On Thu, 31 Mar 2005 13:24:24 +0200, John Doe wrote: > > [2] use another "delimiter" (don't know the english term at the moment) > "Delimiter" is the correct term. See "perldoc perlop", the beginning of the section titled "Quote and Quote-like Operators". -- Offer Kaye -- To unsubscribe, e-mail

Re: apache log parsing

2005-03-31 Thread John Doe
Am Donnerstag, 31. März 2005 11.08 schrieb John: > hello > > I want to split the datetime of apache log > > i tried this code with no success > > @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS > > has anyone tried anything like that? Always use "use strict; use warnings" in your code -

apache log parsing

2005-03-31 Thread John
hello I want to split the datetime of apache log i tried this code with no success @fields=split(/[/:]/, $datetime); ### DD/MM/:HH:MM:SS has anyone tried anything like that? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]