Package com.netflix.servo.publish.graphite

Examples of com.netflix.servo.publish.graphite.GraphiteMetricObserver


    }

    private static MetricObserver createGraphiteObserver() {
        final String prefix = Config.getGraphiteObserverPrefix();
        final String addr = Config.getGraphiteObserverAddress();
        return rateTransform(async("graphite", new GraphiteMetricObserver(prefix, addr)));
    }
View Full Code Here


    private MetricObserver createGraphiteObserver() {
        final String prefix = config.getString("metrics.prefix", "not-found-in-flux-configuration");
        final String addr = config.getString("graphite.server.address", "not-found-in-flux-configuration");
       
        return rateTransform(async("graphite", new GraphiteMetricObserver(prefix, addr)));
    }
View Full Code Here

TOP

Related Classes of com.netflix.servo.publish.graphite.GraphiteMetricObserver

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.