Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

List your favorite heap analysis tools (e.g. jprofiler, jmap, ...). Let's keep it one tool per answer, with a short list of pros and cons for each tool.

share|improve this question

4 Answers

up vote 8 down vote accepted

YourKit : http://www.yourkit.com/

Pros:

  • The interface is clean and it's fast
  • It opened a large 5-gig heap dump where jProfiler grined to a halt. And it only needed 1-2 gigs of JVM ram to do so.

Cons: Of course... it's not free :(

share|improve this answer
2  
+1 Came here for YourKit. – Kevin Jan 14 '10 at 14:07

Eclipse Memory analyzer http://www.eclipse.org/mat/

share|improve this answer

Java VisualVM, jvisualvm, included with the JDK.

share|improve this answer
On Mac OS X, see Where did jvisualvm go? – trashgod Mar 12 at 12:18

BHeapSampler http://dr-brenschede.de/bheapsampler/

  • generates an class-level heap-graph as a really intuitive display of the dominant memory structures
  • can process really large heap dumps
  • comand-line tool, usable on server side without tranfering the dump to the developers desk
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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