Filip Culig
Filip Culig

Reputation: 125

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

Upvotes: 0

Views: 1068

Answers (1)

Filip Culig
Filip Culig

Reputation: 125

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

Upvotes: 1

Related Questions