sentinel-控制台
2019-08-07 本文已影响0人
Audience0
控制台: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();
}
}