0

I made a thread dump in jvisualvm. How to export it?

enter image description here

I can't find any export button.

lapots
  • 12,553
  • 32
  • 121
  • 242

1 Answers1

1

For an answer, I suggest you use ^A^C to select all and copy, and ^V to paste into your favour editor. (Thank you @SubOptimal) If you use IntelliJ, it can analyse the stack trace and let you navigate it.

From the command line you can do

jstack {pid} > file

to write directly to a file.

Peter Lawrey
  • 525,659
  • 79
  • 751
  • 1,130