提供基本的监控API

This commit is contained in:
刘祥超
2021-04-29 16:48:27 +08:00
parent 80f6ffbcec
commit 04930390ba
6 changed files with 696 additions and 45 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 节点监控值
message NodeValue {
bytes valueJSON = 1;
int64 createdAt = 2;
}