vote up 7 vote down star
4

I'm starting to work on an existing project that has very verbose logging and the logs are a real pain to go through. Have you guys ever used any tools for log analysis/parsing? Can you recommend me something powerful and easy to customize and use? At first I thought I should write a tool to parse the logs, but I'm thinking maybe something like that already exists. Thank you for the help in advance.

Edit: The logs are custom - they have a set format, but I don't think they conform to any widely used standards. That's why I need a customizable log parser.

flag

25% accept rate

11 Answers

vote up 7 vote down

Log Parser from Microsoft

http://www.microsoft.com/technet/scriptcenter/tools/logparser/default.mspx

Free, and works incredibly well.

link|flag
vote up 1 vote down

We use Splunk here. http://www.splunk.com/

It's very powerful, allowing multiple log sources, templating, filtering, etc. It's a little more than a "single-user" solution, but they boast a 5-minute install.

link|flag
vote up 2 vote down

For IIS Logs, I tend to use Microsoft Excel. Import the file as space delimited, delete the header rows and the #Fields: label and then use the AutoFilter functions to slice and dice the data as you need it...

link|flag
Yep, me too. Filtering is great. The only problem (occasionally) can be limited number of rows in a spredsheat. – gabr Sep 30 '08 at 20:58
vote up -3 vote down

I agree - LogParser.

link|flag
Then you might just vote up the guy who said LogParser, or just comment on his post like this. – Bill James Sep 30 '08 at 21:10
You can earn a badge by deleting this answer :-) – Simon Gibbs Mar 16 at 17:49
vote up 1 vote down

Analog ...its free, fast, and very easy to use.

link|flag
vote up 0 vote down

If you are going to use LogParser you might find this article valuable.

link|flag
vote up 2 vote down

Log Parser is an excellent tool for this.

You might want to check out Visual Log parser over on Codeplex, though it doesn't look like much work has been done on if for awhile.

There's a forum here that discusses Log Parser.

Also, Mike Gunderloy had an unofficial FAQ here, and here's a nice article over at Coding Horror

link|flag
vote up 0 vote down

You can try Octopussy (it's my project)

It is a log analysis/alerting/reporting solution made to handle any kind of logs. It's quite complicated at the beginning, but after, it's really powerful. It's fully customizable and you have a 'logs wizard' to create new parsers.

link|flag
someone has a fascination with octopi.. and really bad James Bond movies.. :) – Jeff Atwood Oct 19 '08 at 15:16
As I said in this answer, I should choose another name for my project ! :) – sebthebert Nov 11 '08 at 0:07
vote up 0 vote down

Currently experimenting with SED and MySQL. SED is used to solve syntax level issues and convert to CSV. The SED script took a few hours (including learning SED), but I expect the hard part to be the analysis in MySQL of course.

I just found that none of the downloadable tools were able to permanently categorise hits and consistently include/exclude the correct categories in reports.

If you are thinking of improving this custom log format of yours then log4x with the Xml layout is one to consider. Take note of the NDC and MDC output. Of course, you'd need to switch to log4x too. Your analyser in this case would be Chainsaw, but you are dealing with XML fragments so a custom solution is also possible.

link|flag
vote up 0 vote down

SLCT - Simple Logfile Clustering Tool figures out recurring patterns on its own and prints a concise summary. It's good for a quick look at a log for which you don't have any parser or grammar yet.

link|flag
vote up 1 vote down

Perl

It usually takes a very short time to write a custom log parser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.