Examples of MonitoringManager


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

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

    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
Copyright © 2018 www.massapi.com. 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.