且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使用ThreadDumpVisualizer IntelliJ IDEA插件来分析Java线程转储

更新时间:2023-01-11 18:54:02

在其GitHub存储库中有描述:

There is a description on its GitHub repo: https://github.com/enslinmike/Thread-dump-visualizer

线程转储可视化器

这是ItelliJ IDEA的插件.该插件的目的是提供方便的方法来分析IntelliJ IDEA的线程转储.您可以在此处

要查看转储的详细信息,应将文件及其一起拖放到线程转储"工具窗口中.支持以下选项:

To see dump's details you should drag and drop file with it to "Thread dumps" tool window. Following options are supported:

  • .txt文件.请注意,只有IDEA format 受支持.不支持其他格式.
  • .zip文件以及一些适当的.txt转储文件
  • .dbconf文件,其中包含与MongoDB的连接信息.数据应位于名为"ThreadDumps"的集合中示例:{"host":"127.0.0.1","port":27017,"dbName":"test"}
  • .txt file. Please note that only IDEA format is supported. Other formats are not supported.
  • .zip file with some proper .txt dump files
  • .dbconf file with connection information to MongoDB. Data should be in collection named "ThreadDumps" Example: { "host" : "127.0.0.1", "port" : 27017, "dbName" : "test" }

[...]