Upload Thread Dump JSON
Drag and drop your thread dump JSON file here, or click to browse
Privacy: This page is client-side only, and no data will leave your computer when you upload.
How to Generate Thread Dumps
Generate a JSON thread dump from your Java application using:
jstack -format=json <pid> > thread-dump.json
Or with JDK 21+ and virtual threads:
jcmd <pid> Thread.dump_to_file -format=json thread-dump.json