You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our ecosystem we use grpc.health.v1.Health endpoint to check the health of a gRPC server. It optionally takes a service name, such as vtgateservice.Vitess to query for health status.
The text was updated successfully, but these errors were encountered:
Feature Description
A written overview of the feature.
Currently the VTGate gRPC server doesn't register the health check service. Here's the output listing services of a VTGate server using grpcurl:
The health check service can be registered like this: https://github.com/vitessio/vitess/blob/main/go/vt/vtadmin/grpcserver/server.go#L138
If the gRPC server has health check service registers the
grpcurl ls
output is like this (using temporal as an example)https://github.com/vitessio/vitess/blob/main/go/vt/vtadmin/grpcserver/server.go#L138
Use Case(s)
In our ecosystem we use
grpc.health.v1.Health
endpoint to check the health of a gRPC server. It optionally takes a service name, such asvtgateservice.Vitess
to query for health status.The text was updated successfully, but these errors were encountered: