vote up 1 vote down star
1

Is there a tool which can be used to analyze log4net logs.

Particulary I would like to extract two method calls by thread id and analyze the duration between the two, to create some statistics of call duration.

Plus this over multiple (100x10Mb) files.

I suppose grep would also do it.

flag

80% accept rate

3 Answers

vote up 3 vote down

Well this may or may not be a bad answer, but when you use log4j, there's a tool called Chainsaw (written in Java) that you can use to filter and go through your log4j-like log files.

Note: You may need to refer to this article to configure chainsaw to read your log file file:

http://wiki.apache.org/logging-log4j/Configuring_a_log4j_RollingFileAppender_with_Chainsaw

link|flag
I gave it a shot, but it seems like it doesn't work with log4net logs. – Drejc Dec 10 '08 at 13:23
Really? Look at the format of the logs. And make sure it matches what you have being output from it. – leeand00 Dec 10 '08 at 14:02
It might also have something to do with which version of chainsaw you compiled. As I remember I had to go to the repository to compile it, rather than just getting the binary jars for it. – leeand00 Dec 10 '08 at 14:03
It's not easy to do this...maybe I will have to drop it on drop.io for you over lunch. – leeand00 Dec 10 '08 at 14:03
1  
Here's something that might help even more... geekswithblogs.net/kobush/archive/… – leeand00 Dec 10 '08 at 14:36
show 4 more comments
vote up 0 vote down

If you are using the XML log formatting. You can process the log files. using xpath to extract the details you want. But you would have a write a small app yourself.

link|flag
vote up 0 vote down

In case you use the XML Log you could write a XSL Stylesheet and reference it from the XML. Then you just need to point your browser to the XML and it will style the XML with your XSL Stylesheet for you to see the data as HTML (or whatever, XSL is very powerful).

link|flag
It is a plain TXT log, plus there are at least 20x10Mb files. – Drejc Dec 17 '08 at 21:57

Your Answer

Get an OpenID
or

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