Spring-cloud-netflix: sr7 dashboard show WARN :If it should be allowed add it to hystrix.dashboard.proxyStreamAllowList.

Created on 17 Aug 2020  路  4Comments  路  Source: spring-cloud/spring-cloud-netflix

2020-08-17 08:51:46.351 WARN 11636 --- [io-19000-exec-8] ashboardConfiguration$ProxyStreamServlet : Origin parameter: http://localhost:18000/actuator/hystrix.stream is not in the allowed list of proxy host names. If it should be allowed add it to hystrix.dashboard.proxyStreamAllowList.

thank you !

closable

Most helpful comment

I also encountered this warning
image

In hystrix-dashboard project add this to application.yml
image

In hystrix-service add this to application.yml
image

I found this question on stackoverflow: https://stackoverflow.com/questions/59738969/unable-to-connect-to-command-metric-stream-in-hystrix-dashboard-issue

Related document reference: https://docs.spring.io/spring-cloud-netflix/docs/2.2.x-SNAPSHOT/reference/html/
image

All 4 comments

What's the issue?

hello @spencergibb

run url:
http://localhost:19000/hystrix/monitor?stream=http%3A%2F%2Flocalhost%3A18000%2Factuator%2Fhystrix.stream

console show info:

2020-08-17 08:51:46.351 WARN 11636 --- [io-19000-exec-8] ashboardConfiguration$ProxyStreamServlet : Origin parameter: http://localhost:18000/actuator/hystrix.stream is not in the allowed list of proxy host names. If it should be allowed add it to hystrix.dashboard.proxyStreamAllowList.

I also encountered this warning
image

In hystrix-dashboard project add this to application.yml
image

In hystrix-service add this to application.yml
image

I found this question on stackoverflow: https://stackoverflow.com/questions/59738969/unable-to-connect-to-command-metric-stream-in-hystrix-dashboard-issue

Related document reference: https://docs.spring.io/spring-cloud-netflix/docs/2.2.x-SNAPSHOT/reference/html/
image

As suggested in the comment above and in the docs, it is something you need to configure. The warning just informs about that.

Was this page helpful?
0 / 5 - 0 ratings