191 lines
5.9 KiB
Go
191 lines
5.9 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.11
|
|
// protoc v3.19.6
|
|
// source: models/model_api_method_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 APIMethodStat struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
ApiNodeId int64 `protobuf:"varint,2,opt,name=apiNodeId,proto3" json:"apiNodeId,omitempty"`
|
|
Method string `protobuf:"bytes,3,opt,name=method,proto3" json:"method,omitempty"`
|
|
Tag string `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
|
|
CostMs float32 `protobuf:"fixed32,5,opt,name=costMs,proto3" json:"costMs,omitempty"`
|
|
PeekMs float32 `protobuf:"fixed32,6,opt,name=peekMs,proto3" json:"peekMs,omitempty"`
|
|
CountCalls int64 `protobuf:"varint,7,opt,name=countCalls,proto3" json:"countCalls,omitempty"`
|
|
ApiNode *APINode `protobuf:"bytes,30,opt,name=apiNode,proto3" json:"apiNode,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *APIMethodStat) Reset() {
|
|
*x = APIMethodStat{}
|
|
mi := &file_models_model_api_method_stat_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *APIMethodStat) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*APIMethodStat) ProtoMessage() {}
|
|
|
|
func (x *APIMethodStat) ProtoReflect() protoreflect.Message {
|
|
mi := &file_models_model_api_method_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 APIMethodStat.ProtoReflect.Descriptor instead.
|
|
func (*APIMethodStat) Descriptor() ([]byte, []int) {
|
|
return file_models_model_api_method_stat_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *APIMethodStat) GetId() int64 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *APIMethodStat) GetApiNodeId() int64 {
|
|
if x != nil {
|
|
return x.ApiNodeId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *APIMethodStat) GetMethod() string {
|
|
if x != nil {
|
|
return x.Method
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *APIMethodStat) GetTag() string {
|
|
if x != nil {
|
|
return x.Tag
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *APIMethodStat) GetCostMs() float32 {
|
|
if x != nil {
|
|
return x.CostMs
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *APIMethodStat) GetPeekMs() float32 {
|
|
if x != nil {
|
|
return x.PeekMs
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *APIMethodStat) GetCountCalls() int64 {
|
|
if x != nil {
|
|
return x.CountCalls
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *APIMethodStat) GetApiNode() *APINode {
|
|
if x != nil {
|
|
return x.ApiNode
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var File_models_model_api_method_stat_proto protoreflect.FileDescriptor
|
|
|
|
const file_models_model_api_method_stat_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\"models/model_api_method_stat.proto\x12\x02pb\x1a\x1bmodels/model_api_node.proto\"\xde\x01\n" +
|
|
"\rAPIMethodStat\x12\x0e\n" +
|
|
"\x02id\x18\x01 \x01(\x03R\x02id\x12\x1c\n" +
|
|
"\tapiNodeId\x18\x02 \x01(\x03R\tapiNodeId\x12\x16\n" +
|
|
"\x06method\x18\x03 \x01(\tR\x06method\x12\x10\n" +
|
|
"\x03tag\x18\x04 \x01(\tR\x03tag\x12\x16\n" +
|
|
"\x06costMs\x18\x05 \x01(\x02R\x06costMs\x12\x16\n" +
|
|
"\x06peekMs\x18\x06 \x01(\x02R\x06peekMs\x12\x1e\n" +
|
|
"\n" +
|
|
"countCalls\x18\a \x01(\x03R\n" +
|
|
"countCalls\x12%\n" +
|
|
"\aapiNode\x18\x1e \x01(\v2\v.pb.APINodeR\aapiNodeB\x06Z\x04./pbb\x06proto3"
|
|
|
|
var (
|
|
file_models_model_api_method_stat_proto_rawDescOnce sync.Once
|
|
file_models_model_api_method_stat_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_models_model_api_method_stat_proto_rawDescGZIP() []byte {
|
|
file_models_model_api_method_stat_proto_rawDescOnce.Do(func() {
|
|
file_models_model_api_method_stat_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_models_model_api_method_stat_proto_rawDesc), len(file_models_model_api_method_stat_proto_rawDesc)))
|
|
})
|
|
return file_models_model_api_method_stat_proto_rawDescData
|
|
}
|
|
|
|
var file_models_model_api_method_stat_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
var file_models_model_api_method_stat_proto_goTypes = []any{
|
|
(*APIMethodStat)(nil), // 0: pb.APIMethodStat
|
|
(*APINode)(nil), // 1: pb.APINode
|
|
}
|
|
var file_models_model_api_method_stat_proto_depIdxs = []int32{
|
|
1, // 0: pb.APIMethodStat.apiNode:type_name -> pb.APINode
|
|
1, // [1:1] is the sub-list for method output_type
|
|
1, // [1:1] is the sub-list for method input_type
|
|
1, // [1:1] is the sub-list for extension type_name
|
|
1, // [1:1] is the sub-list for extension extendee
|
|
0, // [0:1] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_models_model_api_method_stat_proto_init() }
|
|
func file_models_model_api_method_stat_proto_init() {
|
|
if File_models_model_api_method_stat_proto != nil {
|
|
return
|
|
}
|
|
file_models_model_api_node_proto_init()
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_models_model_api_method_stat_proto_rawDesc), len(file_models_model_api_method_stat_proto_rawDesc)),
|
|
NumEnums: 0,
|
|
NumMessages: 1,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_models_model_api_method_stat_proto_goTypes,
|
|
DependencyIndexes: file_models_model_api_method_stat_proto_depIdxs,
|
|
MessageInfos: file_models_model_api_method_stat_proto_msgTypes,
|
|
}.Build()
|
|
File_models_model_api_method_stat_proto = out.File
|
|
file_models_model_api_method_stat_proto_goTypes = nil
|
|
file_models_model_api_method_stat_proto_depIdxs = nil
|
|
}
|