Currently HTTP status 200 is returned for Status.DOWN. In the [Spring Boot 1.1 release notes](https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.1-Release-Notes#healthindicators) it is stated that: > By default Status.DOWN will create a 503; Status.UP will return 200. Step by step: - Create a simple web app configured with the actuator. - Add a "down" health check: ``` @Component public class DownHealthIndicator extends AbstractHealthIndicator { @Override protected void doHealthCheck(Health.Builder builder) throws Exception { builder.down(); } } ``` - Check the health status: ``` $ curl -i localhost:8080/health HTTP/1.1 200 OK [...] {"status":"DOWN"} ``` Spring Boot version: 1.1.4.RELEASE