Sentinel无法检测到服务,一片空白
·
sentinel(哨兵)
中文文档: https://github.com/alibaba/Sentinel/wiki/%E4%BB%8B%E7%BB%8D
Sentinel控制台下载及文档
中文文档:https://github.com/alibaba/Sentinel/wiki/%E6%8E%A7%E5%88%B6%E5%8F%B0
解决方案:
server:
port: 8401
spring:
application:
name: alibaba-sentinel-service
cloud:
nacos:
discovery:
server-addr: localhost:3333 #Nacos服务注册中心地址
sentinel:
transport:
dashboard: localhost:8085 #配置Sentinel dashboard地址
port: 8719
clientIp: localhost:8401
management:
endpoint:
sentinel:
enabled: true
endpoints:
web:
exposure:
include: '*'
feign:
sentinel:
enabled: true # 激活Sentinel对Feign的支持
Sentinel客户端启动命令,不使用8080默认端口,避免占用
java -Dserver.port=8086 -Dcsp.sentinel.dashboard.server=localhost:8086 -jar sentinel-dashboard-1.8.1.jar
结果:
更多推荐
已为社区贡献1条内容
所有评论(0)