Class SmallRyeHealthConfig
java.lang.Object
io.quarkus.smallrye.health.deployment.SmallRyeHealthConfig
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) booleanWhether the context should be propagated to each health check invocation.The name of the default health group used when no other health group is defined on the health check.(package private) StringThe relative path of the health group endpoint.(package private) StringThe relative path of the liveness health-checking endpoint.booleanIf management interface is turned on the health endpoints and ui will be published under the management interface.(package private) OptionalIntThe number of the maximum health groups that can be created.(package private) StringThe relative path of the readiness health-checking endpoint.(package private) StringRoot path for health-checking endpoints.(package private) StringThe relative path of the startup health-checking endpoint.(package private) SmallRyeHealthUIConfigSmallRye Health UI configuration(package private) StringThe relative path of the wellness health-checking endpoint. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
rootPath
Root path for health-checking endpoints. By default, this value will be resolved as a path relative to `${quarkus.http.non-application-root-path}`. If the management interface is enabled, the value will be resolved as a path relative to `${quarkus.management.root-path}`. -
livenessPath
The relative path of the liveness health-checking endpoint. By default, this value will be resolved as a path relative to `${quarkus.smallrye-health.rootPath}`. -
readinessPath
The relative path of the readiness health-checking endpoint. By default, this value will be resolved as a path relative to `${quarkus.smallrye-health.rootPath}`. -
groupPath
The relative path of the health group endpoint. By default, this value will be resolved as a path relative to `${quarkus.smallrye-health.rootPath}`. -
wellnessPath
The relative path of the wellness health-checking endpoint. By default, this value will be resolved as a path relative to `${quarkus.smallrye-health.rootPath}`. -
startupPath
The relative path of the startup health-checking endpoint. By default, this value will be resolved as a path relative to `${quarkus.smallrye-health.rootPath}`. -
contextPropagation
@ConfigItem(defaultValue="false") boolean contextPropagationWhether the context should be propagated to each health check invocation. -
maxGroupRegistriesCount
The number of the maximum health groups that can be created. -
defaultHealthGroup
The name of the default health group used when no other health group is defined on the health check. -
managementEnabled
@ConfigItem(name="management.enabled", defaultValue="true") public boolean managementEnabledIf management interface is turned on the health endpoints and ui will be published under the management interface. This allows you to exclude Health from management by setting the value to false -
ui
SmallRye Health UI configuration
-
-
Constructor Details
-
SmallRyeHealthConfig
public SmallRyeHealthConfig()
-