服务看板中增加峰值带宽数据

This commit is contained in:
刘祥超
2022-07-07 17:07:24 +08:00
parent 0976b35357
commit a24cbe43b6
3 changed files with 3267 additions and 3199 deletions

View File

@@ -140,7 +140,13 @@ message ComposeServerStatBoardRequest {
}
message ComposeServerStatBoardResponse {
repeated ServerBandwidthStat serverBandwidthStats = 1;
int64 minutelyPeekBandwidthBytes = 5; // 当前带宽N分钟峰值
int64 dailyPeekBandwidthBytes = 2; // 当天带宽峰值
int64 monthlyPeekBandwidthBytes = 3; // 当月带宽峰值
int64 lastMonthlyPeekBandwidthBytes = 4; // 上个月带宽峰值
repeated ServerBandwidthStat minutelyBandwidthStats = 1; // 分钟级的带宽统计
repeated ServerBandwidthStat dailyBandwidthStats = 6; // 按天的带宽统计
repeated DailyTrafficStat dailyTrafficStats = 30;
repeated HourlyTrafficStat hourlyTrafficStats = 31;
repeated NodeStat topNodeStats = 32;