标签:null 相关信息 artifact 查看 ESS client log 信息 效果
1:下载sentinel-Dashboard的源码或者jar:地址:https://github.com/alibaba/Sentinel/releases
2:部署Dashboard
3:spring boot工程添加如下配置:
spring: cloud: sentinel: transport: # 指定sentinel控制台地址 dashboard: 10.100.10.84:9016 # 指定和控制台通信的IP,若不配置,会自动选择一个IP注册 client-ip: ${eureka.instance.ip-address} # 指定和控制台通信的端口哦,默认值8719 # 若不配置,会自动扫猫从8719开始扫猫,依次+1,知道值找到未被占用的端口 port: ${thc.sentinel.port} # 心跳发送周期,默认值null # 但在SimpleHttpHeartbeatSender会用默认值10秒 heartbeat-interval-ms: 10000
4:pom文件引入jar
<!-- sentinel --> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId> <version>2.1.1.RELEASE</version> </dependency>
5:访问一个接口去部署Dashboard的地址查看相关信息吧!
6:效果图如下:
7:附上基础页面使用教程
https://www.cnblogs.com/fx-blog/p/11720220.html
标签:null 相关信息 artifact 查看 ESS client log 信息 效果
原文地址:https://www.cnblogs.com/zhuxiansheng/p/12118548.html