All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nutz.boot.starter.hystrix.web.HystrixMetricsStreamServletFace Maven / Gradle / Ivy

There is a newer version: 2.5.1.v20220215
Show newest version
package org.nutz.boot.starter.hystrix.web;

import javax.servlet.Servlet;

import org.nutz.boot.starter.WebServletFace;
import org.nutz.ioc.loader.annotation.IocBean;

import com.netflix.hystrix.contrib.metrics.eventstream.HystrixMetricsStreamServlet;

@IocBean
public class HystrixMetricsStreamServletFace implements WebServletFace {

    public String getName() {
        return "HystrixMetricsStreamServlet";
    }

    public String getPathSpec() {
        return "/hystrix/hystrix.stream";
    }

    public Servlet getServlet() {
        return new HystrixMetricsStreamServlet();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy