houston package 독립

This commit is contained in:
2023-05-21 23:37:54 +09:00
commit 3e8c79a48b
20 changed files with 3152 additions and 0 deletions

16
protos/monitor.proto Normal file
View File

@ -0,0 +1,16 @@
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;
}