I have a bunch of Apache log files that I would like to analyze. I'm looking for a tool that doesn't require much setup; something that I can run a log through the command line, without messing around on our live web servers.
Any recommendations?
feedback
|
|
wtop is cool. There's other utilities as well. Often, I'll parse logs using bash, sed, and awk. | |||
|
feedback
|
|
What sort of output do you want? If you are you just looking to count things then grep something logfile.txt | wc -l works great. If you want pretty graphs... not so much. | |||
|
feedback
|
|
if you have a windows workstation that you can use then logparser is the tool of choice! | |||
|
feedback
|
|
analog works well out of the box and doesn't require a lot of setup. logwrangler is a package that works with analog to generate nicer output and also requires little setup. | |||
|
feedback
|
|
Instead of using a command line tool I would suggeset to try Apache Logs Viewer. It's a free tool which can monitor and analyze the Apache Log File. It can generate some pretty cool graphs and reports on the fly. More info from http://www.apacheviewer.com | |||
|
feedback
|