SpringBoot Admin OFFLINE

 

 

 

 

java.util.concurrent.TimeoutException

message Did not observe any item or terminal signal within 10000ms in 'map' (and no fallback has been configured)

添加下面引用

<!--健康检查-->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

 


 

 

http://192.168.0.66:22586/actuator/health  访问超时

Actuator Health 超时导致 Spring Boot Admin 反复 Offline / Up 的临时解决方案

 

 

#开放端点用于SpringBoot Admin的监控
management:
  endpoints:
    web:
      exposure:
        include: '*'
  endpoint:
    health:
      show-details: always
  health:
    redis:
      enabled: false

 

posted @ 2021-10-09 12:33  VipSoft  阅读(2677)  评论(0编辑  收藏  举报