缓存执行器端点未显示

Cache actuator endpoint not showing

我正在为我的应用程序实施执行器和 Spring 引导管理。当我向 /actuators 发送请求时,我得到了除缓存之外的所有执行器点。

我曾尝试在 application.yaml 中启用 ON/OFF 缓存健康监控,但没有成功。

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'```

问题是 spring 引导版本,我的项目是 2.0.6。迁移到最新版本后一切都在那里。