itmuch / spring-cloud-docker-microservice-book-code

《Spring Cloud与Docker微服务架构实战》配套代码。讨论QQ群:731548893
http://www.itmuch.com
Apache License 2.0
1.17k stars 861 forks source link

Actuator info not Hystrix info #12

Closed HeCG95 closed 4 years ago

HeCG95 commented 4 years ago

hello, when i tested on chapter7 about hystrix: i accessed http://localhost:8010/health, the only info as follows:

{"description":"Composite Discovery Client","status":"UP"}

as if there was not Hystrix info. Could you give me some advice? i run microservice-consumer-movie-ribbon-hystrix It seemd like HystrixHealthIndicator didn't work.

xn-9527 commented 4 years ago

You need to add config to avoid security forbbiden for displaying details.It was mentioned in former chapter.

management:
  security:
    enabled: false