mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
17 lines
355 B
Protocol Buffer
17 lines
355 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resf.orgmon;
|
|
|
|
import "google/api/annotations.proto";
|
|
import "proto/common.proto";
|
|
|
|
option go_package = "peridot.resf.org/common;commonpb";
|
|
|
|
service HealthCheckService {
|
|
rpc HealthCheck(HealthCheckRequest) returns (HealthCheckResponse) {
|
|
option (google.api.http) = {
|
|
get: "/_/healthz"
|
|
};
|
|
}
|
|
}
|