我正在为zabbix开发监视脚本和模板的集合。它称为ZTC,所有脚本都在python上。
现在,我想添加对某些Java监视的支持。我还没有找到从CPython做到这一点的方法-仅从Java或jython。由于所有项目都是基于python的,因此我决定在jython上编写一个简单的脚本,该脚本将从我的cpython类中调用。
这是我的代码的样子:
#!/usr/bin/env jython
#Java Dependencies
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import java.lang.management.ManagementFactory;
#Python Dependencies
import sys, cmd, socket
def usage():
print """Usage:
jmxclient.py -h
jmxclient.py <connect_url> <jmx_attribute_path> <jmx_property>"""
class JMXClient:
remote = None
def connect(self, connect_url):
if self.remote:
return True
#Establish Connection to JMX Server
url = javax.management.remote.JMXServiceURL(connect_url);
connector = javax.management.remote.JMXConnectorFactory.connect(url);
self.remote = connector.getMBeanServerConnection();
def getAttribute(self, mbean_path, attribute):
"""Query the mbean server for a specific attribute and return the
result"""
obn = javax.management.ObjectName(mbean_path);
result = self.remote.getAttribute(obn, attribute);
return result
if len(sys.argv) <= 1:
usage()
sys.exit(2)
if sys.argv[1] in ('-h', '--help'):
usage()
sys.exit(2)
if len(sys.argv) <> 4:
usage()
sys.exit(2)
(connect_url, mbean_path, attribute) = sys.argv[1:]
j = JMXClient()
j.connect(connect_url)
print j.getAttribute(mbean_path, attribute)
好的,现在我正在尝试从兵马俑服务器获取一些属性。它使用带有URL服务的jmxmp:jmx:jmxmp://0.0.0.0:9520。
因此,我正在如下运行脚本:
$ ./jmxclient.py service:jmx:jmxmp://localhost:9520 java.lang.ClassLoading LoadedClassCount
Traceback (innermost last):
File "./jmxclient.py", line 87, in ?
File "./jmxclient.py", line 61, in connect
at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:327)
at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:247)
at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:207)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
java.net.MalformedURLException:java.net.MalformedURLException:不支持的协议:jmxmp
(由于注释不完整,行号不相关)
如何添加对此jmxmp协议的支持?
我发现似乎可以通过jmxremote_optional.jar启用它。如何将这个罐子添加到我的jython中(不是系统范围的)?
更新:
如建议的那样,我从
jmxremote-1_0_1-ri-bin-b58.zip
参考实现:jython -Djava.endorsed.dirs=. -Dpython.path=.../jmxremote_optional.jar:.../jmxremote.jar:.../jmissl.jar jmxclient.py service:jmx:jmxmp://localhost:9520 java.lang.ClassLoading LoadedClassCount
添加了jmxremote_optional.jar和jmxremote.jar,但是仍然遇到相同的错误。我确定jmxremote_optional.jar在类路径中,并且代码似乎与参考示例非常相似。阅读api文档后,我尝试了以下更改:
url = javax.management.remote.JMXServiceURL('jmxmp', 'localhost', 9520);
connector = javax.management.remote.jmxmp.JMXMPConnector(url)
connector.connect()
self.remote = connector.getMBeanServerConnection();
这导致我另一个异常:
Traceback (innermost last):
File "../src/jmxclient.py", line 87, in ?
File "../src/jmxclient.py", line 61, in connect
at com.sun.jmx.remote.opt.security.AdminClient.connectionOpen(AdminClient.java:209)
at com.sun.jmx.remote.generic.ClientSynchroMessageConnectionImpl.connect(ClientSynchroMessageConnectionImpl.java:72)
at javax.management.remote.generic.GenericConnector.connect(GenericConnector.java:177)
at javax.management.remote.jmxmp.JMXMPConnector.connect(JMXMPConnector.java:119)
at javax.management.remote.generic.GenericConnector.connect(GenericConnector.java:124)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
java.io.IOException: java.io.IOException: javax.management.remote.message.HandshakeBeginMessage
Jython版本是2.2,我不喜欢使用更高版本,因为该脚本主要在RHEL5机器上使用,并且它们只有jython 2.2.1。
PS:将问题标记为已回答,因为我已决定放弃并使用jmxterm或类似工具,只需添加-Djava.endosed.dirs = / path / to / dir_with_jmxremote_optional /,它们似乎都可以与jmxmp一起使用。
但是我仍然希望看到jython解决方案。
最佳答案
伙计,我读了约7次该帖子...
无论如何,这就是我的想法。 jmxmp协议未打包在标准J2SE运行时中。参见此page。报价:
注–如果要使用JMXMP连接器,请从http://java.sun.com/products/JavaManagement/download.html下载JSR 160参考实现,然后将jmxremote_optional.jar文件添加到您的类路径中。您可以在《 JSR 160参考实现》随附的《 JMX远程API教程》中找到使用JMXMP连接器的示例。
我对jython不太熟悉,但是看起来post应该会吸引您。