mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 14:50:24 +08:00
18 lines
452 B
Protocol Buffer
18 lines
452 B
Protocol Buffer
|
|
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);
|
||
|
|
}
|
||
|
|
|
||
|
|
// 上传带宽统计
|
||
|
|
message UploadServerBandwidthStatsRequest {
|
||
|
|
repeated ServerBandwidthStat serverBandwidthStats = 1;
|
||
|
|
}
|