Experts,
In my spring boot 2.5.5 project with spring cloud version2020.0.4 and have configured Hystrix dashboard with the following dependency
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
<version>2.2.9.RELEASE</version>
</dependency>
I have configured the fallbacks in the api gateway something like this
filters:
- name: CircuitBreaker
args:
name: My-SERVICE
fallbackuri: forward:/myServiceFallBack
API gateway is running on port: 9191
So far it's good. When I access the API's via API Gateway I can see the CircuirtBreaker kicking in and the request getting forwarded to the 'fallback URI' when needed.
Now when I access
http://localhost:9191/actuator/hystrix.stream
I can see pings listed there as well
I call the end-user API endpoints via the API Gateway.
However, when I try to see the Hystrix Dashboard it's just loading. I don't see any issues in the browser console or network tab.
Any idea what is gone wrong here.