Package com.netflix.servo.monitor

Examples of com.netflix.servo.monitor.StatsTimer


            filterStart.stop();
        }
    }

    public static StatsTimer newStatsTimer(String monitorName, long collectionDurationInMillis) {
        return new StatsTimer(
                MonitorConfig.builder(monitorName).build(),
                new StatsConfig.Builder()
                    .withComputeFrequencyMillis(collectionDurationInMillis)
                    .withPublishMean(true)
                    .withPublishMin(true)
View Full Code Here

TOP

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

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.