advancedSpring Boot Actuator
How does /actuator/health decide whether to report UP or DOWN?
It aggregates every HealthIndicator bean Spring Boot auto-detects (database, disk space, Redis, and any custom ones you write) — if even one indicator reports DOWN, the whole aggregate endpoint reports DOWN, which is exactly what a Kubernetes readiness probe checks before routing traffic.
This is a Pro chapter
Sign in, then upgrade to Pro or Power to unlock this and the full Spring Ecosystem Mastery library.
How does /actuator/health decide whether to report UP or DOWN?