如何创建由 jmx 公开并通过 jconsole 访问的性能计数器?
如何创建由 jmx 公开并通过 jconsole 访问的性能计数器?
假设每当我实例化一个特定对象时,我都会增加一个计数器。我想公开计数器值,以便可以在 jconsole 中查看该值。
我该怎么做呢?
How to create performance counters that are exposed by jmx and accessed via jconsole?
Say whenever I instantiate a particular object, I increment a counter. I want to expose the counter value so I can view the value in jconsole.
How would I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个步骤:
有详细信息,请参阅 JMX 教程。
There's a few steps:
ManagementFactory.getPlatformMBeanServer().registerMBean(...)
There are details in the JMX tutorial.