When I access the /health endpoint from my Spring Boot application (1.2.4.RELEASE) it is returning a status of DOWN:
/health
DOWN
{ status: \"DO
I had the same issue with Springboot 2.1.0 where /actuator/health returned { status: "DOWN" } even though application was up. Adding management.health.defaults.enabled=false to properties file fixed the issue.
{ status: "DOWN" }
management.health.defaults.enabled=false