`
eddysheng
  • 浏览: 111721 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

通过weblogic 9 mbean监控其应用状态

阅读更多

通过weblogic开放的jmx mbean可以对部署其上的应用\jms\datasource。。。很多内容进行查看和管理,下面这个demo只是借鉴了一下weblogic提供的例子作一个简单的测试。如果想通过这个实现监控,可以为这段代码加上定时设置(通过TimerTask或者quartz)。

下面这段代码主要查看应用的状态以及jms相关情况(需要依赖weblogic.jar)。

 

import java.io.IOException;
import java.net.MalformedURLException;
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;

public class PrintServerState {

	private static MBeanServerConnection connection;
	private static JMXConnector connector;
	private static final ObjectName service;

	// Initializing the object name for DomainRuntimeServiceMBean
	// so it can be used throughout the class.
	static {
		try {
			service = new ObjectName(
					"com.bea:Name=DomainRuntimeService,Type=weblogic.management.mbeanservers.domainruntime.DomainRuntimeServiceMBean");
		} catch (MalformedObjectNameException e) {
			throw new AssertionError(e.getMessage());
		}
	}

	/*
	* Initialize connection to the Domain Runtime MBean Server
	*/
	public static 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 h = new Hashtable();
		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();

	}

	/* 
	* Print an array of ServerRuntimeMBeans.
	* This MBean is the root of the runtime MBean hierarchy, and
	* each server in the domain hosts its own instance.
	*/
	public static ObjectName[] getServerRuntimes() throws Exception {
		return (ObjectName[]) connection.getAttribute(service, "ServerRuntimes");
	}

	/* 
	* Iterate through ServerRuntimeMBeans and get the name and state
	*/
	public void printNameAndState() throws Exception {
		ObjectName[] serverRT = getServerRuntimes();
		System.out.println("got domain runtimes");
		int length = (int) serverRT.length;
		for (int i = 0; i < length; i++) {
			String name = (String) connection.getAttribute(serverRT[i], "Name");
			String state = (String) connection.getAttribute(serverRT[i], "Type");
			System.out.println("Server name: " + name + ".   Server state: " + state);
		}
	}

	public void printAppNameAndState() throws Exception {
		ObjectName[] serverRT = getServerRuntimes();
		for (int k = 0; k < serverRT.length; k++) {
			ObjectName[] appRT = (ObjectName[]) connection.getAttribute(serverRT[k], "ApplicationRuntimes");
			int length = appRT.length;

			for (int i = 0; i < length; i++) {
				String appName = (String) connection.getAttribute(appRT[i], "Name");

				ObjectName[] compRT = (ObjectName[]) connection.getAttribute(appRT[i], "ComponentRuntimes");
				for (int j = 0; j < compRT.length; j++) {
					int appState = ((Integer) connection.getAttribute(compRT[j], "DeploymentState")).intValue();
					String type = (String) connection.getAttribute(compRT[j], "Type");
					System.out.println(k + "|" + j + "|Server name: " + appName + ".    Server type: " + type
							+ "   Server state: " + appState);

				}

			}
		}

	}

	public void printJMS() throws Exception {
		ObjectName[] serverRT = getServerRuntimes();

		ObjectName JMSRT = (ObjectName) connection.getAttribute(serverRT[0], "JMSRuntime");

		ObjectName[] JMSServers = (ObjectName[]) connection.getAttribute(JMSRT, "JMSServers");
		int JMSServer_Length = (int) JMSServers.length;

		for (int x = 0; x < JMSServer_Length; x++) {
			String JMSServer_name = (String) connection.getAttribute(JMSServers[x], "Name");

			ObjectName[] JMSDests = (ObjectName[]) connection.getAttribute(JMSServers[x], "Destinations");
			int JMSdest_Length = (int) JMSDests.length;

			for (int y = 0; y < JMSdest_Length; y++) {
				String queue_name = (String) connection.getAttribute(JMSDests[y], "Name");

				long pendingmcount = (Long) connection.getAttribute(JMSDests[y], "MessagesPendingCount");
				long currentcount = (Long) connection.getAttribute(JMSDests[y], "MessagesCurrentCount");

				System.out.println(y + "|jms server name: " + JMSServer_name + "  jms name: " + queue_name
						+ "   pending: " + pendingmcount + "   current: " + currentcount);

			} //for y

		} //for  x

	}

	public static void main(String[] args) throws Exception {
		String hostname = "127.0.0.1";
		String portString = "8001";
		String username = "weblogic";
		String password = "weblogic";

		PrintServerState s = new PrintServerState();
		initConnection(hostname, portString, username, password);
		s.printNameAndState();
		s.printAppNameAndState();
		s.printJMS();
		connector.close();
	}
}
 

更详细的内容,可以查看weblogic相关文档http://download.oracle.com/docs/cd/E13222_01/wls/docs90/wlsmbeanref/core/index.html

 

0
0
分享到:
评论

相关推荐

    jmx监控weblogic,tomcat,websphere源码

    首先,WebLogic是由Oracle公司提供的一个全面的企业级Java应用服务器,它支持JMX来暴露管理接口,允许管理员远程监控服务器的状态、配置以及执行管理操作。通过JMX,你可以获取到WebLogic服务器的运行时信息,如JVM...

    weblogic的MX程序设计

    通过创建和注册MBean,开发者能够以编程的方式访问WebLogic的各种管理特性,从而实现对服务器的动态配置、性能监控等功能。此外,还详细讲解了如何使用JMX监控WebLogic Server的关键指标,为运维人员提供了强大的...

    WebLogic MBean instrumentation utility-开源

    WebLogic MBean Instrumentation Utility,通常被称为MBeanStat,是一个专为监控WebLogic服务器性能而设计的开源工具。MBean(Managed Bean)是Java管理扩展(JMX,Java Management Extensions)的一部分,允许...

    WebLogic Server 管理任务自动化

    WebLogic Server 管理任务自动化是通过使用WebLogic脚本工具(WLST)来实现的,这使得在Linux环境下对WebLogic Server...通过编写和执行脚本,可以实现复杂的域配置、应用部署和监控任务,大大减轻了管理员的工作负担。

    WebLogic全部性能参数中文解释

    以上性能参数为WebLogic服务器提供了全面的性能监控和支持,通过对这些参数的理解和调整,可以显著提升WebLogic服务器的性能表现,确保系统的稳定性和高效运行。希望这些信息能够对正在进行WebLogic性能调试的读者...

    weblogic 监测项目

    【标题】"WebLogic 监测项目"涉及的是在企业级Java应用服务器WebLogic上的性能监控与管理。WebLogic Server是Oracle公司提供的一个强大的中间件平台,用于部署和管理Java EE应用程序。对于WebLogic的监测,是确保...

    Nagios Check Weblogic:监控 Weblogic 的 Nagios 插件-开源

    通过MBean Server,用户可以查询和操作MBeans,获取WebLogic服务器的实时状态。 在开源社区的支持下,Nagios Check Weblogic保持持续更新和优化,以适应WebLogic的新版本和用户的新需求。使用者可以通过参与社区,...

    Weblogic%20Server优化文档

    利用WebLogic提供的监控工具和API,可以实时获取服务器的状态信息,确保系统健康运行。 综上所述,WebLogic Server的优化涉及多个方面,包括但不限于启动参数设置、配置文件调整、连接池管理、集群部署以及性能监控...

    基于JMX的Java虚拟机监视系统.pdf

    总之,基于JMX的Java虚拟机监视系统通过MBean技术实现了对JVM的深度监控,有助于优化应用程序性能,提高系统的稳定性和可靠性。通过实时监测关键指标,可以提前发现并解决可能导致系统不稳定的问题,从而确保Java...

    JMX in action.pdf

    1. **性能监控**:通过 JMX,可以实时监控应用程序的性能指标,如 CPU 使用率、内存使用情况等。 2. **动态配置**:可以在不重启应用程序的情况下修改应用程序的配置参数。 3. **故障诊断**:当应用程序出现故障时,...

    JMX入门教程 程序管理功能的框架

    JMX提供了一种标准的方式来暴露应用程序的内部状态和操作,使得管理员可以通过管理控制台或者远程接口进行管理。 **一、JMX的核心概念** 1. **MBean(Managed Bean)**: MBean是JMX中的核心元素,它是具有管理功能...

    WeblogicJMX:Weblogic JMX 实用程序

    目前实时给出一些监控统计,后续会更新更多功能特征目前可以使用以下功能: JVM 监控统计服务器线程池运行时统计服务器统计JDBC 数据源统计信息应用程序部署列表和状态世贸中心现状概念WeblogicJMX 使用 Java JMX ...

    中间件性能监测技术介绍

    中间件性能监测技术是确保分布式应用系统稳定运行的关键环节,通过对中间件的实时监控,可以及时发现并解决潜在问题,提高整体系统的可用性和效率。本文将详细介绍如何对WebLogic、WebSphere等主流中间件进行性能...

    java management extension

    在实际应用中,JMX可以用来监控内存使用情况、线程状态、日志记录、数据库连接池、网络连接等。通过JMX,开发者可以轻松地构建可扩展且易于维护的管理解决方案,从而提高系统的稳定性和性能。 例如,`O'Reilly - ...

    Tomcat学习

    通过JMX管理工具(如jconsole)监控Tomcat的内存、线程、MBean等状态。 总结,Tomcat学习涵盖了许多方面,包括其架构、配置、性能优化、安全管理和集成策略。深入理解这些知识点对于Java Web开发者来说非常重要,...

    MonitorJMX-开源

    MonitorJMX是一个开源项目,专为监控WebLogic Server或其集群设计的小型Web应用程序。它通过JMX(Java Management Extensions)接口提供对服务器状态的详细洞察,帮助管理员实时了解WebLogic服务的运行状况。JMX是一...

    resin-4.0-admin.pdf

    - REST API提供了更加灵活的方式来管理和监控服务器的状态,对于需要集成到现有管理系统的用户来说非常有用。 综上所述,Resin 4.0 是一个功能强大且易于使用的应用服务器,不仅提供了丰富的功能,还具有高度可定制...

    missioncontrol

    通过其三大核心工具——管理控制台、JRockit Runtime Analyzer 和内存泄漏检测程序——可以有效地提高 Java 应用程序的稳定性和性能,减少故障时间,提高开发效率。无论是对于开发人员还是运维工程师来说,JRockit ...

    利用Java内置的API开发JMX功能

    Java Management Extensions (JMX) 是Java平台上的一个标准规范,用于管理和监控应用程序、操作系统和网络设备。它提供了一种统一的方式来管理和控制Java应用程序,使得开发者能够轻松地在应用程序中集成管理和监控...

    SpringJMX.pdf

    - **系统监控**:实时监控应用程序的内存使用情况、线程状态等。 - **配置管理**:动态调整应用程序配置,无需重启服务。 - **故障诊断**:收集异常信息和堆栈跟踪,帮助快速定位问题。 #### 九、总结 通过本次讨论...

Global site tag (gtag.js) - Google Analytics