Class GrpcHealthCheckService

java.lang.Object
io.grpc.health.v1.HealthGrpc.HealthImplBase
com.linecorp.armeria.server.grpc.GrpcHealthCheckService
All Implemented Interfaces:
BindableService, HealthGrpc.AsyncService

@UnstableApi public final class GrpcHealthCheckService extends HealthGrpc.HealthImplBase
An implementation of HealthImplBase that determines the healthiness of a Server and the healthiness of each gRPC service.

This class is implemented based on gRPC Health Checking Protocol. If a service name is specified in the health check request, the service health updated by gRPC Service HealthCheckers is returned. If an empty service name is specified, the server health is returned. Note: The suggested format of service name is package_names.ServiceName If a server is healthy, returns ServingStatus.SERVING is returned. For more details, please refer to the following URL.

See Also: