Reputation: 125
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
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