实现集群看板

This commit is contained in:
刘祥超
2021-07-05 11:37:10 +08:00
parent 53ee50fa38
commit be9bde507a
11 changed files with 2357 additions and 138 deletions

View File

@@ -24,6 +24,17 @@ service ServerDailyStatService {
// 上传统计
message UploadServerDailyStatsRequest {
repeated ServerDailyStat stats = 1;
repeated DomainStat domainStats = 2;
message DomainStat {
int64 serverId = 1;
string domain = 2;
int64 bytes = 3;
int64 cachedBytes = 4;
int64 countRequests = 5;
int64 countCachedRequests = 6;
int64 createdAt = 7;
}
}
// 按小时读取统计数据