Spring Boot - Actuator
Given this custom health indicator code, what will the health endpoint show?
public class DiskSpaceHealthIndicator implements HealthIndicator { public Health health() { long freeSpace = 500L; if (freeSpace > 1000) { return Health.up().build(); } else { return Health.down().withDetail("freeSpace", freeSpace).build(); } } }