如何远程检索 java 线程转储

发布于 2024-11-17 18:59:04 字数 125 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

还如梦归 2024-11-24 18:59:05

您可以使用名为 "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 call getThreadInfo method for each of them.

自我难过 2024-11-24 18:59:05

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文