Interface HealthCenterFilterConfig.HealthCenterConfig

Enclosing interface:
HealthCenterFilterConfig

public static interface HealthCenterFilterConfig.HealthCenterConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Whether all health check is enabled
    boolean
    Whether the liveness health check is enabled.
    boolean
    Whether the readiness health check is enabled.
    boolean
    Whether 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.