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 OFFLINE

SpringBoot Admin OFFLINE

 

 

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

 

相关文章:

  • 2021-04-07
  • 2021-05-01
  • 2021-11-25
  • 2021-06-15
  • 2022-03-06
  • 2021-10-04
  • 2022-02-18
猜你喜欢
  • 2021-08-10
  • 2021-09-17
  • 2021-10-25
  • 2022-01-26
  • 2022-12-23
  • 2021-06-22
  • 2021-06-02
相关资源
相似解决方案