I sometimes have to look at thread dumps from a Tomcat server. However, this is a very slow process as my application uses thread pools with a couple of hundred threads. Most of the thread dumps I look at include the same stack trace for many of the threads as they are idle waiting for work.

Are there any tools which would parse a thread dump and only show me the unique stack traces along with a count of the number of threads in each state? This would allow me to quickly ignore the tens or hundreds of threads which are waiting in a common location for work.

I have tried the Thread Dump Analyzer but this doesn't do any summarisation of common stack traces.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I have written a tool to do what I wanted.

Java Thread Dump Analysis Tool

link|improve this answer
feedback

Haven't used it for a while but Samurai might be of interest.

link|improve this answer
feedback

You can always write a quick tool (with custom sorting) on the lines of what Heinz has shown in his newsletter : Thread Dump JSP in Java 5

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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