实现基本的监控终端管理

This commit is contained in:
GoEdgeLab
2021-09-08 19:35:28 +08:00
parent 72826efbd1
commit b64e22466d
18 changed files with 2654 additions and 458 deletions

View File

@@ -3,6 +3,8 @@ option go_package = "./pb";
package pb;
import "models/model_report_node_group.proto";
message ReportNode {
int64 id = 1;
string uniqueId = 2;
@@ -14,4 +16,5 @@ message ReportNode {
bool isActive = 8;
bytes statusJSON = 9;
repeated string allowIPs = 10;
repeated ReportNodeGroup reportNodeGroups = 11;
}