Files
EdgeCommon/pkg/rpc/protos/service_server_bandwidth_stat.proto

69 lines
1.7 KiB
Protocol Buffer
Raw Normal View History

2022-07-05 20:09:19 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/rpc_messages.proto";
import "models/model_server_bandwidth_stat.proto";
// 服务带宽统计服务
service ServerBandwidthStatService {
// 上传带宽统计
rpc uploadServerBandwidthStats(UploadServerBandwidthStatsRequest) returns (RPCSuccess);
// 获取服务的峰值带宽
rpc findServerBandwidthStats(FindServerBandwidthStatsRequest) returns (FindServerBandwidthStatsResponse);
// 获取最近N小时峰值带宽
rpc findHourlyServerBandwidthStats(FindHourlyServerBandwidthStatsRequest) returns (FindHourlyServerBandwidthStatsResponse);
// 获取最近N天峰值带宽
rpc findDailyServerBandwidthStats(FindDailyServerBandwidthStatsRequest) returns (FindDailyServerBandwidthStatsResponse);
2022-07-05 20:09:19 +08:00
}
// 上传带宽统计
message UploadServerBandwidthStatsRequest {
repeated ServerBandwidthStat serverBandwidthStats = 1;
}
// 获取服务的峰值带宽
message FindServerBandwidthStatsRequest {
int64 serverId = 1; // 服务ID
string month = 2; // YYYYMMmonth和day二选一
string day = 3; // YYYYMMDD
}
message FindServerBandwidthStatsResponse {
repeated ServerBandwidthStat serverBandwidthStats = 1;
}
// 获取最近N小时峰值带宽
message FindHourlyServerBandwidthStatsRequest {
int64 serverId = 1;
int32 hours = 2;
}
message FindHourlyServerBandwidthStatsResponse {
repeated Stat stats = 1;
message Stat {
string day = 1;
int32 hour = 2;
int64 bytes = 3;
}
}
// 获取最近N天峰值带宽
message FindDailyServerBandwidthStatsRequest {
int64 serverId = 1;
int32 days = 2;
}
message FindDailyServerBandwidthStatsResponse {
repeated Stat stats = 1;
message Stat {
string day = 1;
int64 bytes = 3;
}
2022-07-05 20:09:19 +08:00
}