国家/地区统计时上传流量、攻击量等信息

This commit is contained in:
GoEdgeLab
2021-12-05 18:57:42 +08:00
parent 60fd7547d3
commit a60f09e76d
4 changed files with 710 additions and 560 deletions

View File

@@ -232,6 +232,7 @@ message ComposeAdminDashboardResponse {
repeated NodeStat topNodeStats = 38;
repeated DomainStat topDomainStats = 39;
repeated CountryStat topCountryStats = 42;
repeated MetricDataChart metricDataCharts = 40;
@@ -269,6 +270,13 @@ message ComposeAdminDashboardResponse {
int64 bytes = 4;
}
message CountryStat {
string countryName = 1;
int64 bytes = 2;
int64 countRequests = 3;
float percent = 4; // 流量占比
}
// 节点升级信息
message UpgradeInfo {
int64 countNodes = 1;