Forrest logo
back to context overview

jstack

List of commands for jstack:

  • jstack:tldr:6f6e9 jstack: Print mixed mode (Java/C++) stack traces for all threads in a Java process.
    $ jstack -m ${java_pid}
    try on your machine
    explain this command
  • jstack:tldr:78511 jstack: Print Java stack traces for all threads in a Java process.
    $ jstack ${java_pid}
    try on your machine
    explain this command
  • jstack:tldr:ecf54 jstack: Print stack traces from Java core dump.
    $ jstack ${-usr-bin-java} ${file-core}
    try on your machine
    explain this command
back to context overview