colibri.qdrant / lib /api /src /grpc /proto /health_check.proto
Gouzi Mohaled
Ajout du dossier lib
84d2a97
raw
history blame contribute delete
525 Bytes
// source: https://github.com/grpc/grpc/blob/master/doc/health-checking.md#service-definition
syntax = "proto3";
package grpc.health.v1;
option csharp_namespace = "Qdrant.Client.Grpc";
message HealthCheckRequest {
string service = 1;
}
message HealthCheckResponse {
enum ServingStatus {
UNKNOWN = 0;
SERVING = 1;
NOT_SERVING = 2;
SERVICE_UNKNOWN = 3; // Used only by the Watch method.
}
ServingStatus status = 1;
}
service Health {
rpc Check(HealthCheckRequest) returns (HealthCheckResponse);
}