本地连接阿里云上的sentinel实时监控没有数据,阿里云上还报这个错:
Failed to fetch metric from
<http://192.168.1.9:8719/metric?startTime=1644049729000&endTime=16440497
我本机IP就是192.168.1.9
加上spring.cloud.sentinel.transport.clientIp就好了
server:
port: 8899
spring:
application:
name: sentinel
cloud:
nacos:
server-addr: 192.168.1.9:8848 #告诉config server地址
sentinel:
enabled: true #开启sentinel保护,默认开启
transport:
clientIp: 121.40.236.249 #指定和控制台通信的IP,若不配置,会自动选择一个IP注册
dashboard: 121.40.236.249:8082 #指定sentinel dashboard web 地址
port: 8719 #指定sentinel组件与sentinel dashboard组件通信地址8719