合并部分流量查询和带宽查询

This commit is contained in:
GoEdgeLab
2023-03-22 17:53:01 +08:00
parent ccbc6bff87
commit 3cff9ebbcb
3 changed files with 71 additions and 14 deletions

View File

@@ -14,4 +14,9 @@ message ServerBandwidthStat {
int64 totalBytes = 9; // 总流量
int64 bits = 7; // 峰值带宽比特
int64 nodeRegionId = 8; // 节点所在区域ID
int64 cachedBytes = 10; // 总缓存流量
int64 attackBytes = 11; // 总攻击流量
int64 countRequests = 12; // 总请求数
int64 countCachedRequests = 13; // 总缓存请求数
int64 countAttackRequests = 14; // 总攻击请求数
}