in reply to Re: A good way to parse Apache logs (HTTPD::Log::Filter)
in thread A good way to parse Apache logs

I also had good results with HTTPD::Log::Filter extracting the query strings from my access_log.
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);