实现数据看板--用户

This commit is contained in:
GoEdgeLab
2021-07-11 18:06:07 +08:00
parent f9683d814e
commit fcb9670fe7
11 changed files with 2149 additions and 821 deletions

View File

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