-- 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
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
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,
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
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 -