Package com.sun.enterprise.admin.pluggable

Examples of com.sun.enterprise.admin.pluggable.MonitoringManager


    public MonitoringManager getMonitoringFeature() {
        return AdminService.getMonitoringFeature();
    }

    private void initializeModuleMonitoring() {
        MonitoringManager mm = getMonitoringFeature();
        mm.registerAllStats(rootStatsHolder);
    }
View Full Code Here


    public void registerAllStats(StatsHolder rootStatsHolder) {       
        store.setRootStatsHolder(rootStatsHolder);
        String[] moduleNames = store.getAllModuleNames();
        for(int i = 0; i < moduleNames.length; i++){
            String moduleName = moduleNames[i];
            MonitoringManager manager = store.getMonitoringManager(moduleName);
            manager.registerAllStats(rootStatsHolder);
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.pluggable.MonitoringManager

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.