913 lines
34 KiB
Go
913 lines
34 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
// versions:
|
||
// protoc-gen-go v1.36.11
|
||
// protoc v3.19.6
|
||
// source: service_server_bandwidth_stat.proto
|
||
|
||
package pb
|
||
|
||
import (
|
||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||
reflect "reflect"
|
||
sync "sync"
|
||
unsafe "unsafe"
|
||
)
|
||
|
||
const (
|
||
// Verify that this generated code is sufficiently up-to-date.
|
||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||
)
|
||
|
||
// 上传带宽统计
|
||
type UploadServerBandwidthStatsRequest struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
ServerBandwidthStats []*ServerBandwidthStat `protobuf:"bytes,1,rep,name=serverBandwidthStats,proto3" json:"serverBandwidthStats,omitempty"`
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *UploadServerBandwidthStatsRequest) Reset() {
|
||
*x = UploadServerBandwidthStatsRequest{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[0]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *UploadServerBandwidthStatsRequest) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*UploadServerBandwidthStatsRequest) ProtoMessage() {}
|
||
|
||
func (x *UploadServerBandwidthStatsRequest) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[0]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use UploadServerBandwidthStatsRequest.ProtoReflect.Descriptor instead.
|
||
func (*UploadServerBandwidthStatsRequest) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{0}
|
||
}
|
||
|
||
func (x *UploadServerBandwidthStatsRequest) GetServerBandwidthStats() []*ServerBandwidthStat {
|
||
if x != nil {
|
||
return x.ServerBandwidthStats
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 获取服务的峰值带宽
|
||
type FindServerBandwidthStatsRequest struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
ServerId int64 `protobuf:"varint,1,opt,name=serverId,proto3" json:"serverId,omitempty"` // 服务ID
|
||
Month string `protobuf:"bytes,2,opt,name=month,proto3" json:"month,omitempty"` // YYYYMM,month和day二选一
|
||
Day string `protobuf:"bytes,3,opt,name=day,proto3" json:"day,omitempty"` // YYYYMMDD
|
||
Algo string `protobuf:"bytes,4,opt,name=algo,proto3" json:"algo,omitempty"` // 带宽算法,目前支持secondly和avg
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) Reset() {
|
||
*x = FindServerBandwidthStatsRequest{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[1]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindServerBandwidthStatsRequest) ProtoMessage() {}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[1]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindServerBandwidthStatsRequest.ProtoReflect.Descriptor instead.
|
||
func (*FindServerBandwidthStatsRequest) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{1}
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) GetServerId() int64 {
|
||
if x != nil {
|
||
return x.ServerId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) GetMonth() string {
|
||
if x != nil {
|
||
return x.Month
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) GetDay() string {
|
||
if x != nil {
|
||
return x.Day
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsRequest) GetAlgo() string {
|
||
if x != nil {
|
||
return x.Algo
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type FindServerBandwidthStatsResponse struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
ServerBandwidthStats []*ServerBandwidthStat `protobuf:"bytes,1,rep,name=serverBandwidthStats,proto3" json:"serverBandwidthStats,omitempty"`
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsResponse) Reset() {
|
||
*x = FindServerBandwidthStatsResponse{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[2]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsResponse) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindServerBandwidthStatsResponse) ProtoMessage() {}
|
||
|
||
func (x *FindServerBandwidthStatsResponse) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[2]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindServerBandwidthStatsResponse.ProtoReflect.Descriptor instead.
|
||
func (*FindServerBandwidthStatsResponse) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{2}
|
||
}
|
||
|
||
func (x *FindServerBandwidthStatsResponse) GetServerBandwidthStats() []*ServerBandwidthStat {
|
||
if x != nil {
|
||
return x.ServerBandwidthStats
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 获取最近N小时峰值带宽
|
||
type FindHourlyServerBandwidthStatsRequest struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
ServerId int64 `protobuf:"varint,1,opt,name=serverId,proto3" json:"serverId,omitempty"`
|
||
Hours int32 `protobuf:"varint,2,opt,name=hours,proto3" json:"hours,omitempty"`
|
||
Algo string `protobuf:"bytes,3,opt,name=algo,proto3" json:"algo,omitempty"` // 带宽算法,目前支持secondly和avg
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsRequest) Reset() {
|
||
*x = FindHourlyServerBandwidthStatsRequest{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[3]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsRequest) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindHourlyServerBandwidthStatsRequest) ProtoMessage() {}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsRequest) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[3]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindHourlyServerBandwidthStatsRequest.ProtoReflect.Descriptor instead.
|
||
func (*FindHourlyServerBandwidthStatsRequest) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{3}
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsRequest) GetServerId() int64 {
|
||
if x != nil {
|
||
return x.ServerId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsRequest) GetHours() int32 {
|
||
if x != nil {
|
||
return x.Hours
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsRequest) GetAlgo() string {
|
||
if x != nil {
|
||
return x.Algo
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type FindHourlyServerBandwidthStatsResponse struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
Stats []*FindHourlyServerBandwidthStatsResponse_Stat `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,omitempty"`
|
||
Percentile int32 `protobuf:"varint,2,opt,name=percentile,proto3" json:"percentile,omitempty"` // 百分位
|
||
NthStat *FindHourlyServerBandwidthStatsResponse_Stat `protobuf:"bytes,3,opt,name=nthStat,proto3" json:"nthStat,omitempty"` // 百分位统计数据
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse) Reset() {
|
||
*x = FindHourlyServerBandwidthStatsResponse{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[4]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindHourlyServerBandwidthStatsResponse) ProtoMessage() {}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[4]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindHourlyServerBandwidthStatsResponse.ProtoReflect.Descriptor instead.
|
||
func (*FindHourlyServerBandwidthStatsResponse) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{4}
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse) GetStats() []*FindHourlyServerBandwidthStatsResponse_Stat {
|
||
if x != nil {
|
||
return x.Stats
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse) GetPercentile() int32 {
|
||
if x != nil {
|
||
return x.Percentile
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse) GetNthStat() *FindHourlyServerBandwidthStatsResponse_Stat {
|
||
if x != nil {
|
||
return x.NthStat
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 获取最近N天峰值带宽
|
||
type FindDailyServerBandwidthStatsRequest struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
ServerId int64 `protobuf:"varint,1,opt,name=serverId,proto3" json:"serverId,omitempty"`
|
||
Days int32 `protobuf:"varint,2,opt,name=days,proto3" json:"days,omitempty"`
|
||
Algo string `protobuf:"bytes,3,opt,name=algo,proto3" json:"algo,omitempty"` // 带宽算法,目前支持secondly和avg
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsRequest) Reset() {
|
||
*x = FindDailyServerBandwidthStatsRequest{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[5]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsRequest) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindDailyServerBandwidthStatsRequest) ProtoMessage() {}
|
||
|
||
func (x *FindDailyServerBandwidthStatsRequest) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[5]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindDailyServerBandwidthStatsRequest.ProtoReflect.Descriptor instead.
|
||
func (*FindDailyServerBandwidthStatsRequest) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{5}
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsRequest) GetServerId() int64 {
|
||
if x != nil {
|
||
return x.ServerId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsRequest) GetDays() int32 {
|
||
if x != nil {
|
||
return x.Days
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsRequest) GetAlgo() string {
|
||
if x != nil {
|
||
return x.Algo
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type FindDailyServerBandwidthStatsResponse struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
Stats []*FindDailyServerBandwidthStatsResponse_Stat `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,omitempty"`
|
||
Percentile int32 `protobuf:"varint,2,opt,name=percentile,proto3" json:"percentile,omitempty"` // 百分位
|
||
NthStat *FindDailyServerBandwidthStatsResponse_Stat `protobuf:"bytes,3,opt,name=nthStat,proto3" json:"nthStat,omitempty"` // 百分位统计数据
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse) Reset() {
|
||
*x = FindDailyServerBandwidthStatsResponse{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[6]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindDailyServerBandwidthStatsResponse) ProtoMessage() {}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[6]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindDailyServerBandwidthStatsResponse.ProtoReflect.Descriptor instead.
|
||
func (*FindDailyServerBandwidthStatsResponse) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{6}
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse) GetStats() []*FindDailyServerBandwidthStatsResponse_Stat {
|
||
if x != nil {
|
||
return x.Stats
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse) GetPercentile() int32 {
|
||
if x != nil {
|
||
return x.Percentile
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse) GetNthStat() *FindDailyServerBandwidthStatsResponse_Stat {
|
||
if x != nil {
|
||
return x.NthStat
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 读取日期段内的带宽数据
|
||
type FindDailyServerBandwidthStatsBetweenDaysRequest struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
UserId int64 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"` // 用户ID,和服务ID二选一
|
||
ServerId int64 `protobuf:"varint,2,opt,name=serverId,proto3" json:"serverId,omitempty"` // 服务ID,和用户ID二选一
|
||
DayFrom string `protobuf:"bytes,3,opt,name=dayFrom,proto3" json:"dayFrom,omitempty"` // 开始日期 YYYYMMDD
|
||
DayTo string `protobuf:"bytes,4,opt,name=dayTo,proto3" json:"dayTo,omitempty"` // 结束日期 YYYYMMDD
|
||
Percentile int32 `protobuf:"varint,5,opt,name=percentile,proto3" json:"percentile,omitempty"` // 可选项,百分位(nth)带宽位置,0-100之间
|
||
NodeRegionId int64 `protobuf:"varint,6,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"` // 区域ID,可选项(目前只有用户整体统计支持区域ID)
|
||
Algo string `protobuf:"bytes,7,opt,name=algo,proto3" json:"algo,omitempty"` // 带宽算法,目前支持secondly和avg
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) Reset() {
|
||
*x = FindDailyServerBandwidthStatsBetweenDaysRequest{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[7]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindDailyServerBandwidthStatsBetweenDaysRequest) ProtoMessage() {}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[7]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindDailyServerBandwidthStatsBetweenDaysRequest.ProtoReflect.Descriptor instead.
|
||
func (*FindDailyServerBandwidthStatsBetweenDaysRequest) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{7}
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetUserId() int64 {
|
||
if x != nil {
|
||
return x.UserId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetServerId() int64 {
|
||
if x != nil {
|
||
return x.ServerId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetDayFrom() string {
|
||
if x != nil {
|
||
return x.DayFrom
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetDayTo() string {
|
||
if x != nil {
|
||
return x.DayTo
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetPercentile() int32 {
|
||
if x != nil {
|
||
return x.Percentile
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetNodeRegionId() int64 {
|
||
if x != nil {
|
||
return x.NodeRegionId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysRequest) GetAlgo() string {
|
||
if x != nil {
|
||
return x.Algo
|
||
}
|
||
return ""
|
||
}
|
||
|
||
type FindDailyServerBandwidthStatsBetweenDaysResponse struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
Stats []*FindDailyServerBandwidthStatsBetweenDaysResponse_Stat `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,omitempty"`
|
||
NthStat *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat `protobuf:"bytes,2,opt,name=nthStat,proto3" json:"nthStat,omitempty"`
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse) Reset() {
|
||
*x = FindDailyServerBandwidthStatsBetweenDaysResponse{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[8]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindDailyServerBandwidthStatsBetweenDaysResponse) ProtoMessage() {}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[8]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindDailyServerBandwidthStatsBetweenDaysResponse.ProtoReflect.Descriptor instead.
|
||
func (*FindDailyServerBandwidthStatsBetweenDaysResponse) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{8}
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse) GetStats() []*FindDailyServerBandwidthStatsBetweenDaysResponse_Stat {
|
||
if x != nil {
|
||
return x.Stats
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse) GetNthStat() *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat {
|
||
if x != nil {
|
||
return x.NthStat
|
||
}
|
||
return nil
|
||
}
|
||
|
||
type FindHourlyServerBandwidthStatsResponse_Stat struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
Day string `protobuf:"bytes,1,opt,name=day,proto3" json:"day,omitempty"`
|
||
Hour int32 `protobuf:"varint,2,opt,name=hour,proto3" json:"hour,omitempty"`
|
||
Bytes int64 `protobuf:"varint,3,opt,name=bytes,proto3" json:"bytes,omitempty"` // 峰值字节/秒
|
||
Bits int64 `protobuf:"varint,4,opt,name=bits,proto3" json:"bits,omitempty"` // 峰值比特/秒
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) Reset() {
|
||
*x = FindHourlyServerBandwidthStatsResponse_Stat{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[9]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindHourlyServerBandwidthStatsResponse_Stat) ProtoMessage() {}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[9]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindHourlyServerBandwidthStatsResponse_Stat.ProtoReflect.Descriptor instead.
|
||
func (*FindHourlyServerBandwidthStatsResponse_Stat) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{4, 0}
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) GetDay() string {
|
||
if x != nil {
|
||
return x.Day
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) GetHour() int32 {
|
||
if x != nil {
|
||
return x.Hour
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) GetBytes() int64 {
|
||
if x != nil {
|
||
return x.Bytes
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindHourlyServerBandwidthStatsResponse_Stat) GetBits() int64 {
|
||
if x != nil {
|
||
return x.Bits
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type FindDailyServerBandwidthStatsResponse_Stat struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
Day string `protobuf:"bytes,1,opt,name=day,proto3" json:"day,omitempty"`
|
||
Bytes int64 `protobuf:"varint,3,opt,name=bytes,proto3" json:"bytes,omitempty"` // 峰值字节/秒
|
||
Bits int64 `protobuf:"varint,4,opt,name=bits,proto3" json:"bits,omitempty"` // 峰值比特/秒
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse_Stat) Reset() {
|
||
*x = FindDailyServerBandwidthStatsResponse_Stat{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[10]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse_Stat) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindDailyServerBandwidthStatsResponse_Stat) ProtoMessage() {}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse_Stat) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[10]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindDailyServerBandwidthStatsResponse_Stat.ProtoReflect.Descriptor instead.
|
||
func (*FindDailyServerBandwidthStatsResponse_Stat) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{6, 0}
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse_Stat) GetDay() string {
|
||
if x != nil {
|
||
return x.Day
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse_Stat) GetBytes() int64 {
|
||
if x != nil {
|
||
return x.Bytes
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsResponse_Stat) GetBits() int64 {
|
||
if x != nil {
|
||
return x.Bits
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type FindDailyServerBandwidthStatsBetweenDaysResponse_Stat struct {
|
||
state protoimpl.MessageState `protogen:"open.v1"`
|
||
Day string `protobuf:"bytes,1,opt,name=day,proto3" json:"day,omitempty"`
|
||
TimeAt string `protobuf:"bytes,2,opt,name=timeAt,proto3" json:"timeAt,omitempty"`
|
||
Bytes int64 `protobuf:"varint,3,opt,name=bytes,proto3" json:"bytes,omitempty"` // 峰值字节/秒
|
||
Bits int64 `protobuf:"varint,4,opt,name=bits,proto3" json:"bits,omitempty"` // 峰值比特/秒
|
||
unknownFields protoimpl.UnknownFields
|
||
sizeCache protoimpl.SizeCache
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) Reset() {
|
||
*x = FindDailyServerBandwidthStatsBetweenDaysResponse_Stat{}
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[11]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) ProtoMessage() {}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) ProtoReflect() protoreflect.Message {
|
||
mi := &file_service_server_bandwidth_stat_proto_msgTypes[11]
|
||
if x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use FindDailyServerBandwidthStatsBetweenDaysResponse_Stat.ProtoReflect.Descriptor instead.
|
||
func (*FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) Descriptor() ([]byte, []int) {
|
||
return file_service_server_bandwidth_stat_proto_rawDescGZIP(), []int{8, 0}
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) GetDay() string {
|
||
if x != nil {
|
||
return x.Day
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) GetTimeAt() string {
|
||
if x != nil {
|
||
return x.TimeAt
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) GetBytes() int64 {
|
||
if x != nil {
|
||
return x.Bytes
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *FindDailyServerBandwidthStatsBetweenDaysResponse_Stat) GetBits() int64 {
|
||
if x != nil {
|
||
return x.Bits
|
||
}
|
||
return 0
|
||
}
|
||
|
||
var File_service_server_bandwidth_stat_proto protoreflect.FileDescriptor
|
||
|
||
const file_service_server_bandwidth_stat_proto_rawDesc = "" +
|
||
"\n" +
|
||
"#service_server_bandwidth_stat.proto\x12\x02pb\x1a\x19models/rpc_messages.proto\x1a(models/model_server_bandwidth_stat.proto\"p\n" +
|
||
"!UploadServerBandwidthStatsRequest\x12K\n" +
|
||
"\x14serverBandwidthStats\x18\x01 \x03(\v2\x17.pb.ServerBandwidthStatR\x14serverBandwidthStats\"y\n" +
|
||
"\x1fFindServerBandwidthStatsRequest\x12\x1a\n" +
|
||
"\bserverId\x18\x01 \x01(\x03R\bserverId\x12\x14\n" +
|
||
"\x05month\x18\x02 \x01(\tR\x05month\x12\x10\n" +
|
||
"\x03day\x18\x03 \x01(\tR\x03day\x12\x12\n" +
|
||
"\x04algo\x18\x04 \x01(\tR\x04algo\"o\n" +
|
||
" FindServerBandwidthStatsResponse\x12K\n" +
|
||
"\x14serverBandwidthStats\x18\x01 \x03(\v2\x17.pb.ServerBandwidthStatR\x14serverBandwidthStats\"m\n" +
|
||
"%FindHourlyServerBandwidthStatsRequest\x12\x1a\n" +
|
||
"\bserverId\x18\x01 \x01(\x03R\bserverId\x12\x14\n" +
|
||
"\x05hours\x18\x02 \x01(\x05R\x05hours\x12\x12\n" +
|
||
"\x04algo\x18\x03 \x01(\tR\x04algo\"\xb2\x02\n" +
|
||
"&FindHourlyServerBandwidthStatsResponse\x12E\n" +
|
||
"\x05stats\x18\x01 \x03(\v2/.pb.FindHourlyServerBandwidthStatsResponse.StatR\x05stats\x12\x1e\n" +
|
||
"\n" +
|
||
"percentile\x18\x02 \x01(\x05R\n" +
|
||
"percentile\x12I\n" +
|
||
"\anthStat\x18\x03 \x01(\v2/.pb.FindHourlyServerBandwidthStatsResponse.StatR\anthStat\x1aV\n" +
|
||
"\x04Stat\x12\x10\n" +
|
||
"\x03day\x18\x01 \x01(\tR\x03day\x12\x12\n" +
|
||
"\x04hour\x18\x02 \x01(\x05R\x04hour\x12\x14\n" +
|
||
"\x05bytes\x18\x03 \x01(\x03R\x05bytes\x12\x12\n" +
|
||
"\x04bits\x18\x04 \x01(\x03R\x04bits\"j\n" +
|
||
"$FindDailyServerBandwidthStatsRequest\x12\x1a\n" +
|
||
"\bserverId\x18\x01 \x01(\x03R\bserverId\x12\x12\n" +
|
||
"\x04days\x18\x02 \x01(\x05R\x04days\x12\x12\n" +
|
||
"\x04algo\x18\x03 \x01(\tR\x04algo\"\x9b\x02\n" +
|
||
"%FindDailyServerBandwidthStatsResponse\x12D\n" +
|
||
"\x05stats\x18\x01 \x03(\v2..pb.FindDailyServerBandwidthStatsResponse.StatR\x05stats\x12\x1e\n" +
|
||
"\n" +
|
||
"percentile\x18\x02 \x01(\x05R\n" +
|
||
"percentile\x12H\n" +
|
||
"\anthStat\x18\x03 \x01(\v2..pb.FindDailyServerBandwidthStatsResponse.StatR\anthStat\x1aB\n" +
|
||
"\x04Stat\x12\x10\n" +
|
||
"\x03day\x18\x01 \x01(\tR\x03day\x12\x14\n" +
|
||
"\x05bytes\x18\x03 \x01(\x03R\x05bytes\x12\x12\n" +
|
||
"\x04bits\x18\x04 \x01(\x03R\x04bits\"\xed\x01\n" +
|
||
"/FindDailyServerBandwidthStatsBetweenDaysRequest\x12\x16\n" +
|
||
"\x06userId\x18\x01 \x01(\x03R\x06userId\x12\x1a\n" +
|
||
"\bserverId\x18\x02 \x01(\x03R\bserverId\x12\x18\n" +
|
||
"\adayFrom\x18\x03 \x01(\tR\adayFrom\x12\x14\n" +
|
||
"\x05dayTo\x18\x04 \x01(\tR\x05dayTo\x12\x1e\n" +
|
||
"\n" +
|
||
"percentile\x18\x05 \x01(\x05R\n" +
|
||
"percentile\x12\"\n" +
|
||
"\fnodeRegionId\x18\x06 \x01(\x03R\fnodeRegionId\x12\x12\n" +
|
||
"\x04algo\x18\a \x01(\tR\x04algo\"\xb4\x02\n" +
|
||
"0FindDailyServerBandwidthStatsBetweenDaysResponse\x12O\n" +
|
||
"\x05stats\x18\x01 \x03(\v29.pb.FindDailyServerBandwidthStatsBetweenDaysResponse.StatR\x05stats\x12S\n" +
|
||
"\anthStat\x18\x02 \x01(\v29.pb.FindDailyServerBandwidthStatsBetweenDaysResponse.StatR\anthStat\x1aZ\n" +
|
||
"\x04Stat\x12\x10\n" +
|
||
"\x03day\x18\x01 \x01(\tR\x03day\x12\x16\n" +
|
||
"\x06timeAt\x18\x02 \x01(\tR\x06timeAt\x12\x14\n" +
|
||
"\x05bytes\x18\x03 \x01(\x03R\x05bytes\x12\x12\n" +
|
||
"\x04bits\x18\x04 \x01(\x03R\x04bits2\xdf\x04\n" +
|
||
"\x1aServerBandwidthStatService\x12S\n" +
|
||
"\x1auploadServerBandwidthStats\x12%.pb.UploadServerBandwidthStatsRequest\x1a\x0e.pb.RPCSuccess\x12e\n" +
|
||
"\x18findServerBandwidthStats\x12#.pb.FindServerBandwidthStatsRequest\x1a$.pb.FindServerBandwidthStatsResponse\x12w\n" +
|
||
"\x1efindHourlyServerBandwidthStats\x12).pb.FindHourlyServerBandwidthStatsRequest\x1a*.pb.FindHourlyServerBandwidthStatsResponse\x12t\n" +
|
||
"\x1dfindDailyServerBandwidthStats\x12(.pb.FindDailyServerBandwidthStatsRequest\x1a).pb.FindDailyServerBandwidthStatsResponse\x12\x95\x01\n" +
|
||
"(findDailyServerBandwidthStatsBetweenDays\x123.pb.FindDailyServerBandwidthStatsBetweenDaysRequest\x1a4.pb.FindDailyServerBandwidthStatsBetweenDaysResponseB\x06Z\x04./pbb\x06proto3"
|
||
|
||
var (
|
||
file_service_server_bandwidth_stat_proto_rawDescOnce sync.Once
|
||
file_service_server_bandwidth_stat_proto_rawDescData []byte
|
||
)
|
||
|
||
func file_service_server_bandwidth_stat_proto_rawDescGZIP() []byte {
|
||
file_service_server_bandwidth_stat_proto_rawDescOnce.Do(func() {
|
||
file_service_server_bandwidth_stat_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_service_server_bandwidth_stat_proto_rawDesc), len(file_service_server_bandwidth_stat_proto_rawDesc)))
|
||
})
|
||
return file_service_server_bandwidth_stat_proto_rawDescData
|
||
}
|
||
|
||
var file_service_server_bandwidth_stat_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
|
||
var file_service_server_bandwidth_stat_proto_goTypes = []any{
|
||
(*UploadServerBandwidthStatsRequest)(nil), // 0: pb.UploadServerBandwidthStatsRequest
|
||
(*FindServerBandwidthStatsRequest)(nil), // 1: pb.FindServerBandwidthStatsRequest
|
||
(*FindServerBandwidthStatsResponse)(nil), // 2: pb.FindServerBandwidthStatsResponse
|
||
(*FindHourlyServerBandwidthStatsRequest)(nil), // 3: pb.FindHourlyServerBandwidthStatsRequest
|
||
(*FindHourlyServerBandwidthStatsResponse)(nil), // 4: pb.FindHourlyServerBandwidthStatsResponse
|
||
(*FindDailyServerBandwidthStatsRequest)(nil), // 5: pb.FindDailyServerBandwidthStatsRequest
|
||
(*FindDailyServerBandwidthStatsResponse)(nil), // 6: pb.FindDailyServerBandwidthStatsResponse
|
||
(*FindDailyServerBandwidthStatsBetweenDaysRequest)(nil), // 7: pb.FindDailyServerBandwidthStatsBetweenDaysRequest
|
||
(*FindDailyServerBandwidthStatsBetweenDaysResponse)(nil), // 8: pb.FindDailyServerBandwidthStatsBetweenDaysResponse
|
||
(*FindHourlyServerBandwidthStatsResponse_Stat)(nil), // 9: pb.FindHourlyServerBandwidthStatsResponse.Stat
|
||
(*FindDailyServerBandwidthStatsResponse_Stat)(nil), // 10: pb.FindDailyServerBandwidthStatsResponse.Stat
|
||
(*FindDailyServerBandwidthStatsBetweenDaysResponse_Stat)(nil), // 11: pb.FindDailyServerBandwidthStatsBetweenDaysResponse.Stat
|
||
(*ServerBandwidthStat)(nil), // 12: pb.ServerBandwidthStat
|
||
(*RPCSuccess)(nil), // 13: pb.RPCSuccess
|
||
}
|
||
var file_service_server_bandwidth_stat_proto_depIdxs = []int32{
|
||
12, // 0: pb.UploadServerBandwidthStatsRequest.serverBandwidthStats:type_name -> pb.ServerBandwidthStat
|
||
12, // 1: pb.FindServerBandwidthStatsResponse.serverBandwidthStats:type_name -> pb.ServerBandwidthStat
|
||
9, // 2: pb.FindHourlyServerBandwidthStatsResponse.stats:type_name -> pb.FindHourlyServerBandwidthStatsResponse.Stat
|
||
9, // 3: pb.FindHourlyServerBandwidthStatsResponse.nthStat:type_name -> pb.FindHourlyServerBandwidthStatsResponse.Stat
|
||
10, // 4: pb.FindDailyServerBandwidthStatsResponse.stats:type_name -> pb.FindDailyServerBandwidthStatsResponse.Stat
|
||
10, // 5: pb.FindDailyServerBandwidthStatsResponse.nthStat:type_name -> pb.FindDailyServerBandwidthStatsResponse.Stat
|
||
11, // 6: pb.FindDailyServerBandwidthStatsBetweenDaysResponse.stats:type_name -> pb.FindDailyServerBandwidthStatsBetweenDaysResponse.Stat
|
||
11, // 7: pb.FindDailyServerBandwidthStatsBetweenDaysResponse.nthStat:type_name -> pb.FindDailyServerBandwidthStatsBetweenDaysResponse.Stat
|
||
0, // 8: pb.ServerBandwidthStatService.uploadServerBandwidthStats:input_type -> pb.UploadServerBandwidthStatsRequest
|
||
1, // 9: pb.ServerBandwidthStatService.findServerBandwidthStats:input_type -> pb.FindServerBandwidthStatsRequest
|
||
3, // 10: pb.ServerBandwidthStatService.findHourlyServerBandwidthStats:input_type -> pb.FindHourlyServerBandwidthStatsRequest
|
||
5, // 11: pb.ServerBandwidthStatService.findDailyServerBandwidthStats:input_type -> pb.FindDailyServerBandwidthStatsRequest
|
||
7, // 12: pb.ServerBandwidthStatService.findDailyServerBandwidthStatsBetweenDays:input_type -> pb.FindDailyServerBandwidthStatsBetweenDaysRequest
|
||
13, // 13: pb.ServerBandwidthStatService.uploadServerBandwidthStats:output_type -> pb.RPCSuccess
|
||
2, // 14: pb.ServerBandwidthStatService.findServerBandwidthStats:output_type -> pb.FindServerBandwidthStatsResponse
|
||
4, // 15: pb.ServerBandwidthStatService.findHourlyServerBandwidthStats:output_type -> pb.FindHourlyServerBandwidthStatsResponse
|
||
6, // 16: pb.ServerBandwidthStatService.findDailyServerBandwidthStats:output_type -> pb.FindDailyServerBandwidthStatsResponse
|
||
8, // 17: pb.ServerBandwidthStatService.findDailyServerBandwidthStatsBetweenDays:output_type -> pb.FindDailyServerBandwidthStatsBetweenDaysResponse
|
||
13, // [13:18] is the sub-list for method output_type
|
||
8, // [8:13] is the sub-list for method input_type
|
||
8, // [8:8] is the sub-list for extension type_name
|
||
8, // [8:8] is the sub-list for extension extendee
|
||
0, // [0:8] is the sub-list for field type_name
|
||
}
|
||
|
||
func init() { file_service_server_bandwidth_stat_proto_init() }
|
||
func file_service_server_bandwidth_stat_proto_init() {
|
||
if File_service_server_bandwidth_stat_proto != nil {
|
||
return
|
||
}
|
||
file_models_rpc_messages_proto_init()
|
||
file_models_model_server_bandwidth_stat_proto_init()
|
||
type x struct{}
|
||
out := protoimpl.TypeBuilder{
|
||
File: protoimpl.DescBuilder{
|
||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_service_server_bandwidth_stat_proto_rawDesc), len(file_service_server_bandwidth_stat_proto_rawDesc)),
|
||
NumEnums: 0,
|
||
NumMessages: 12,
|
||
NumExtensions: 0,
|
||
NumServices: 1,
|
||
},
|
||
GoTypes: file_service_server_bandwidth_stat_proto_goTypes,
|
||
DependencyIndexes: file_service_server_bandwidth_stat_proto_depIdxs,
|
||
MessageInfos: file_service_server_bandwidth_stat_proto_msgTypes,
|
||
}.Build()
|
||
File_service_server_bandwidth_stat_proto = out.File
|
||
file_service_server_bandwidth_stat_proto_goTypes = nil
|
||
file_service_server_bandwidth_stat_proto_depIdxs = nil
|
||
}
|