如何远程检索 java 线程转储
JVisualVM 通过 JMX 连接到 Java 进程,并且可以通过单击按钮生成线程转储。我想向我自己的应用程序添加类似的功能,以便它可以从远程服务请求线程转储。
我需要询问哪些 MBean 才能获取此信息?又如何呢?
JVisualVM connects to a Java process over JMX and can produce a thread dump through the click of a button. I'd like to add a similar feature to my own application so that it can request thread dumps from remote services.
Which MBeans do I need to interrogate to get this information? and how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用名为
"java.lang:type=Threading"
的 MBean。 此处描述了它的接口。为了获取线程转储,您首先需要使用 getAllThreadIds 方法,然后循环遍历所有检索到的 id 并为每个 ID 调用 getThreadInfo 方法。
You can use MBean with name
"java.lang:type=Threading"
. It's interface is described here.In order to get thread dump you first need to use
getAllThreadIds
method and then loop through all retrieved ids and callgetThreadInfo
method for each of them.您可以使用 ThreadMXBean 管理界面。
这个 FullThreadDump 类演示了获取完整线程转储和还可以使用 JMX 远程检测死锁。
You can use the ThreadMXBean management interface.
This FullThreadDump class demonstrates the capability to get a full thread dump and also detect deadlock remotely using JMX.