未显示高速缓存执行器端点

问题描述 投票:0回答:1

我正在为我的应用程序实现执行器和Spring Boot Admin。当我向/ actuators发送请求时,我会获得除缓存之外的所有执行器点。

我曾尝试在application.yaml中打开/关闭缓存运行状况监视,但没有用。

cache: 
     hazelcast:
       instance_name: hazelcast-cache
       health:
         monitoring:
           level: OFF

application.yaml:

    web:
      exposure:
        include: "*"

build.gradle:

compile group: 'de.codecentric', name: 'spring-boot-admin-starter-client', version: '2.0.6'```
java spring spring-boot spring-boot-actuator spring-boot-admin
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.