Package io.helidon.microprofile.health
Interface HealthCheckProvider
-
public interface HealthCheckProviderA provider ofHealthCheckinstances.Instances of
HealthCheckProviderare discovered by theHealthCdiExtensionusing theHelidonServiceLoaderand all of theHealthCheckinstances are added to the health endpoint.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default List<org.eclipse.microprofile.health.HealthCheck>livenessChecks()Return the provided livenessHealthChecks.default List<org.eclipse.microprofile.health.HealthCheck>readinessChecks()Return the provided readinessHealthChecks.
-
-
-
Method Detail
-
readinessChecks
default List<org.eclipse.microprofile.health.HealthCheck> readinessChecks()
Return the provided readinessHealthChecks.- Returns:
- the
HealthChecks
-
livenessChecks
default List<org.eclipse.microprofile.health.HealthCheck> livenessChecks()
Return the provided livenessHealthChecks.- Returns:
- the
HealthChecks
-
-