如何访问内存池 mbean
我想通过java程序访问MemoryPool Mbeans,以便检索一段时间内的Eden Space、Perm Gen space、CodeCahe、Survior Space统计信息。 如何做到这一点? 我尝试了 java.lang:type=MemoryPool,name=Eden Space
我不幸运
谢谢, 香卡
I want to access MemoryPool Mbeans through a java program so that I can retrieve the Eden Space, Perm Gen space, CodeCahe, Survior Space statistics during a period of time.
How to do this?
I tried java.lang:type=MemoryPool,name=Eden Space
I wan not lucky
Thanks,
Shankar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下内容对我来说效果很好: 'java.lang:type=MemoryPool,name=PS Eden Space'
如果您通过 JConsole 连接到您的应用程序,您将能够看到可用的 MBean 以及您想要使用的 MBean 的确切 ObjectName 。
The following worked fine for me: 'java.lang:type=MemoryPool,name=PS Eden Space'
If you connect to your app via JConsole you will be able to see the MBeans available and the exact ObjectName of the MBean you want to use.
有办法做到这一点。使用 ManagementFactory.MEMORY_POOL_MXBEAN_DOMAIN_TYPE,* 定义对象名称,获取实例。这解决了我的问题。
Got the way to do it. Used ManagementFactory.MEMORY_POOL_MXBEAN_DOMAIN_TYPE,* for defining Object name, got the instances. That solved my problem.