Interface HealthCenterFilterConfig.HealthCenterConfig
- Enclosing interface:
- HealthCenterFilterConfig
public static interface HealthCenterFilterConfig.HealthCenterConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()Whether all health check is enabledbooleanWhether the liveness health check is enabled.booleanWhether the readiness health check is enabled.booleanWhether the startup health check is enabled.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()Whether all health check is enabled -
readinessEnabled
@WithDefault("true") @WithName("readiness.enabled") boolean readinessEnabled()Whether the readiness health check is enabled. -
livenessEnabled
@WithDefault("true") @WithName("liveness.enabled") boolean livenessEnabled()Whether the liveness health check is enabled. -
startupEnabled
@WithDefault("true") @WithName("startup.enabled") boolean startupEnabled()Whether the startup health check is enabled.
-