tldr/pages/common/jmap.md

25 lines
632 B
Markdown
Raw Normal View History

# jmap
> Java memory map tool.
2023-06-04 02:48:54 +01:00
> More information: <https://docs.oracle.com/en/java/javase/20/docs/specs/man/jmap.html>.
- Print shared object mappings for a Java process (output like pmap):
`jmap {{java_pid}}`
- Print heap summary information:
2016-02-16 20:36:36 +00:00
`jmap -heap {{filename.jar}} {{java_pid}}`
- Print histogram of heap usage by type:
`jmap -histo {{java_pid}}`
- Dump contents of the heap into a binary file for analysis with jhat:
`jmap -dump:format=b,file={{path/to/file}} {{java_pid}}`
- Dump live objects of the heap into a binary file for analysis with jhat:
`jmap -dump:live,format=b,file={{path/to/file}} {{java_pid}}`