Package com.sun.enterprise.admin.monitor.stats

Examples of com.sun.enterprise.admin.monitor.stats.WebModuleStats


    public WebModuleStats getWebModuleStats() {
        if(!isHADBInstalled()) {
            return super.getWebModuleStats();
        }
        WebModuleStats stats = null;
        try {
            stats =
                (WebModuleStats) (Class.forName(EE_WEB_MODULE_STATS_IMPL)).newInstance();
        } catch (Exception ex) {
        }
View Full Code Here


                     */
                    String j2eeApp = webModule.getJ2EEApplication();
                    if ("null".equalsIgnoreCase(j2eeApp)) {
                        j2eeApp = null;
                    }
                    WebModuleStats stats =
                        monitoringRegistry.getWebModuleStats(
                            j2eeApp,
                            webModule.getModuleName(),
                            webModule.getPath(),
                            nextHost.getName());
                    if (stats != null) {
                        try {
                            stats.reset();
                        } catch (Throwable th) {
                            _logger.log(Level.SEVERE,
                                        "Error resetting WebModuleStats", th);
                        }               
                    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.monitor.stats.WebModuleStats

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.