Search code examples
javaspringspring-bootspring-boot-actuatorspring-boot-admin

Cache actuator endpoint not showing


I am implementing actuators and Spring Boot Admin to my application. When I send request to /actuators i get all actuator points except caches.

I have tried to turn ON/OFF cache health monitoring in application.yaml but didn't work.

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

Solution

  • The problem was spring boot version, my project was on 2.0.6. After migration to latest version everything is there.