实现基本的监控终端管理

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

@@ -22,14 +22,16 @@ service ReportResultService {
message CountAllReportResultsRequest {
int64 reportNodeId = 1;
int32 okState = 2;
string level = 3;
}
// 列出单页监控结果
message ListReportResultsRequest {
int64 reportNodeId = 1;
int32 okState = 2;
int64 offset = 3;
int64 size = 4;
string level = 3;
int64 offset = 4;
int64 size = 5;
}
message ListReportResultsResponse {