Files
EdgeCommon/pkg/rpc/protos/models/model_server_bandwidth_stat.proto

17 lines
449 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

syntax = "proto3";
option go_package = "./pb";
package pb;
// 带宽统计数据
message ServerBandwidthStat {
int64 id = 1; // ID
int64 userId = 2; // 用户ID
int64 serverId = 3; //服务ID
string day = 4; // 日期格式YYYYMMDD
string timeAt = 5; // 时间格式HHII
int64 bytes = 6; // 峰值带宽字节
int64 totalBytes = 9; // 总流量
int64 bits = 7; // 峰值带宽比特
int64 nodeRegionId = 8; // 节点所在区域ID
}