Files
orion_greptime_proto/proto/greptime/v1/health.proto
T
Ning Sun ff8c55bed0 feat: add dbname and health check api (#18)
* feat: add dbname field in proto

* feat: add health check service

* fix: enum must start from 0

* chore: check in generated go sources

* refactor: remove health check response content

* chore: generate go sources
2023-03-26 23:01:54 +08:00

17 lines
357 B
Protocol Buffer

syntax = "proto3";
package greptime.v1;
option java_package = "io.greptime.v1";
option java_outer_classname = "Health";
option go_package = "github.com/GreptimeTeam/greptime-proto/go/greptime/v1";
service HealthCheck {
rpc HealthCheck(HealthCheckRequest) returns (HealthCheckResponse);
}
message HealthCheckRequest {}
message HealthCheckResponse {}