通过 SNMP 监控 JRockit JVM
我想通过 SNMP 协议监控我的 Java 应用程序(在 JRockit 中运行)。 我只需要一些基本信息。 是否有任何启动参数可以添加到我的应用程序中以启用 SNMP?
I would like to monitor my Java application (running in JRockit) via SNMP protocol. I only need some basic informations. Is there any startup parameter that I can add to my app to enable SNMP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JRockit 中的 SNMP 与 Sun 的 JVM 中的工作方式相同。 详细信息位于此网页。
简而言之,您要做的就是:
-Dcom.sun.management.snmp.port=portNum
开始,JRE_HOME/lib/management/snmp.acl中的ACL模板文件。 template
到JRE_HOME/lib/management/snmp.acl
,并使其只有所有者可读和可写。SNMP in JRockit works the same way as in Sun's JVM. The details are on this webpage.
In short, what you have to do is:
-Dcom.sun.management.snmp.port=portNum
JRE_HOME/lib/management/snmp.acl.template
toJRE_HOME/lib/management/snmp.acl
, and make it readable and writeable by only the owner.我不相信 JRockit 可以发布有关 SNMP 的统计信息。 我所看到的监控系统所做的就是连接 JRockit 内的 JMX 监控点...
当然,您也可以使用插入到上面提到的 JMX beans 中的 JRMC 工具。
华泰
汤姆
I don't believe JRockit can publish stats on SNMP. What I have seen monitoring systems do is hook-up the the JMX monitoring points within JRockit...
Of course you can also use the JRMC tool which is plugged into the JMX beans mentioned above.
HTH
Tom
标准 JRockit JVM 不支持 SNMP。 最常见的方法是附加 JMX SNMP 连接器。 我以前使用过 AdventNet 。
The standard JRockit JVM does not support SNMP. The most common approach is to attach a JMX SNMP Connector. I have previously used the AdventNet one.