美文网首页
sentinel-控制台

sentinel-控制台

作者: Audience0 | 来源:发表于2019-08-07 15:20 被阅读0次

控制台:sentinel-dashboard
页面如下所示,当前无应用连接


image.png

客户端接入:
1.客户端引入依赖

 <!--客户端需要引入 Transport 模块来与 Sentinel 控制台进行通信-->
        <dependency>
            <groupId>com.alibaba.csp</groupId>
            <artifactId>sentinel-transport-simple-http</artifactId>
            <version>1.6.2</version>
        </dependency>

2.客户端与控制台通信入口

public class Env {
    public static final Sph sph = new CtSph();

    public Env() {
    }
    static {
        //与控制台交互,发送心跳
        InitExecutor.doInit();
    }
}

相关文章

网友评论

      本文标题:sentinel-控制台

      本文链接:https://www.haomeiwen.com/subject/pomwdctx.html