Package io.quarkus.grpc.runtime.config
Interface GrpcServerBuildTimeConfig
@ConfigMapping(prefix="quarkus.grpc.server")
@ConfigRoot(phase=BUILD_TIME)
public interface GrpcServerBuildTimeConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether the gRPC health check is exposed.booleanWhether a health check on gRPC status is published in case the smallrye-health extension is present.
-
Method Details
-
mpHealthEnabled
@WithName("health.enabled") @WithDefault("true") boolean mpHealthEnabled()Whether a health check on gRPC status is published in case the smallrye-health extension is present. -
grpcHealthEnabled
@WithName("grpc-health.enabled") @WithDefault("true") boolean grpcHealthEnabled()Whether the gRPC health check is exposed.
-