JMX监控weblogic问题

问题描述

工作须要,得监控weblogic的指标,例如:连接池、线程数、JMS明细、EJB明细,等指标!在网上了解了一下JMX原理,也做了一个JMX的Hello例子,但是要监控weblogic不知道如何动手,得到了与weblogic的Mbeanserverconnection,但是不知道怎么得到我要的监控指标,是还要注册相应的Mbean?该Mbean要怎么写呀?又怎么从Mbean上得到相应的监控数据,自己做的JMX例子好像太浅,希望哪位JMX老手指点一下,能否提供点JMX资料!我得到Mbeanserverconnection的代码如下: private static MBeanServerConnection lookupMBeanServer9(String ip, String port, String name, String pass) { String protocol; String s5; protocol = "t3"; s5 = "/jndi/weblogic.management.mbeanservers.runtime"; MBeanServerConnection mbeanserverconnection; try { //JarLoader jarloader = new JarLoader((new StringBuilder()).append(".").append(File.separator).append("working").append(File.separator).append("classes").append(File.separator).append("weblogicclient9.jar").toString()); //Thread.currentThread().setContextClassLoader(jarloader); JMXServiceURL jmxserviceurl = new JMXServiceURL(protocol,ip, Integer.parseInt(port), s5); Hashtable hashtable = new Hashtable(); hashtable.put("java.naming.security.principal", name); hashtable.put("java.naming.security.credentials", pass); hashtable.put("jmx.remote.protocol.provider.pkgs", "weblogic.management.remote"); JMXConnector jmxconnector = JMXConnectorFactory.connect(jmxserviceurl, hashtable); mbeanserverconnection = jmxconnector.getMBeanServerConnection(); return mbeanserverconnection; }catch(Exception ex){ ex.printStackTrace(); } return null; }

解决方案

需要了解weblogic的MBean结构,你可以去bea网站查看相关资料,了解其结构后就很容易得到这些指标了,以下给出简单的示例代码:package demo.jmx.weblogic;import java.io.IOException;import java.net.MalformedURLException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;import java.util.Hashtable;import javax.management.MBeanServerConnection;import javax.management.MalformedObjectNameException;import javax.management.ObjectName;import javax.management.remote.JMXConnector;import javax.management.remote.JMXConnectorFactory;import javax.management.remote.JMXServiceURL;import javax.naming.Context;@SuppressWarnings("unused")public class WeblogicJmxTest {private static MBeanServerConnection connection;private static JMXConnector connector;private static final ObjectName service;/* *实例化 DomainRuntimeServiceMBean 对象名,这样可以通过类使用此对象名. */static {try {service = new ObjectName("com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");} catch (MalformedObjectNameException e) {throw new AssertionError(e.getMessage());}}public static void main(String[] args) throws Exception {String hostname = "localhost";String portString = "7001[align=left][/align]";String username = "weblogic";String password = "weblogic";WeblogicJmxTest demo = new WeblogicJmxTest();demo.initConnection(hostname, portString, username, password);demo.printNameAndState(demo.getServerRuntimes());//demo.getServletData();////得到运行时信息//MBeanInfo runMBeanInfo = connection.getMBeanInfo(ObjectName.getInstance("com.bea:Location=AdminServer,Name=consoleapp,ServerRuntime=AdminServer,Type=ServerRuntime"));//MBeanAttributeInfo[] attr = runMBeanInfo.getAttributes();//for(int i=0;i<attr.length;i++){//if("WorkManagerRuntimes".equals(attr[i].getName())){//demo.print("Runtime Info", attr[i].getName());//demo.print("Runtime Desc", attr[i].getDescription());//}//}//connector.close();}/* * 实例化与 Domain Runtime MBean Server 的连接。 */private void initConnection(String hostname, String portString,String username, String password) throws IOException,MalformedURLException {String protocol = "t3";Integer portInteger = Integer.valueOf(portString);int port = portInteger.intValue();String jndiroot = "/jndi/";String mserver = "weblogic.management.mbeanservers.domainruntime";JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, port,jndiroot + mserver);Hashtable<String,String> h = new Hashtable<String,String>();h.put(Context.SECURITY_PRINCIPAL, username);h.put(Context.SECURITY_CREDENTIALS, password);h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");connector = JMXConnectorFactory.connect(serviceURL, h);connection = connector.getMBeanServerConnection();}//private void initConnectionByJDK(String hostname, String portString,//String username, String password) throws IOException,//MalformedURLException {//String protocol = "rmi";//Integer portInteger = Integer.valueOf(portString);//int port = portInteger.intValue();//String jndiroot = "/jndi/iiop://" + hostname + ":" + port +"/";//String mserver = "weblogic.management.mbeanservers.domainruntime";//JMXServiceURL serviceURL = new JMXServiceURL(protocol, hostname, port,//jndiroot + mserver);//Hashtable<String,String> h = new Hashtable<String,String>();//h.put(Context.SECURITY_PRINCIPAL, username);//h.put(Context.SECURITY_CREDENTIALS, password);//h.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,"weblogic.management.remote");//connector = JMXConnectorFactory.connect(serviceURL, h);//connection = connector.getMBeanServerConnection();//}/* * 打印一组 ServerRuntimeMBeans.此 MBean 是运行时 MBean 层次的根,此域中的每个服务器承载自己的实例. */public ObjectName[] getServerRuntimes() throws Exception {return (ObjectName[]) connection.getAttribute(service, "ServerRuntimes");}/* * 迭代 ServerRuntimeMBean,获取名称和状态 */public void printNameAndState(ObjectName[] p_objNames) throws Exception {ObjectName[] serverRT = p_objNames;System.out.println("got server runtimes");int length = (int) serverRT.length;for (int i = 0; i < length; i++) {print("===================Weblogic运行信息====================","");//域名称String name = (String) connection.getAttribute(serverRT[i], "Name");System.out.println("Server name: " + name);//运行状态String state = (String) connection.getAttribute(serverRT[i],"State");System.out.println("Server state: " + state);//开始时间Long activationTime = (Long) connection.getAttribute(serverRT[i], "ActivationTime");Calendar cal = Calendar.getInstance();Date date = cal.getTime();date.setTime(activationTime);SimpleDateFormat formater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");String strDateTime = formater.format(date);System.out.println("Start running time: " + strDateTime);//weblogic 的版本String weblogicVersion = (String) connection.getAttribute(serverRT[i], "WeblogicVersion");System.out.println("Weblogic Version: " + weblogicVersion);//OS信息ObjectName jvmServerRT = (ObjectName)connection.getAttribute(serverRT[i], "JVMRuntime");print("=======================OS信息==========================","");print(" 操作系统",connection.getAttribute(jvmServerRT, "OSName").toString());print(" 操作系统版本",connection.getAttribute(jvmServerRT, "OSVersion").toString());print(" Java版本",connection.getAttribute(jvmServerRT, "JavaVersion").toString());print(" Java提供商",connection.getAttribute(jvmServerRT, "JavaVMVendor").toString());long runTime = (Long)connection.getAttribute(jvmServerRT,"Uptime")/1000;long day = runTime/(24*60*60);long hour = runTime%(24*60*60)/(60*60);long minute = runTime%(60*60)/60;long second = runTime%60;System.out.println(" 系统已经运行:"+day+"天"+hour+"小时"+minute+"分"+second+"秒");}}/* * 获取一组 WebApplicationComponentRuntimeMBean */public void getServletData() throws Exception {ObjectName[] serverRT = getServerRuntimes();int length = (int) serverRT.length;for (int i = 0; i < length; i++) {ObjectName[] appRT = (ObjectName[]) connection.getAttribute(serverRT[i], "ApplicationRuntimes");int appLength = (int) appRT.length;for (int x = 0; x < appLength; x++) {System.out.println("Application name: "+ (String) connection.getAttribute(appRT[x], "Name"));ObjectName[] compRT = (ObjectName[]) connection.getAttribute(appRT[x], "ComponentRuntimes");int compLength = (int) compRT.length;for (int y = 0; y < compLength; y++) {System.out.println(" Component name: "+ (String) connection.getAttribute(compRT[y],"Name"));String componentType = (String) connection.getAttribute(compRT[y], "Type");System.out.println(" type: " + componentType.toString());//if (componentType.toString().equals("WebAppComponentRuntime")) {//ObjectName[] servletRTs = (ObjectName[]) connection.getAttribute(compRT[y], "Servlets");//int servletLength = (int) servletRTs.length;//for (int z = 0; z < servletLength; z++) {//System.out.println(" Servlet name: "+ (String) connection.getAttribute(servletRTs[z], "Name"));//System.out.println(" Servlet context path: " + (String) connection.getAttribute(servletRTs[z], "ContextPath"));//System.out.println(" Invocation Total Count : " + (Object) connection.getAttribute(servletRTs[z],"InvocationTotalCount"));//}//}}}}}public void print(String prefix,String content){System.out.println(prefix + ": " + content);}}
解决方案二:
这里有详细的解释http://edocs.bea.com.cn/wls/docs92/jmx/index.html

时间: 2024-10-01 08:26:35

JMX监控weblogic问题的相关文章

java如何监控weblogic 12

问题描述 java如何监控weblogic 12 现在我想用Java去实现对weblogic的监控,不知道大神们有没有什么好的方法,最好详细点的 解决方案 使用JMX可以对weblogic进行监控.给你点资料 API:http://docs.oracle.com/cd/E13222_01/wls/docs90/wlsmbeanref/core/index.html 我现在正在做weblogic监控这方面的东西呢,如果有什么问题,可以联系我咱俩互相讨论,顺便附上我最初的测试代码 package c

通过JMX监控Spring Boot应用

在Spring Boot应用的健康监控一文中,我们通过Spring Boot Actuator对外暴露应用的监控信息,除了使用HTTP获取JSON格式 的数据之外,还可以通过JMX监控应用,Spring Boot也提供了对JMX监控的支持.JMX监控对外暴露的信息相同,不过是使用MBeans容器将应用数据封装管理. 接下来我们看下如何利用JMX获取应用状态信息,以及如何使用Jolokia JMX库对外暴露MBeans的HTTP访问URL. Get Ready 在BookPub应用的pom文件中添

使用JMX监控Kafka

http://blog.csdn.net/eric_sunah/article/details/44980385?utm_source=tuicool   使用JMX监控Kafka 标签: KafkaJMX监控 2015-04-10 15:43 2952人阅读 评论(3) 收藏 举报  分类: Kafka(8)  版权声明:本文为博主原创文章,未经博主允许不得转载. 目录(?)[+] Kafka可以配置使用JMX进行运行状态的监控,既可以通过JDK自带Jconsole来观察结果,也可以通过Jav

如何使用JMX监控Kafka

使用kafka做消息队列中间件时,为了实时监控其性能时,免不了要使用jmx调取kafka broker的内部数据,不管是自己重新做一个kafka集群的监控系统,还是使用一些开源的产品,比如yahoo的kafka manager, 其都需要使用jmx来监控一些敏感的数据.在kafka官网中 http://kafka.apache.org/082/documentation.html#monitoring 这样说: Kafka uses Yammer Metrics for metrics repo

jmx监控websphere6.1时报 启用 SOAP 连接器安全性时,系统无法创建连接到端口8880

问题描述 (急啊)jmx监控websphere6.1时报启用SOAP连接器安全性时,系统无法创建连接到端口8880 解决方案 解决方案二:该回复于2012-07-21 13:19:53被版主删除解决方案三:该回复于2012-08-08 15:11:13被版主删除

使用JMX监控应用程序内、外部的状况

Java管理API (JMX)对管理WebLogic服务器而言是必需的.通过这个API,你可以在应用程序服务器里搜索管理beans (mbeans) 并且通过它们你既可以查询配置信息又可以查询runtime监控信息. 此外,通过这个API还可以用来改变服务器的配置. 事实上,这个API 已在控制台和其他的管理工具上使用着,用来完成它们的工作和提供报告数据. 这个API是一个强大的监控工具.让我们来看一个例子. 在这个应用程序中,有大部分的静态内容,一些你的个性化的JSP页面,一个注册系统,一个基

请教如何利用jmx监控websphere6。1

问题描述 请问利用jmx是否可以监控以下性能指标:消息队列中的占用比例(百分比),已查消息数,错误消息数,失败消息数日志文件大小,日志递增大小

(急)jmx监控websphere6.1时报启用SOAP连接器安全性时,系统无法创建连接到端口8880

问题描述 2012-7-126:53:40com.ibm.websphere.management.AdminClientFactory警告:ADMC0046Wcom.ibm.websphere.management.exception.ConnectorException:ADMC0053E:启用SOAP连接器安全性时,系统无法创建连接到端口8880上的主机192.9.200.253的SOAP连接器.atcom.ibm.websphere.management.AdminClientFacto

web容器中用jmx监控hibernate sessionFactory

以tomcat为例,加入一个listner监听容器启动:   <listener> <description>ServletContextListener</description> <listener-class>com.my.listener.StartupListener</listener-class> </listener>  Listener中的内容: @Override public void contextInitia