`

监控weblogic代码

 
阅读更多
代码从别出拷来,运行了一下。可以正常运行。以后可以通过这部分代码来扩展监控。


/**
 * 
 */
package com.monitor.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;

/**
 * @author Administrator
 *
 */
public class MonitorWeblogic {
	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"; 
        String username = "weblogic"; 
        String password = "weblogic"; 
        MonitorWeblogic weblogic =  new MonitorWeblogic();
        weblogic.initConnection(hostname, portString, username, password);
//        weblogic.printNameAndState(weblogic.getServerRuntimes());
//        weblogic.getServletData();
        weblogic.printAppNameAndState();
	}
    /* 
     * 实例化与 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(); 
    } 
    
    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  取得应用相关信息比如jdbc
    */ 
   public void getServletData() throws Exception { 
       print("===================ServletData信息====================", ""); 
       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")); 
                       } 
                   } 
               } 
           } 
       } 
   } 
   
   /**
    * 取得应用状态
    * @throws Exception
    */
   public void printAppNameAndState() throws Exception { 
       print("===================AppNameAndState====================", ""); 
       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 print(String prefix, String content) { 
        System.out.println(prefix + ": " + content); 
    }
    
}

分享到:
评论
1 楼 chenglnb 2012-08-21  
非常感谢!

相关推荐

    Jprofile资源监控WebLogic部署项目占用资源的大小步骤---操作步骤,图片

    以下是使用JProfiler监控WebLogic部署项目资源占用的详细步骤: 1、**下载与安装JProfiler**:首先,你需要从官方网站获取JProfiler的最新版本并完成安装。确保你的Java环境已经配置好,因为JProfiler依赖于Java...

    pinpoint安装部署、监控tomcat、weblogic、webSphere手册

    6. **监控 Weblogic 和 WebSphere**:对于 Weblogic 和 WebSphere 等其他应用服务器,安装 Agent 的过程略有不同,但基本原理相似,主要是通过相应的启动脚本或配置文件加入 Agent 参数。 #### 五、总结 通过以上...

    Weblogic监控jndi泄露连接的方法.doc

    监控 WebLogic 日志文件,如 `/app/weblogic/user_projects/domains/[domain_name]/servers/[server_name]/logs/[server_name].log`,在日志中寻找类似异常信息,这些信息将指引我们找到引发泄露的代码段。...

    weblogic监控脚本

    这篇博客文章“Weblogic监控脚本”可能涉及了如何利用脚本来自动化监控WebLogic服务器的关键指标,如内存使用、CPU利用率、JVM性能等。 在WebLogic中,监控可以通过多种方式实现,包括使用内置的管理控制台、WLST...

    weblogic生产模式下更新步骤

    1. **备份现有环境**:在进行任何更新操作之前,首先需要对当前的WebLogic环境进行全面备份,包括但不限于应用程序代码、配置文件、数据源定义等。这一步骤至关重要,一旦更新过程中出现问题,可以迅速恢复到更新前...

    weblogic下开发web项目时修改java文件不用重启的绿色方法,不用修改weblogic的配置文件、不用jar

    IBM的WebLogic Development Tools插件也可以帮助实现热部署,通过监控源代码变更并自动部署到WebLogic。 7. **Maven插件**: 使用maven-war-plugin的war overlay机制,可以在不重启服务器的情况下更新WAR文件。 ...

    Weblogic反序列化远程代码执行漏洞(CVE-2018-2893)

    Weblogic反序列化远程代码执行漏洞(CVE-2018-2893)是Oracle WebLogic Server中一个严重安全问题,它涉及到组件T3协议处理中的对象反序列化过程。该漏洞允许攻击者通过构造恶意的T3请求,远程执行任意代码,从而...

    JRockit远程监控Linux环境下WebLogic方案

    JRockit远程监控WebLogic的工作流程包括以下几个步骤: 1. **安装JRockit**:首先,在Linux服务器上备份当前正在运行的生产环境程序,然后将JRockit的安装文件上传到服务器,并赋予执行权限。执行安装程序,可以...

    weblogic API FOR [weblogic.jar]

    在WebLogic API中,`weblogic.jar`是一个核心库,包含了大量用于操作和管理WebLogic Server的类和接口,这些API对于开发、维护以及监控WebLogic环境至关重要。 一、WebLogic API概述 WebLogic API提供了对服务器...

    weblogic 10 ejb3 入门教程 + 调试通过的源代码

    - **管理控制台**:WebLogic 提供了一个基于 Web 的管理控制台,用于管理和监控部署在服务器上的应用程序。 - **部署应用**:学习如何将打包好的 EJB 应用程序部署到 WebLogic Server 上,包括使用命令行工具或者...

    j2ee 基于WebLogic课程代码

    6. **WebLogic Server管理**: WebLogic Server提供了WebLogic Console,这是一个基于Web的管理界面,用于配置、监控和管理部署在服务器上的应用。通过这个界面,你可以部署、启动、停止、更新J2EE应用,调整服务器...

    shell方式重启weblogic

    WLST是一个基于Python的命令行工具,用于配置、管理和监控WebLogic Server;Admin Console是WebLogic提供的图形界面,用户可以通过浏览器访问进行管理操作;Node Manager则用于远程启动和停止WebLogic Server实例。 ...

    weblogic12.1.3补丁包

    这个漏洞允许远程攻击者未经身份验证就执行任意代码,只需通过WebLogic服务器的T3协议发送特制的请求。由于这个漏洞的存在,攻击者可以完全控制受影响的系统,执行任意操作,如数据窃取、恶意软件传播或系统破坏。...

    elcipse的weblogic插件

    6. **性能监控**:监控WebLogic Server的CPU、内存、线程等性能指标,及时发现并优化性能问题。 7. **代码提示与智能感知**:插件提供了针对WebLogic特定API的代码提示和智能感知功能,提升开发效率。 8. **版本...

    Wls_weblogic管理监控.doc

    - 连接泄露诊断:启用WebLogic数据源的Connection Leak Profiling功能,定位并修复泄露代码。 5. **系统日志分析**: - 通过WebLogic服务器和应用日志,排查错误和性能问题。例如,监控`IllegalStateException`等...

    weblogic部署项目视频

    本教程将通过“weblogic部署项目视频”深入探讨如何利用Lomboz工具将生成的代码部署到WebLogic上,帮助开发者掌握这一关键技能。 首先,了解Lomboz:Lomboz是一个开源的Eclipse插件,专门用于Java EE项目的开发和...

    Weblogic内存大小配置

    对于使用JRockit JVM的Weblogic环境,还应考虑JRockit特有的内存管理和性能监控工具,如Mission Control,它提供了深入的诊断能力和实时监控功能,有助于更准确地定位和解决内存问题。 #### 参考文献与进一步阅读 ...

    weblogic plusion2.0 Eclipse插件 weblogic9.0

    WebLogic Server是一款广泛使用的Java EE应用服务器,它提供了丰富的功能,如部署、管理、监控企业级Java应用程序。而Plusion2.0插件则是为了简化这些操作,让开发人员能够在熟悉的Eclipse环境中进行。 WebLogic ...

    weblogic调用tuxedo示例

    在WebLogic上编写客户端代码或通过Web服务接口调用适配器实现的Tuxedo服务。测试调用的正确性和性能。 在压缩包文件"calltuxedo"中,可能包含了上述过程中的相关配置文件、Java源代码、部署描述符(如web.xml、ejb...

    Wls-weblogic管理监控.docx

    - 如果连接池占满且WebLogic线程数量很少,可能存在未正确关闭的数据库连接,需检查应用代码,确保在finally块中关闭连接。 - 使用WebLogic控制台的诊断工具,如配置数据源的"Profile Connection Leak"来检测连接...

Global site tag (gtag.js) - Google Analytics