Is there a tool that is able to collect and count (Java) stacktraces in a large logfile, such that you get an overview which errors occur most often?
Asked
Active
Viewed 287 times
0
-
4`grep` / `sed` / `sort` / `uniq` – Tomasz Nurkiewicz Jan 27 '12 at 18:53
-
@TomaszNurkiewicz : it it even possible to use multiline regular expressions (for stacktraces) with grep? I think not. – Dr. Hans-Peter Störr Jan 30 '12 at 12:14
3 Answers
1
This probably isn't the best answer but I am going to try to answer the spirit of your question. You should try Dynatrace. It's not free and it doesn't work with log files per say but it can get you very detail reports of what types of exceptions are thrown from where and when on top of a lot of other info.

Andrew White
- 52,720
- 19
- 113
- 137
1
I'm not too sure if there is a tool available to evaluate log files but you may have more success with a tool like AppDynamics. This is a monitoring tool which can be used to evaluate Live application performance and can be configured to monitor exception frequency.
Good luck.
Mark.

Binil Thomas
- 13,699
- 10
- 57
- 70

Mark Butler
- 466
- 3
- 10