Package org.lightfish.business.servermonitoring.entity

Examples of org.lightfish.business.servermonitoring.entity.Application


    }

    @Override
    public DataPoint<Application> collect() throws Exception {
        String[] components = getStringArray(APPLICATIONS + "/" + applicationName, "childResources");
        Application app = new Application(applicationName, Arrays.asList(components));
        return new DataPoint<>(getApplicationName(), app);
    }
View Full Code Here


            rolledBackTX += current.getRolledBackTX();
            queuedConnections += current.getQueuedConnections();
            activeSessions += current.getActiveSessions();
            expiredSessions += current.getExpiredSessions();
            for (Application application : current.getApps()) {
                Application combinedApp = new Application(application.getApplicationName(), application.getComponents());
                applications.put(application.getApplicationName(), combinedApp);
            }

            for (ConnectionPool currentPool : current.getPools()) {
                ConnectionPool combinedPool = pools.get(currentPool.getJndiName());
View Full Code Here

TOP

Related Classes of org.lightfish.business.servermonitoring.entity.Application

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.