Package com.netflix.servo.monitor

Examples of com.netflix.servo.monitor.CompositeMonitor


    private String getMonitoringData(String metricName) {
        Collection monitors = DefaultMonitorRegistry.getInstance()
                .getRegisteredMonitors();
        for (Object m : monitors) {
            if (CompositeMonitor.class.isInstance(m)) {
                CompositeMonitor monitor = (CompositeMonitor) m;
                List<Monitor> monitorsList = monitor.getMonitors();
                for (Monitor m1 : monitorsList) {
                    if (metricName.equalsIgnoreCase(m1.getConfig().getName())) {

                        return m1.getValue() + "";
                    }
View Full Code Here

TOP

Related Classes of com.netflix.servo.monitor.CompositeMonitor

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.