in reply to Re: A good way to parse Apache logs (HTTPD::Log::Filter)
in thread A good way to parse Apache logs
my $hlf = HTTPD::Log::Filter->new(capture => [ qw(request status) ]); ... next unless $hlf->filter($ac_line); next unless $hlf->status == 200; my ($method, $query, $http_version) = split(' ', $hlf->request);
|
|---|