jhat: Java heap analysis tool
·
113 words
·
1 minute read
jhat is a Java heap analysis tool.
Analyze a heap dump (from jmap
), view via HTTP on port 7000:
jhat dump_file.bin
Analyze a heap dump, specifying an alternate port for the HTTP server:
jhat -p port dump_file.bin
Analyze a dump letting jhat
use up to 8 GB RAM (2-4x dump size recommended):
jhat -J-mx8G dump_file.bin
More information: https://docs.oracle.com/javase/8/docs/technotes/tools/unix/jhat.html .
I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .