Package com.netflix.hystrix.contrib.metrics.eventstream

Examples of com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet


    }

    protected void configureHystrix(Environment environment) {
        HystrixPlugins.getInstance().registerConcurrencyStrategy(new ManagedConcurrencyStrategy(environment));
        environment.servlets()
                .addServlet("hystrix-metrics", new HystrixMetricsStreamServlet())
                .addMapping("/tenacity/metrics.stream");
    }
View Full Code Here

TOP

Related Classes of com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet

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.