Package io.quarkus.vault.runtime.config
Interface HealthConfig
-
public interface HealthConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanenabled()Whether or not an health check is published in case the smallrye-health extension is present.booleanperformanceStandByOk()Specifies if being a performance standby should still return the active status code instead of the performance standby status code.booleanstandByOk()Specifies if being a standby should still return the active status code instead of the standby status code.StringtoString()
-
-
-
Method Detail
-
enabled
@WithDefault("false") boolean enabled()Whether or not an health check is published in case the smallrye-health extension is present.
-
standByOk
@WithDefault("false") boolean standByOk()Specifies if being a standby should still return the active status code instead of the standby status code.
-
performanceStandByOk
@WithDefault("false") boolean performanceStandByOk()Specifies if being a performance standby should still return the active status code instead of the performance standby status code.
-
-