|
NAMEjmap - print details of a specified processSYNOPSISNote: This command is experimental and unsupported.jmap [options] pid
Note: JDK 10 has added support for using the Attach API when attaching to Java processes running in a separate docker process. However, the jps command will not list the JVM processes that are running in a separate docker instance. If you are trying to connect a Linux host with a Virtual Machine that is in a docker container, you must use tools such as ps to look up the PID of the JVM. DESCRIPTIONThe jmap command prints details of a specified running process.Note: This command is unsupported and might not be available in future releases of the JDK. On Windows Systems where the dbgeng.dll file isn't present, the Debugging Tools for Windows must be installed to make these tools work. The PATH environment variable should contain the location of the jvm.dll file that's used by the target process or the location from which the core dump file was produced. OPTIONS FOR THE JMAP COMMAND
Example: jmap -dump:live,format=b,file=heap.bin pid
Visit the GSP FreeBSD Man Page Interface. |