Files
houston/protos/monitor.proto

17 lines
294 B
Protocol Buffer
Raw Permalink Normal View History

2023-05-21 23:37:54 +09:00
syntax = "proto3";
option go_package = "common/protos";
import "protos/empty.proto";
service Monitor {
rpc Report(Metrics) returns (Empty) {}
}
message Metrics {
string hostname = 1;
float cpu = 3;
uint32 total = 4;
uint32 free = 5;
map<string, float> metrics = 6;
}