@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD})
@Documented
@Conditional(value=org.springframework.boot.actuate.autoconfigure.health.OnEnabledHealthIndicatorCondition.class)
public @interface ConditionalOnEnabledHealthIndicator
@Conditional that checks whether a default health indicator is
enabled. Matches if the value of the management.health.<name>.enabled property
is true. Otherwise, matches if the value of the
management.health.defaults.enabled property is true or if it is not
configured.| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
value
The name of the health indicator.
|