Apache SQL analyser 1.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Apache SQL analyser 1.2 (Default branch)
# 1  
Old 01-12-2009
Apache SQL analyser 1.2 (Default branch)

asql allows you to run SQL queries against logfiles formatted in the Apache common log fileformat. You may load multiple log files into asession, then run queries using a full SQLimplementation, to find things such as the mostcommon referers to your site, the greediestdownloaders, and much more. Internally, each logfile is parsed and imported into a temporarySQLite database, so performance is very good.License: GNU General Public License v2Changes:
This release ensures that when importing Apache logs into the temporary SQL table that the HTTP status code is treated as an integer and not a string.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Web Development

Using IP.Board on FreeBSD, having SQL/Apache Issues

Server: FreeBSD 7.2-RELEASE MYSQL Version: MYSQL 5.1.36 PHP Version: 5.2.10 (apache2handler) IP.Board Version: v3.0.2 Safe Mode: OFF For the most part previously IP.Board, forum software, has run fine without any issues. Regular web pages and .php pages seem to load fine without any issues.... (2 Replies)
Discussion started by: Dark Severance
2 Replies
Login or Register to Ask a Question
AnyData::Format::Weblog(3pm)				User Contributed Perl Documentation			      AnyData::Format::Weblog(3pm)

NAME
AnyData::Format::Weblog - tiedhash & DBI/SQL access to HTTPD Logs SYNOPSIS
use AnyData; my $weblog = adTie( 'Weblog', $filename ); while (my $hit = each %$weblog) { print $hit->{remotehost}," " if $hit->{request} =~ /mypage.html/; } # ... other tied hash operations OR use DBI my $dbh = DBI->connect('dbi:AnyData:'); $dbh->func('hits','Weblog','access_log','ad_catalog'); my $hits = $dbh->selectall_arrayref( qq{ SELECT remotehost FROM hits WHERE request LIKE '%mypage.html%' }); # ... other DBI/SQL read operations DESCRIPTION
This is a plug-in format parser for the AnyData and DBD::AnyData modules. You can gain read access to Common Log Format files web server log files (e.g. NCSA or Apache) either through tied hashes or arrays or through SQL database queries. Fieldnames are taken from the W3 definitions found at http://www.w3.org/Daemon/User/Config/Logging.html#common-logfile-format remotehost usernname authuser date request status bytes In addition, two extra fields that may be present in extended format logfiles are: referer client This module does not currently support writing to weblog files. Please refer to the documentation for AnyData.pm and DBD::AnyData.pm for further details. AUTHOR &; COPYRIGHT copyright 2000, Jeff Zucker <jeff@vpservices.com> all rights reserved perl v5.10.1 2004-08-17 AnyData::Format::Weblog(3pm)