mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
28 lines
684 B
Protocol Buffer
28 lines
684 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_server_domain_hourly_stat.proto";
|
|
|
|
// 服务域名按小时统计服务
|
|
service ServerDomainHourlyStatService {
|
|
// 读取服务的域名排行
|
|
rpc listTopServerDomainStatsWithServerId(ListTopServerDomainStatsWithServerIdRequest) returns (ListTopServerDomainStatsWithServerIdResponse);
|
|
}
|
|
|
|
|
|
// 读取域名排行
|
|
message ListTopServerDomainStatsWithServerIdRequest{
|
|
int64 nodeClusterId = 1;
|
|
int64 nodeId = 2;
|
|
int64 serverId = 3;
|
|
string hourFrom = 4;
|
|
string hourTo = 5;
|
|
int64 size = 6;
|
|
}
|
|
|
|
message ListTopServerDomainStatsWithServerIdResponse {
|
|
repeated ServerDomainHourlyStat domainStats = 1;
|
|
}
|