Java debug tools. Jstack, jmap and jhat.

This commit is contained in:
Peter Tripp
2016-02-16 11:27:52 -08:00
parent 8991253b8d
commit 67e2c723af
3 changed files with 45 additions and 0 deletions

11
pages/common/jhat.md Normal file
View File

@@ -0,0 +1,11 @@
# jhat
> 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}}`