Spring Boot - Actuator
Given this custom health indicator code, what will the health endpoint show?
public class MyHealth implements HealthIndicator {
@Override
public Health health() {
return Health.up().withDetail("db", "reachable").build();
}
}