SpringBoot版本:2.3.3.RELEASE springcloud版本:Hoxton.SR8
控制台报错:
Origin parameter: http://localhost:8001/actuator/hystrix.stream is not in the allowed list of proxy host names. If it should be allowed add it to hystrix.dashboard.proxyStreamAllowList.
监控页面问题:
解决办法:在dashboard的项目的yml配置文件中进行配置,添加所有进入到允许列表,然后重启项目,即可解决
hystrix:
dashboard:
proxy-stream-allow-list: "*"