Related Programs

Top  Previous 

 

Similar Tools:

 

Apache Log Filter - http://www.logfilter.org/

This is a very nice open source alternative.  It's a commandline program written in C, and has a much simpler invocation method.  It doesn't use scripts but a straightforward commandline parameter interface.  Definitely worth a look.

FLog - http://www.uguardian.us/index.php?page=/software/flog

Commandline tool for doing grep-like stuff on apache log files.

A more flexible approach for real coders would be to use a perl (or python) apache parsing library to parse log files and use the native language scripting to do exactly what you want with the log file data.  Indeed this seems like a more rational approach than writing a big tool to do the same job but less flexibly.  The advantage to this tool is simply speed and ease of use.

 

Do you know of other similar tools?  Let us know on the DonationCoder.com Forum.

 

 

Open Source Log Analyzers in C/C++:

 

Webalizer - http://www.mrunix.net/webalizer/ - Useful log parsing routines.
Analog - http://www.analog.cx/ - Another open source C log analyzer.

 

 

Log File Information and Miscelaneous:

 

Official Apache Log File Description - http://httpd.apache.org/docs/1.3/logs.html
Apache Web Log Tools and Info at the Analog Website - http://www.analog.cx/helpers/ - great set of tools and resources.
Anonlog - http://anonlog.sourceforge.net/ - anonymize your web log files (Web Log Filter can do this too) - written in Perl.
General purpose log analysis tools - http://www.loganalysis.org/sections/parsing/generic-log-parsers/index.html
Microsoft's database driven generic log parser - link
Perl Apache Log file parsing - http://bfr.caseywest.com/archives/006893.html