v1

package
v1.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 10, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var PCommandType_name = map[int32]string{
	0:   "NONE",
	100: "PING",
	101: "PONG",
	710: "ECHO",
	730: "ACTIVE_THREAD_COUNT",
	740: "ACTIVE_THREAD_DUMP",
	750: "ACTIVE_THREAD_LIGHT_DUMP",
}
View Source
var PCommandType_value = map[string]int32{
	"NONE":                     0,
	"PING":                     100,
	"PONG":                     101,
	"ECHO":                     710,
	"ACTIVE_THREAD_COUNT":      730,
	"ACTIVE_THREAD_DUMP":       740,
	"ACTIVE_THREAD_LIGHT_DUMP": 750,
}
View Source
var PJvmGcType_name = map[int32]string{
	0: "JVM_GC_TYPE_UNKNOWN",
	1: "JVM_GC_TYPE_SERIAL",
	2: "JVM_GC_TYPE_PARALLEL",
	3: "JVM_GC_TYPE_CMS",
	4: "JVM_GC_TYPE_G1",
}
View Source
var PJvmGcType_value = map[string]int32{
	"JVM_GC_TYPE_UNKNOWN":  0,
	"JVM_GC_TYPE_SERIAL":   1,
	"JVM_GC_TYPE_PARALLEL": 2,
	"JVM_GC_TYPE_CMS":      3,
	"JVM_GC_TYPE_G1":       4,
}
View Source
var PThreadDumpType_name = map[int32]string{
	0: "TARGET",
	1: "PENDING",
}
View Source
var PThreadDumpType_value = map[string]int32{
	"TARGET":  0,
	"PENDING": 1,
}
View Source
var PThreadState_name = map[int32]string{
	0: "THREAD_STATE_NEW",
	1: "THREAD_STATE_RUNNABLE",
	2: "THREAD_STATE_BLOCKED",
	3: "THREAD_STATE_WAITING",
	4: "THREAD_STATE_TIMED_WAITING",
	5: "THREAD_STATE_TERMINATED",
	6: "THREAD_STATE_UNKNOWN",
}
View Source
var PThreadState_value = map[string]int32{
	"THREAD_STATE_NEW":           0,
	"THREAD_STATE_RUNNABLE":      1,
	"THREAD_STATE_BLOCKED":       2,
	"THREAD_STATE_WAITING":       3,
	"THREAD_STATE_TIMED_WAITING": 4,
	"THREAD_STATE_TERMINATED":    5,
	"THREAD_STATE_UNKNOWN":       6,
}

Functions

func RegisterAgentServer

func RegisterAgentServer(s *grpc.Server, srv AgentServer)

func RegisterMetadataServer

func RegisterMetadataServer(s *grpc.Server, srv MetadataServer)

func RegisterProfilerCommandServiceServer

func RegisterProfilerCommandServiceServer(s *grpc.Server, srv ProfilerCommandServiceServer)

func RegisterSpanServer

func RegisterSpanServer(s *grpc.Server, srv SpanServer)

func RegisterStatServer

func RegisterStatServer(s *grpc.Server, srv StatServer)

Types

type AgentClient

type AgentClient interface {
	RequestAgentInfo(ctx context.Context, in *PAgentInfo, opts ...grpc.CallOption) (*PResult, error)
	PingSession(ctx context.Context, opts ...grpc.CallOption) (Agent_PingSessionClient, error)
}

AgentClient is the client API for Agent service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewAgentClient

func NewAgentClient(cc *grpc.ClientConn) AgentClient

type AgentServer

type AgentServer interface {
	RequestAgentInfo(context.Context, *PAgentInfo) (*PResult, error)
	PingSession(Agent_PingSessionServer) error
}

AgentServer is the server API for Agent service.

type Agent_PingSessionClient

type Agent_PingSessionClient interface {
	Send(*PPing) error
	Recv() (*PPing, error)
	grpc.ClientStream
}

type Agent_PingSessionServer

type Agent_PingSessionServer interface {
	Send(*PPing) error
	Recv() (*PPing, error)
	grpc.ServerStream
}

type MetadataClient

type MetadataClient interface {
	RequestSqlMetaData(ctx context.Context, in *PSqlMetaData, opts ...grpc.CallOption) (*PResult, error)
	RequestSqlUidMetaData(ctx context.Context, in *PSqlUidMetaData, opts ...grpc.CallOption) (*PResult, error)
	RequestApiMetaData(ctx context.Context, in *PApiMetaData, opts ...grpc.CallOption) (*PResult, error)
	RequestStringMetaData(ctx context.Context, in *PStringMetaData, opts ...grpc.CallOption) (*PResult, error)
	RequestExceptionMetaData(ctx context.Context, in *PExceptionMetaData, opts ...grpc.CallOption) (*PResult, error)
}

MetadataClient is the client API for Metadata service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMetadataClient

func NewMetadataClient(cc *grpc.ClientConn) MetadataClient

type MetadataServer

type MetadataServer interface {
	RequestSqlMetaData(context.Context, *PSqlMetaData) (*PResult, error)
	RequestSqlUidMetaData(context.Context, *PSqlUidMetaData) (*PResult, error)
	RequestApiMetaData(context.Context, *PApiMetaData) (*PResult, error)
	RequestStringMetaData(context.Context, *PStringMetaData) (*PResult, error)
	RequestExceptionMetaData(context.Context, *PExceptionMetaData) (*PResult, error)
}

MetadataServer is the server API for Metadata service.

type PAcceptEvent

type PAcceptEvent struct {
	Rpc                  string       `protobuf:"bytes,1,opt,name=rpc,proto3" json:"rpc,omitempty"`
	EndPoint             string       `protobuf:"bytes,2,opt,name=endPoint,proto3" json:"endPoint,omitempty"`
	RemoteAddr           string       `protobuf:"bytes,3,opt,name=remoteAddr,proto3" json:"remoteAddr,omitempty"`
	ParentInfo           *PParentInfo `protobuf:"bytes,4,opt,name=parentInfo,proto3" json:"parentInfo,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*PAcceptEvent) Descriptor

func (*PAcceptEvent) Descriptor() ([]byte, []int)

func (*PAcceptEvent) GetEndPoint

func (m *PAcceptEvent) GetEndPoint() string

func (*PAcceptEvent) GetParentInfo

func (m *PAcceptEvent) GetParentInfo() *PParentInfo

func (*PAcceptEvent) GetRemoteAddr

func (m *PAcceptEvent) GetRemoteAddr() string

func (*PAcceptEvent) GetRpc

func (m *PAcceptEvent) GetRpc() string

func (*PAcceptEvent) ProtoMessage

func (*PAcceptEvent) ProtoMessage()

func (*PAcceptEvent) Reset

func (m *PAcceptEvent) Reset()

func (*PAcceptEvent) String

func (m *PAcceptEvent) String() string

func (*PAcceptEvent) XXX_DiscardUnknown

func (m *PAcceptEvent) XXX_DiscardUnknown()

func (*PAcceptEvent) XXX_Marshal

func (m *PAcceptEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAcceptEvent) XXX_Merge

func (m *PAcceptEvent) XXX_Merge(src proto.Message)

func (*PAcceptEvent) XXX_Size

func (m *PAcceptEvent) XXX_Size() int

func (*PAcceptEvent) XXX_Unmarshal

func (m *PAcceptEvent) XXX_Unmarshal(b []byte) error

type PActiveThreadDump

type PActiveThreadDump struct {
	StartTime            int64        `protobuf:"varint,1,opt,name=startTime,proto3" json:"startTime,omitempty"`
	LocalTraceId         int64        `protobuf:"varint,2,opt,name=localTraceId,proto3" json:"localTraceId,omitempty"`
	ThreadDump           *PThreadDump `protobuf:"bytes,3,opt,name=threadDump,proto3" json:"threadDump,omitempty"`
	Sampled              bool         `protobuf:"varint,4,opt,name=sampled,proto3" json:"sampled,omitempty"`
	TransactionId        string       `protobuf:"bytes,5,opt,name=transactionId,proto3" json:"transactionId,omitempty"`
	EntryPoint           string       `protobuf:"bytes,6,opt,name=entryPoint,proto3" json:"entryPoint,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*PActiveThreadDump) Descriptor

func (*PActiveThreadDump) Descriptor() ([]byte, []int)

func (*PActiveThreadDump) GetEntryPoint

func (m *PActiveThreadDump) GetEntryPoint() string

func (*PActiveThreadDump) GetLocalTraceId

func (m *PActiveThreadDump) GetLocalTraceId() int64

func (*PActiveThreadDump) GetSampled

func (m *PActiveThreadDump) GetSampled() bool

func (*PActiveThreadDump) GetStartTime

func (m *PActiveThreadDump) GetStartTime() int64

func (*PActiveThreadDump) GetThreadDump

func (m *PActiveThreadDump) GetThreadDump() *PThreadDump

func (*PActiveThreadDump) GetTransactionId

func (m *PActiveThreadDump) GetTransactionId() string

func (*PActiveThreadDump) ProtoMessage

func (*PActiveThreadDump) ProtoMessage()

func (*PActiveThreadDump) Reset

func (m *PActiveThreadDump) Reset()

func (*PActiveThreadDump) String

func (m *PActiveThreadDump) String() string

func (*PActiveThreadDump) XXX_DiscardUnknown

func (m *PActiveThreadDump) XXX_DiscardUnknown()

func (*PActiveThreadDump) XXX_Marshal

func (m *PActiveThreadDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PActiveThreadDump) XXX_Merge

func (m *PActiveThreadDump) XXX_Merge(src proto.Message)

func (*PActiveThreadDump) XXX_Size

func (m *PActiveThreadDump) XXX_Size() int

func (*PActiveThreadDump) XXX_Unmarshal

func (m *PActiveThreadDump) XXX_Unmarshal(b []byte) error

type PActiveThreadLightDump

type PActiveThreadLightDump struct {
	StartTime            int64             `protobuf:"varint,1,opt,name=startTime,proto3" json:"startTime,omitempty"`
	LocalTraceId         int64             `protobuf:"varint,2,opt,name=localTraceId,proto3" json:"localTraceId,omitempty"`
	ThreadDump           *PThreadLightDump `protobuf:"bytes,3,opt,name=threadDump,proto3" json:"threadDump,omitempty"`
	Sampled              bool              `protobuf:"varint,4,opt,name=sampled,proto3" json:"sampled,omitempty"`
	TransactionId        string            `protobuf:"bytes,5,opt,name=transactionId,proto3" json:"transactionId,omitempty"`
	EntryPoint           string            `protobuf:"bytes,6,opt,name=entryPoint,proto3" json:"entryPoint,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PActiveThreadLightDump) Descriptor

func (*PActiveThreadLightDump) Descriptor() ([]byte, []int)

func (*PActiveThreadLightDump) GetEntryPoint

func (m *PActiveThreadLightDump) GetEntryPoint() string

func (*PActiveThreadLightDump) GetLocalTraceId

func (m *PActiveThreadLightDump) GetLocalTraceId() int64

func (*PActiveThreadLightDump) GetSampled

func (m *PActiveThreadLightDump) GetSampled() bool

func (*PActiveThreadLightDump) GetStartTime

func (m *PActiveThreadLightDump) GetStartTime() int64

func (*PActiveThreadLightDump) GetThreadDump

func (m *PActiveThreadLightDump) GetThreadDump() *PThreadLightDump

func (*PActiveThreadLightDump) GetTransactionId

func (m *PActiveThreadLightDump) GetTransactionId() string

func (*PActiveThreadLightDump) ProtoMessage

func (*PActiveThreadLightDump) ProtoMessage()

func (*PActiveThreadLightDump) Reset

func (m *PActiveThreadLightDump) Reset()

func (*PActiveThreadLightDump) String

func (m *PActiveThreadLightDump) String() string

func (*PActiveThreadLightDump) XXX_DiscardUnknown

func (m *PActiveThreadLightDump) XXX_DiscardUnknown()

func (*PActiveThreadLightDump) XXX_Marshal

func (m *PActiveThreadLightDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PActiveThreadLightDump) XXX_Merge

func (m *PActiveThreadLightDump) XXX_Merge(src proto.Message)

func (*PActiveThreadLightDump) XXX_Size

func (m *PActiveThreadLightDump) XXX_Size() int

func (*PActiveThreadLightDump) XXX_Unmarshal

func (m *PActiveThreadLightDump) XXX_Unmarshal(b []byte) error

type PActiveTrace

type PActiveTrace struct {
	Histogram            *PActiveTraceHistogram `protobuf:"bytes,1,opt,name=histogram,proto3" json:"histogram,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (*PActiveTrace) Descriptor

func (*PActiveTrace) Descriptor() ([]byte, []int)

func (*PActiveTrace) GetHistogram

func (m *PActiveTrace) GetHistogram() *PActiveTraceHistogram

func (*PActiveTrace) ProtoMessage

func (*PActiveTrace) ProtoMessage()

func (*PActiveTrace) Reset

func (m *PActiveTrace) Reset()

func (*PActiveTrace) String

func (m *PActiveTrace) String() string

func (*PActiveTrace) XXX_DiscardUnknown

func (m *PActiveTrace) XXX_DiscardUnknown()

func (*PActiveTrace) XXX_Marshal

func (m *PActiveTrace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PActiveTrace) XXX_Merge

func (m *PActiveTrace) XXX_Merge(src proto.Message)

func (*PActiveTrace) XXX_Size

func (m *PActiveTrace) XXX_Size() int

func (*PActiveTrace) XXX_Unmarshal

func (m *PActiveTrace) XXX_Unmarshal(b []byte) error

type PActiveTraceHistogram

type PActiveTraceHistogram struct {
	Version              int32    `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	HistogramSchemaType  int32    `protobuf:"varint,2,opt,name=histogramSchemaType,proto3" json:"histogramSchemaType,omitempty"`
	ActiveTraceCount     []int32  `protobuf:"varint,3,rep,packed,name=activeTraceCount,proto3" json:"activeTraceCount,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PActiveTraceHistogram) Descriptor

func (*PActiveTraceHistogram) Descriptor() ([]byte, []int)

func (*PActiveTraceHistogram) GetActiveTraceCount

func (m *PActiveTraceHistogram) GetActiveTraceCount() []int32

func (*PActiveTraceHistogram) GetHistogramSchemaType

func (m *PActiveTraceHistogram) GetHistogramSchemaType() int32

func (*PActiveTraceHistogram) GetVersion

func (m *PActiveTraceHistogram) GetVersion() int32

func (*PActiveTraceHistogram) ProtoMessage

func (*PActiveTraceHistogram) ProtoMessage()

func (*PActiveTraceHistogram) Reset

func (m *PActiveTraceHistogram) Reset()

func (*PActiveTraceHistogram) String

func (m *PActiveTraceHistogram) String() string

func (*PActiveTraceHistogram) XXX_DiscardUnknown

func (m *PActiveTraceHistogram) XXX_DiscardUnknown()

func (*PActiveTraceHistogram) XXX_Marshal

func (m *PActiveTraceHistogram) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PActiveTraceHistogram) XXX_Merge

func (m *PActiveTraceHistogram) XXX_Merge(src proto.Message)

func (*PActiveTraceHistogram) XXX_Size

func (m *PActiveTraceHistogram) XXX_Size() int

func (*PActiveTraceHistogram) XXX_Unmarshal

func (m *PActiveTraceHistogram) XXX_Unmarshal(b []byte) error

type PAgentInfo

type PAgentInfo struct {
	Hostname             string           `protobuf:"bytes,1,opt,name=hostname,proto3" json:"hostname,omitempty"`
	Ip                   string           `protobuf:"bytes,2,opt,name=ip,proto3" json:"ip,omitempty"`
	Ports                string           `protobuf:"bytes,3,opt,name=ports,proto3" json:"ports,omitempty"`
	ServiceType          int32            `protobuf:"varint,4,opt,name=serviceType,proto3" json:"serviceType,omitempty"`
	Pid                  int32            `protobuf:"varint,5,opt,name=pid,proto3" json:"pid,omitempty"`
	AgentVersion         string           `protobuf:"bytes,6,opt,name=agentVersion,proto3" json:"agentVersion,omitempty"`
	VmVersion            string           `protobuf:"bytes,7,opt,name=vmVersion,proto3" json:"vmVersion,omitempty"`
	EndTimestamp         int64            `protobuf:"varint,8,opt,name=endTimestamp,proto3" json:"endTimestamp,omitempty"`
	EndStatus            int32            `protobuf:"varint,9,opt,name=endStatus,proto3" json:"endStatus,omitempty"`
	ServerMetaData       *PServerMetaData `protobuf:"bytes,10,opt,name=serverMetaData,proto3" json:"serverMetaData,omitempty"`
	JvmInfo              *PJvmInfo        `protobuf:"bytes,11,opt,name=jvmInfo,proto3" json:"jvmInfo,omitempty"`
	Container            bool             `protobuf:"varint,12,opt,name=container,proto3" json:"container,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*PAgentInfo) Descriptor

func (*PAgentInfo) Descriptor() ([]byte, []int)

func (*PAgentInfo) GetAgentVersion

func (m *PAgentInfo) GetAgentVersion() string

func (*PAgentInfo) GetContainer

func (m *PAgentInfo) GetContainer() bool

func (*PAgentInfo) GetEndStatus

func (m *PAgentInfo) GetEndStatus() int32

func (*PAgentInfo) GetEndTimestamp

func (m *PAgentInfo) GetEndTimestamp() int64

func (*PAgentInfo) GetHostname

func (m *PAgentInfo) GetHostname() string

func (*PAgentInfo) GetIp

func (m *PAgentInfo) GetIp() string

func (*PAgentInfo) GetJvmInfo

func (m *PAgentInfo) GetJvmInfo() *PJvmInfo

func (*PAgentInfo) GetPid

func (m *PAgentInfo) GetPid() int32

func (*PAgentInfo) GetPorts

func (m *PAgentInfo) GetPorts() string

func (*PAgentInfo) GetServerMetaData

func (m *PAgentInfo) GetServerMetaData() *PServerMetaData

func (*PAgentInfo) GetServiceType

func (m *PAgentInfo) GetServiceType() int32

func (*PAgentInfo) GetVmVersion

func (m *PAgentInfo) GetVmVersion() string

func (*PAgentInfo) ProtoMessage

func (*PAgentInfo) ProtoMessage()

func (*PAgentInfo) Reset

func (m *PAgentInfo) Reset()

func (*PAgentInfo) String

func (m *PAgentInfo) String() string

func (*PAgentInfo) XXX_DiscardUnknown

func (m *PAgentInfo) XXX_DiscardUnknown()

func (*PAgentInfo) XXX_Marshal

func (m *PAgentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAgentInfo) XXX_Merge

func (m *PAgentInfo) XXX_Merge(src proto.Message)

func (*PAgentInfo) XXX_Size

func (m *PAgentInfo) XXX_Size() int

func (*PAgentInfo) XXX_Unmarshal

func (m *PAgentInfo) XXX_Unmarshal(b []byte) error

type PAgentStat

type PAgentStat struct {
	Timestamp            int64            `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	CollectInterval      int64            `protobuf:"varint,2,opt,name=collectInterval,proto3" json:"collectInterval,omitempty"`
	Gc                   *PJvmGc          `protobuf:"bytes,3,opt,name=gc,proto3" json:"gc,omitempty"`
	CpuLoad              *PCpuLoad        `protobuf:"bytes,4,opt,name=cpuLoad,proto3" json:"cpuLoad,omitempty"`
	Transaction          *PTransaction    `protobuf:"bytes,5,opt,name=transaction,proto3" json:"transaction,omitempty"`
	ActiveTrace          *PActiveTrace    `protobuf:"bytes,6,opt,name=activeTrace,proto3" json:"activeTrace,omitempty"`
	DataSourceList       *PDataSourceList `protobuf:"bytes,7,opt,name=dataSourceList,proto3" json:"dataSourceList,omitempty"`
	ResponseTime         *PResponseTime   `protobuf:"bytes,8,opt,name=responseTime,proto3" json:"responseTime,omitempty"`
	Deadlock             *PDeadlock       `protobuf:"bytes,9,opt,name=deadlock,proto3" json:"deadlock,omitempty"`
	FileDescriptor       *PFileDescriptor `protobuf:"bytes,10,opt,name=fileDescriptor,proto3" json:"fileDescriptor,omitempty"`
	DirectBuffer         *PDirectBuffer   `protobuf:"bytes,11,opt,name=directBuffer,proto3" json:"directBuffer,omitempty"`
	Metadata             string           `protobuf:"bytes,12,opt,name=metadata,proto3" json:"metadata,omitempty"`
	TotalThread          *PTotalThread    `protobuf:"bytes,13,opt,name=totalThread,proto3" json:"totalThread,omitempty"`
	LoadedClass          *PLoadedClass    `protobuf:"bytes,14,opt,name=loadedClass,proto3" json:"loadedClass,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*PAgentStat) Descriptor

func (*PAgentStat) Descriptor() ([]byte, []int)

func (*PAgentStat) GetActiveTrace

func (m *PAgentStat) GetActiveTrace() *PActiveTrace

func (*PAgentStat) GetCollectInterval

func (m *PAgentStat) GetCollectInterval() int64

func (*PAgentStat) GetCpuLoad

func (m *PAgentStat) GetCpuLoad() *PCpuLoad

func (*PAgentStat) GetDataSourceList

func (m *PAgentStat) GetDataSourceList() *PDataSourceList

func (*PAgentStat) GetDeadlock

func (m *PAgentStat) GetDeadlock() *PDeadlock

func (*PAgentStat) GetDirectBuffer

func (m *PAgentStat) GetDirectBuffer() *PDirectBuffer

func (*PAgentStat) GetFileDescriptor

func (m *PAgentStat) GetFileDescriptor() *PFileDescriptor

func (*PAgentStat) GetGc

func (m *PAgentStat) GetGc() *PJvmGc

func (*PAgentStat) GetLoadedClass added in v1.0.0

func (m *PAgentStat) GetLoadedClass() *PLoadedClass

func (*PAgentStat) GetMetadata

func (m *PAgentStat) GetMetadata() string

func (*PAgentStat) GetResponseTime

func (m *PAgentStat) GetResponseTime() *PResponseTime

func (*PAgentStat) GetTimestamp

func (m *PAgentStat) GetTimestamp() int64

func (*PAgentStat) GetTotalThread added in v1.0.0

func (m *PAgentStat) GetTotalThread() *PTotalThread

func (*PAgentStat) GetTransaction

func (m *PAgentStat) GetTransaction() *PTransaction

func (*PAgentStat) ProtoMessage

func (*PAgentStat) ProtoMessage()

func (*PAgentStat) Reset

func (m *PAgentStat) Reset()

func (*PAgentStat) String

func (m *PAgentStat) String() string

func (*PAgentStat) XXX_DiscardUnknown

func (m *PAgentStat) XXX_DiscardUnknown()

func (*PAgentStat) XXX_Marshal

func (m *PAgentStat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAgentStat) XXX_Merge

func (m *PAgentStat) XXX_Merge(src proto.Message)

func (*PAgentStat) XXX_Size

func (m *PAgentStat) XXX_Size() int

func (*PAgentStat) XXX_Unmarshal

func (m *PAgentStat) XXX_Unmarshal(b []byte) error

type PAgentStatBatch

type PAgentStatBatch struct {
	AgentStat            []*PAgentStat `protobuf:"bytes,1,rep,name=agentStat,proto3" json:"agentStat,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*PAgentStatBatch) Descriptor

func (*PAgentStatBatch) Descriptor() ([]byte, []int)

func (*PAgentStatBatch) GetAgentStat

func (m *PAgentStatBatch) GetAgentStat() []*PAgentStat

func (*PAgentStatBatch) ProtoMessage

func (*PAgentStatBatch) ProtoMessage()

func (*PAgentStatBatch) Reset

func (m *PAgentStatBatch) Reset()

func (*PAgentStatBatch) String

func (m *PAgentStatBatch) String() string

func (*PAgentStatBatch) XXX_DiscardUnknown

func (m *PAgentStatBatch) XXX_DiscardUnknown()

func (*PAgentStatBatch) XXX_Marshal

func (m *PAgentStatBatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAgentStatBatch) XXX_Merge

func (m *PAgentStatBatch) XXX_Merge(src proto.Message)

func (*PAgentStatBatch) XXX_Size

func (m *PAgentStatBatch) XXX_Size() int

func (*PAgentStatBatch) XXX_Unmarshal

func (m *PAgentStatBatch) XXX_Unmarshal(b []byte) error

type PAgentUriStat added in v1.0.0

type PAgentUriStat struct {
	BucketVersion        int32           `protobuf:"varint,1,opt,name=bucketVersion,proto3" json:"bucketVersion,omitempty"`
	EachUriStat          []*PEachUriStat `protobuf:"bytes,2,rep,name=eachUriStat,proto3" json:"eachUriStat,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PAgentUriStat) Descriptor added in v1.0.0

func (*PAgentUriStat) Descriptor() ([]byte, []int)

func (*PAgentUriStat) GetBucketVersion added in v1.0.0

func (m *PAgentUriStat) GetBucketVersion() int32

func (*PAgentUriStat) GetEachUriStat added in v1.0.0

func (m *PAgentUriStat) GetEachUriStat() []*PEachUriStat

func (*PAgentUriStat) ProtoMessage added in v1.0.0

func (*PAgentUriStat) ProtoMessage()

func (*PAgentUriStat) Reset added in v1.0.0

func (m *PAgentUriStat) Reset()

func (*PAgentUriStat) String added in v1.0.0

func (m *PAgentUriStat) String() string

func (*PAgentUriStat) XXX_DiscardUnknown added in v1.2.0

func (m *PAgentUriStat) XXX_DiscardUnknown()

func (*PAgentUriStat) XXX_Marshal added in v1.2.0

func (m *PAgentUriStat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAgentUriStat) XXX_Merge added in v1.2.0

func (m *PAgentUriStat) XXX_Merge(src proto.Message)

func (*PAgentUriStat) XXX_Size added in v1.2.0

func (m *PAgentUriStat) XXX_Size() int

func (*PAgentUriStat) XXX_Unmarshal added in v1.2.0

func (m *PAgentUriStat) XXX_Unmarshal(b []byte) error

type PAnnotation

type PAnnotation struct {
	Key                  int32             `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
	Value                *PAnnotationValue `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PAnnotation) Descriptor

func (*PAnnotation) Descriptor() ([]byte, []int)

func (*PAnnotation) GetKey

func (m *PAnnotation) GetKey() int32

func (*PAnnotation) GetValue

func (m *PAnnotation) GetValue() *PAnnotationValue

func (*PAnnotation) ProtoMessage

func (*PAnnotation) ProtoMessage()

func (*PAnnotation) Reset

func (m *PAnnotation) Reset()

func (*PAnnotation) String

func (m *PAnnotation) String() string

func (*PAnnotation) XXX_DiscardUnknown

func (m *PAnnotation) XXX_DiscardUnknown()

func (*PAnnotation) XXX_Marshal

func (m *PAnnotation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAnnotation) XXX_Merge

func (m *PAnnotation) XXX_Merge(src proto.Message)

func (*PAnnotation) XXX_Size

func (m *PAnnotation) XXX_Size() int

func (*PAnnotation) XXX_Unmarshal

func (m *PAnnotation) XXX_Unmarshal(b []byte) error

type PAnnotationValue

type PAnnotationValue struct {
	// Types that are valid to be assigned to Field:
	//	*PAnnotationValue_StringValue
	//	*PAnnotationValue_BoolValue
	//	*PAnnotationValue_IntValue
	//	*PAnnotationValue_LongValue
	//	*PAnnotationValue_ShortValue
	//	*PAnnotationValue_DoubleValue
	//	*PAnnotationValue_BinaryValue
	//	*PAnnotationValue_ByteValue
	//	*PAnnotationValue_IntStringValue
	//	*PAnnotationValue_StringStringValue
	//	*PAnnotationValue_IntStringStringValue
	//	*PAnnotationValue_LongIntIntByteByteStringValue
	//	*PAnnotationValue_IntBooleanIntBooleanValue
	//	*PAnnotationValue_BytesStringStringValue
	Field                isPAnnotationValue_Field `protobuf_oneof:"field"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*PAnnotationValue) Descriptor

func (*PAnnotationValue) Descriptor() ([]byte, []int)

func (*PAnnotationValue) GetBinaryValue

func (m *PAnnotationValue) GetBinaryValue() []byte

func (*PAnnotationValue) GetBoolValue

func (m *PAnnotationValue) GetBoolValue() bool

func (*PAnnotationValue) GetByteValue

func (m *PAnnotationValue) GetByteValue() int32

func (*PAnnotationValue) GetBytesStringStringValue added in v1.4.0

func (m *PAnnotationValue) GetBytesStringStringValue() *PBytesStringStringValue

func (*PAnnotationValue) GetDoubleValue

func (m *PAnnotationValue) GetDoubleValue() float64

func (*PAnnotationValue) GetField

func (m *PAnnotationValue) GetField() isPAnnotationValue_Field

func (*PAnnotationValue) GetIntBooleanIntBooleanValue

func (m *PAnnotationValue) GetIntBooleanIntBooleanValue() *PIntBooleanIntBooleanValue

func (*PAnnotationValue) GetIntStringStringValue

func (m *PAnnotationValue) GetIntStringStringValue() *PIntStringStringValue

func (*PAnnotationValue) GetIntStringValue

func (m *PAnnotationValue) GetIntStringValue() *PIntStringValue

func (*PAnnotationValue) GetIntValue

func (m *PAnnotationValue) GetIntValue() int32

func (*PAnnotationValue) GetLongIntIntByteByteStringValue

func (m *PAnnotationValue) GetLongIntIntByteByteStringValue() *PLongIntIntByteByteStringValue

func (*PAnnotationValue) GetLongValue

func (m *PAnnotationValue) GetLongValue() int64

func (*PAnnotationValue) GetShortValue

func (m *PAnnotationValue) GetShortValue() int32

func (*PAnnotationValue) GetStringStringValue

func (m *PAnnotationValue) GetStringStringValue() *PStringStringValue

func (*PAnnotationValue) GetStringValue

func (m *PAnnotationValue) GetStringValue() string

func (*PAnnotationValue) ProtoMessage

func (*PAnnotationValue) ProtoMessage()

func (*PAnnotationValue) Reset

func (m *PAnnotationValue) Reset()

func (*PAnnotationValue) String

func (m *PAnnotationValue) String() string

func (*PAnnotationValue) XXX_DiscardUnknown

func (m *PAnnotationValue) XXX_DiscardUnknown()

func (*PAnnotationValue) XXX_Marshal

func (m *PAnnotationValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PAnnotationValue) XXX_Merge

func (m *PAnnotationValue) XXX_Merge(src proto.Message)

func (*PAnnotationValue) XXX_OneofWrappers

func (*PAnnotationValue) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PAnnotationValue) XXX_Size

func (m *PAnnotationValue) XXX_Size() int

func (*PAnnotationValue) XXX_Unmarshal

func (m *PAnnotationValue) XXX_Unmarshal(b []byte) error

type PAnnotationValue_BinaryValue

type PAnnotationValue_BinaryValue struct {
	BinaryValue []byte `protobuf:"bytes,7,opt,name=binaryValue,proto3,oneof"`
}

type PAnnotationValue_BoolValue

type PAnnotationValue_BoolValue struct {
	BoolValue bool `protobuf:"varint,2,opt,name=boolValue,proto3,oneof"`
}

type PAnnotationValue_ByteValue

type PAnnotationValue_ByteValue struct {
	ByteValue int32 `protobuf:"zigzag32,8,opt,name=byteValue,proto3,oneof"`
}

type PAnnotationValue_BytesStringStringValue added in v1.4.0

type PAnnotationValue_BytesStringStringValue struct {
	BytesStringStringValue *PBytesStringStringValue `protobuf:"bytes,14,opt,name=bytesStringStringValue,proto3,oneof"`
}

type PAnnotationValue_DoubleValue

type PAnnotationValue_DoubleValue struct {
	DoubleValue float64 `protobuf:"fixed64,6,opt,name=doubleValue,proto3,oneof"`
}

type PAnnotationValue_IntBooleanIntBooleanValue

type PAnnotationValue_IntBooleanIntBooleanValue struct {
	IntBooleanIntBooleanValue *PIntBooleanIntBooleanValue `protobuf:"bytes,13,opt,name=intBooleanIntBooleanValue,proto3,oneof"`
}

type PAnnotationValue_IntStringStringValue

type PAnnotationValue_IntStringStringValue struct {
	IntStringStringValue *PIntStringStringValue `protobuf:"bytes,11,opt,name=intStringStringValue,proto3,oneof"`
}

type PAnnotationValue_IntStringValue

type PAnnotationValue_IntStringValue struct {
	IntStringValue *PIntStringValue `protobuf:"bytes,9,opt,name=intStringValue,proto3,oneof"`
}

type PAnnotationValue_IntValue

type PAnnotationValue_IntValue struct {
	IntValue int32 `protobuf:"varint,3,opt,name=intValue,proto3,oneof"`
}

type PAnnotationValue_LongIntIntByteByteStringValue

type PAnnotationValue_LongIntIntByteByteStringValue struct {
	LongIntIntByteByteStringValue *PLongIntIntByteByteStringValue `protobuf:"bytes,12,opt,name=longIntIntByteByteStringValue,proto3,oneof"`
}

type PAnnotationValue_LongValue

type PAnnotationValue_LongValue struct {
	LongValue int64 `protobuf:"varint,4,opt,name=longValue,proto3,oneof"`
}

type PAnnotationValue_ShortValue

type PAnnotationValue_ShortValue struct {
	ShortValue int32 `protobuf:"zigzag32,5,opt,name=shortValue,proto3,oneof"`
}

type PAnnotationValue_StringStringValue

type PAnnotationValue_StringStringValue struct {
	StringStringValue *PStringStringValue `protobuf:"bytes,10,opt,name=stringStringValue,proto3,oneof"`
}

type PAnnotationValue_StringValue

type PAnnotationValue_StringValue struct {
	StringValue string `protobuf:"bytes,1,opt,name=stringValue,proto3,oneof"`
}

type PApiMetaData

type PApiMetaData struct {
	ApiId                int32    `protobuf:"varint,1,opt,name=apiId,proto3" json:"apiId,omitempty"`
	ApiInfo              string   `protobuf:"bytes,2,opt,name=apiInfo,proto3" json:"apiInfo,omitempty"`
	Line                 int32    `protobuf:"varint,3,opt,name=line,proto3" json:"line,omitempty"`
	Type                 int32    `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty"`
	Location             string   `protobuf:"bytes,5,opt,name=location,proto3" json:"location,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PApiMetaData) Descriptor

func (*PApiMetaData) Descriptor() ([]byte, []int)

func (*PApiMetaData) GetApiId

func (m *PApiMetaData) GetApiId() int32

func (*PApiMetaData) GetApiInfo

func (m *PApiMetaData) GetApiInfo() string

func (*PApiMetaData) GetLine

func (m *PApiMetaData) GetLine() int32

func (*PApiMetaData) GetLocation added in v1.0.0

func (m *PApiMetaData) GetLocation() string

func (*PApiMetaData) GetType

func (m *PApiMetaData) GetType() int32

func (*PApiMetaData) ProtoMessage

func (*PApiMetaData) ProtoMessage()

func (*PApiMetaData) Reset

func (m *PApiMetaData) Reset()

func (*PApiMetaData) String

func (m *PApiMetaData) String() string

func (*PApiMetaData) XXX_DiscardUnknown

func (m *PApiMetaData) XXX_DiscardUnknown()

func (*PApiMetaData) XXX_Marshal

func (m *PApiMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PApiMetaData) XXX_Merge

func (m *PApiMetaData) XXX_Merge(src proto.Message)

func (*PApiMetaData) XXX_Size

func (m *PApiMetaData) XXX_Size() int

func (*PApiMetaData) XXX_Unmarshal

func (m *PApiMetaData) XXX_Unmarshal(b []byte) error

type PBytesStringStringValue added in v1.4.0

type PBytesStringStringValue struct {
	BytesValue           []byte                  `protobuf:"bytes,1,opt,name=bytesValue,proto3" json:"bytesValue,omitempty"`
	StringValue1         *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=stringValue1,proto3" json:"stringValue1,omitempty"`
	StringValue2         *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=stringValue2,proto3" json:"stringValue2,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PBytesStringStringValue) Descriptor added in v1.4.0

func (*PBytesStringStringValue) Descriptor() ([]byte, []int)

func (*PBytesStringStringValue) GetBytesValue added in v1.4.0

func (m *PBytesStringStringValue) GetBytesValue() []byte

func (*PBytesStringStringValue) GetStringValue1 added in v1.4.0

func (m *PBytesStringStringValue) GetStringValue1() *wrapperspb.StringValue

func (*PBytesStringStringValue) GetStringValue2 added in v1.4.0

func (m *PBytesStringStringValue) GetStringValue2() *wrapperspb.StringValue

func (*PBytesStringStringValue) ProtoMessage added in v1.4.0

func (*PBytesStringStringValue) ProtoMessage()

func (*PBytesStringStringValue) Reset added in v1.4.0

func (m *PBytesStringStringValue) Reset()

func (*PBytesStringStringValue) String added in v1.4.0

func (m *PBytesStringStringValue) String() string

func (*PBytesStringStringValue) XXX_DiscardUnknown added in v1.4.0

func (m *PBytesStringStringValue) XXX_DiscardUnknown()

func (*PBytesStringStringValue) XXX_Marshal added in v1.4.0

func (m *PBytesStringStringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PBytesStringStringValue) XXX_Merge added in v1.4.0

func (m *PBytesStringStringValue) XXX_Merge(src proto.Message)

func (*PBytesStringStringValue) XXX_Size added in v1.4.0

func (m *PBytesStringStringValue) XXX_Size() int

func (*PBytesStringStringValue) XXX_Unmarshal added in v1.4.0

func (m *PBytesStringStringValue) XXX_Unmarshal(b []byte) error

type PCmdActiveThreadCount

type PCmdActiveThreadCount struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PCmdActiveThreadCount) Descriptor

func (*PCmdActiveThreadCount) Descriptor() ([]byte, []int)

func (*PCmdActiveThreadCount) ProtoMessage

func (*PCmdActiveThreadCount) ProtoMessage()

func (*PCmdActiveThreadCount) Reset

func (m *PCmdActiveThreadCount) Reset()

func (*PCmdActiveThreadCount) String

func (m *PCmdActiveThreadCount) String() string

func (*PCmdActiveThreadCount) XXX_DiscardUnknown

func (m *PCmdActiveThreadCount) XXX_DiscardUnknown()

func (*PCmdActiveThreadCount) XXX_Marshal

func (m *PCmdActiveThreadCount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdActiveThreadCount) XXX_Merge

func (m *PCmdActiveThreadCount) XXX_Merge(src proto.Message)

func (*PCmdActiveThreadCount) XXX_Size

func (m *PCmdActiveThreadCount) XXX_Size() int

func (*PCmdActiveThreadCount) XXX_Unmarshal

func (m *PCmdActiveThreadCount) XXX_Unmarshal(b []byte) error

type PCmdActiveThreadCountRes

type PCmdActiveThreadCountRes struct {
	CommonStreamResponse *PCmdStreamResponse `protobuf:"bytes,1,opt,name=commonStreamResponse,proto3" json:"commonStreamResponse,omitempty"`
	HistogramSchemaType  int32               `protobuf:"varint,2,opt,name=histogramSchemaType,proto3" json:"histogramSchemaType,omitempty"`
	ActiveThreadCount    []int32             `protobuf:"varint,3,rep,packed,name=activeThreadCount,proto3" json:"activeThreadCount,omitempty"`
	TimeStamp            int64               `protobuf:"varint,4,opt,name=timeStamp,proto3" json:"timeStamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*PCmdActiveThreadCountRes) Descriptor

func (*PCmdActiveThreadCountRes) Descriptor() ([]byte, []int)

func (*PCmdActiveThreadCountRes) GetActiveThreadCount

func (m *PCmdActiveThreadCountRes) GetActiveThreadCount() []int32

func (*PCmdActiveThreadCountRes) GetCommonStreamResponse

func (m *PCmdActiveThreadCountRes) GetCommonStreamResponse() *PCmdStreamResponse

func (*PCmdActiveThreadCountRes) GetHistogramSchemaType

func (m *PCmdActiveThreadCountRes) GetHistogramSchemaType() int32

func (*PCmdActiveThreadCountRes) GetTimeStamp

func (m *PCmdActiveThreadCountRes) GetTimeStamp() int64

func (*PCmdActiveThreadCountRes) ProtoMessage

func (*PCmdActiveThreadCountRes) ProtoMessage()

func (*PCmdActiveThreadCountRes) Reset

func (m *PCmdActiveThreadCountRes) Reset()

func (*PCmdActiveThreadCountRes) String

func (m *PCmdActiveThreadCountRes) String() string

func (*PCmdActiveThreadCountRes) XXX_DiscardUnknown

func (m *PCmdActiveThreadCountRes) XXX_DiscardUnknown()

func (*PCmdActiveThreadCountRes) XXX_Marshal

func (m *PCmdActiveThreadCountRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdActiveThreadCountRes) XXX_Merge

func (m *PCmdActiveThreadCountRes) XXX_Merge(src proto.Message)

func (*PCmdActiveThreadCountRes) XXX_Size

func (m *PCmdActiveThreadCountRes) XXX_Size() int

func (*PCmdActiveThreadCountRes) XXX_Unmarshal

func (m *PCmdActiveThreadCountRes) XXX_Unmarshal(b []byte) error

type PCmdActiveThreadDump

type PCmdActiveThreadDump struct {
	Limit                int32    `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	ThreadName           []string `protobuf:"bytes,2,rep,name=threadName,proto3" json:"threadName,omitempty"`
	LocalTraceId         []int64  `protobuf:"varint,3,rep,packed,name=localTraceId,proto3" json:"localTraceId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PCmdActiveThreadDump) Descriptor

func (*PCmdActiveThreadDump) Descriptor() ([]byte, []int)

func (*PCmdActiveThreadDump) GetLimit

func (m *PCmdActiveThreadDump) GetLimit() int32

func (*PCmdActiveThreadDump) GetLocalTraceId

func (m *PCmdActiveThreadDump) GetLocalTraceId() []int64

func (*PCmdActiveThreadDump) GetThreadName

func (m *PCmdActiveThreadDump) GetThreadName() []string

func (*PCmdActiveThreadDump) ProtoMessage

func (*PCmdActiveThreadDump) ProtoMessage()

func (*PCmdActiveThreadDump) Reset

func (m *PCmdActiveThreadDump) Reset()

func (*PCmdActiveThreadDump) String

func (m *PCmdActiveThreadDump) String() string

func (*PCmdActiveThreadDump) XXX_DiscardUnknown

func (m *PCmdActiveThreadDump) XXX_DiscardUnknown()

func (*PCmdActiveThreadDump) XXX_Marshal

func (m *PCmdActiveThreadDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdActiveThreadDump) XXX_Merge

func (m *PCmdActiveThreadDump) XXX_Merge(src proto.Message)

func (*PCmdActiveThreadDump) XXX_Size

func (m *PCmdActiveThreadDump) XXX_Size() int

func (*PCmdActiveThreadDump) XXX_Unmarshal

func (m *PCmdActiveThreadDump) XXX_Unmarshal(b []byte) error

type PCmdActiveThreadDumpRes

type PCmdActiveThreadDumpRes struct {
	CommonResponse       *PCmdResponse        `protobuf:"bytes,1,opt,name=commonResponse,proto3" json:"commonResponse,omitempty"`
	ThreadDump           []*PActiveThreadDump `protobuf:"bytes,2,rep,name=threadDump,proto3" json:"threadDump,omitempty"`
	Type                 string               `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	SubType              string               `protobuf:"bytes,4,opt,name=subType,proto3" json:"subType,omitempty"`
	Version              string               `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PCmdActiveThreadDumpRes) Descriptor

func (*PCmdActiveThreadDumpRes) Descriptor() ([]byte, []int)

func (*PCmdActiveThreadDumpRes) GetCommonResponse

func (m *PCmdActiveThreadDumpRes) GetCommonResponse() *PCmdResponse

func (*PCmdActiveThreadDumpRes) GetSubType

func (m *PCmdActiveThreadDumpRes) GetSubType() string

func (*PCmdActiveThreadDumpRes) GetThreadDump

func (m *PCmdActiveThreadDumpRes) GetThreadDump() []*PActiveThreadDump

func (*PCmdActiveThreadDumpRes) GetType

func (m *PCmdActiveThreadDumpRes) GetType() string

func (*PCmdActiveThreadDumpRes) GetVersion

func (m *PCmdActiveThreadDumpRes) GetVersion() string

func (*PCmdActiveThreadDumpRes) ProtoMessage

func (*PCmdActiveThreadDumpRes) ProtoMessage()

func (*PCmdActiveThreadDumpRes) Reset

func (m *PCmdActiveThreadDumpRes) Reset()

func (*PCmdActiveThreadDumpRes) String

func (m *PCmdActiveThreadDumpRes) String() string

func (*PCmdActiveThreadDumpRes) XXX_DiscardUnknown

func (m *PCmdActiveThreadDumpRes) XXX_DiscardUnknown()

func (*PCmdActiveThreadDumpRes) XXX_Marshal

func (m *PCmdActiveThreadDumpRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdActiveThreadDumpRes) XXX_Merge

func (m *PCmdActiveThreadDumpRes) XXX_Merge(src proto.Message)

func (*PCmdActiveThreadDumpRes) XXX_Size

func (m *PCmdActiveThreadDumpRes) XXX_Size() int

func (*PCmdActiveThreadDumpRes) XXX_Unmarshal

func (m *PCmdActiveThreadDumpRes) XXX_Unmarshal(b []byte) error

type PCmdActiveThreadLightDump

type PCmdActiveThreadLightDump struct {
	Limit                int32    `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	ThreadName           []string `protobuf:"bytes,2,rep,name=threadName,proto3" json:"threadName,omitempty"`
	LocalTraceId         []int64  `protobuf:"varint,3,rep,packed,name=localTraceId,proto3" json:"localTraceId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PCmdActiveThreadLightDump) Descriptor

func (*PCmdActiveThreadLightDump) Descriptor() ([]byte, []int)

func (*PCmdActiveThreadLightDump) GetLimit

func (m *PCmdActiveThreadLightDump) GetLimit() int32

func (*PCmdActiveThreadLightDump) GetLocalTraceId

func (m *PCmdActiveThreadLightDump) GetLocalTraceId() []int64

func (*PCmdActiveThreadLightDump) GetThreadName

func (m *PCmdActiveThreadLightDump) GetThreadName() []string

func (*PCmdActiveThreadLightDump) ProtoMessage

func (*PCmdActiveThreadLightDump) ProtoMessage()

func (*PCmdActiveThreadLightDump) Reset

func (m *PCmdActiveThreadLightDump) Reset()

func (*PCmdActiveThreadLightDump) String

func (m *PCmdActiveThreadLightDump) String() string

func (*PCmdActiveThreadLightDump) XXX_DiscardUnknown

func (m *PCmdActiveThreadLightDump) XXX_DiscardUnknown()

func (*PCmdActiveThreadLightDump) XXX_Marshal

func (m *PCmdActiveThreadLightDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdActiveThreadLightDump) XXX_Merge

func (m *PCmdActiveThreadLightDump) XXX_Merge(src proto.Message)

func (*PCmdActiveThreadLightDump) XXX_Size

func (m *PCmdActiveThreadLightDump) XXX_Size() int

func (*PCmdActiveThreadLightDump) XXX_Unmarshal

func (m *PCmdActiveThreadLightDump) XXX_Unmarshal(b []byte) error

type PCmdActiveThreadLightDumpRes

type PCmdActiveThreadLightDumpRes struct {
	CommonResponse       *PCmdResponse             `protobuf:"bytes,1,opt,name=commonResponse,proto3" json:"commonResponse,omitempty"`
	ThreadDump           []*PActiveThreadLightDump `protobuf:"bytes,2,rep,name=threadDump,proto3" json:"threadDump,omitempty"`
	Type                 string                    `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	SubType              string                    `protobuf:"bytes,4,opt,name=subType,proto3" json:"subType,omitempty"`
	Version              string                    `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*PCmdActiveThreadLightDumpRes) Descriptor

func (*PCmdActiveThreadLightDumpRes) Descriptor() ([]byte, []int)

func (*PCmdActiveThreadLightDumpRes) GetCommonResponse

func (m *PCmdActiveThreadLightDumpRes) GetCommonResponse() *PCmdResponse

func (*PCmdActiveThreadLightDumpRes) GetSubType

func (m *PCmdActiveThreadLightDumpRes) GetSubType() string

func (*PCmdActiveThreadLightDumpRes) GetThreadDump

func (*PCmdActiveThreadLightDumpRes) GetType

func (m *PCmdActiveThreadLightDumpRes) GetType() string

func (*PCmdActiveThreadLightDumpRes) GetVersion

func (m *PCmdActiveThreadLightDumpRes) GetVersion() string

func (*PCmdActiveThreadLightDumpRes) ProtoMessage

func (*PCmdActiveThreadLightDumpRes) ProtoMessage()

func (*PCmdActiveThreadLightDumpRes) Reset

func (m *PCmdActiveThreadLightDumpRes) Reset()

func (*PCmdActiveThreadLightDumpRes) String

func (*PCmdActiveThreadLightDumpRes) XXX_DiscardUnknown

func (m *PCmdActiveThreadLightDumpRes) XXX_DiscardUnknown()

func (*PCmdActiveThreadLightDumpRes) XXX_Marshal

func (m *PCmdActiveThreadLightDumpRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdActiveThreadLightDumpRes) XXX_Merge

func (m *PCmdActiveThreadLightDumpRes) XXX_Merge(src proto.Message)

func (*PCmdActiveThreadLightDumpRes) XXX_Size

func (m *PCmdActiveThreadLightDumpRes) XXX_Size() int

func (*PCmdActiveThreadLightDumpRes) XXX_Unmarshal

func (m *PCmdActiveThreadLightDumpRes) XXX_Unmarshal(b []byte) error

type PCmdEcho

type PCmdEcho struct {
	Message              string   `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PCmdEcho) Descriptor

func (*PCmdEcho) Descriptor() ([]byte, []int)

func (*PCmdEcho) GetMessage

func (m *PCmdEcho) GetMessage() string

func (*PCmdEcho) ProtoMessage

func (*PCmdEcho) ProtoMessage()

func (*PCmdEcho) Reset

func (m *PCmdEcho) Reset()

func (*PCmdEcho) String

func (m *PCmdEcho) String() string

func (*PCmdEcho) XXX_DiscardUnknown

func (m *PCmdEcho) XXX_DiscardUnknown()

func (*PCmdEcho) XXX_Marshal

func (m *PCmdEcho) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdEcho) XXX_Merge

func (m *PCmdEcho) XXX_Merge(src proto.Message)

func (*PCmdEcho) XXX_Size

func (m *PCmdEcho) XXX_Size() int

func (*PCmdEcho) XXX_Unmarshal

func (m *PCmdEcho) XXX_Unmarshal(b []byte) error

type PCmdEchoResponse

type PCmdEchoResponse struct {
	CommonResponse       *PCmdResponse `protobuf:"bytes,1,opt,name=commonResponse,proto3" json:"commonResponse,omitempty"`
	Message              string        `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*PCmdEchoResponse) Descriptor

func (*PCmdEchoResponse) Descriptor() ([]byte, []int)

func (*PCmdEchoResponse) GetCommonResponse

func (m *PCmdEchoResponse) GetCommonResponse() *PCmdResponse

func (*PCmdEchoResponse) GetMessage

func (m *PCmdEchoResponse) GetMessage() string

func (*PCmdEchoResponse) ProtoMessage

func (*PCmdEchoResponse) ProtoMessage()

func (*PCmdEchoResponse) Reset

func (m *PCmdEchoResponse) Reset()

func (*PCmdEchoResponse) String

func (m *PCmdEchoResponse) String() string

func (*PCmdEchoResponse) XXX_DiscardUnknown

func (m *PCmdEchoResponse) XXX_DiscardUnknown()

func (*PCmdEchoResponse) XXX_Marshal

func (m *PCmdEchoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdEchoResponse) XXX_Merge

func (m *PCmdEchoResponse) XXX_Merge(src proto.Message)

func (*PCmdEchoResponse) XXX_Size

func (m *PCmdEchoResponse) XXX_Size() int

func (*PCmdEchoResponse) XXX_Unmarshal

func (m *PCmdEchoResponse) XXX_Unmarshal(b []byte) error

type PCmdMessage

type PCmdMessage struct {
	// Types that are valid to be assigned to Message:
	//	*PCmdMessage_HandshakeMessage
	//	*PCmdMessage_FailMessage
	Message              isPCmdMessage_Message `protobuf_oneof:"message"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*PCmdMessage) Descriptor

func (*PCmdMessage) Descriptor() ([]byte, []int)

func (*PCmdMessage) GetFailMessage

func (m *PCmdMessage) GetFailMessage() *PCmdResponse

func (*PCmdMessage) GetHandshakeMessage

func (m *PCmdMessage) GetHandshakeMessage() *PCmdServiceHandshake

func (*PCmdMessage) GetMessage

func (m *PCmdMessage) GetMessage() isPCmdMessage_Message

func (*PCmdMessage) ProtoMessage

func (*PCmdMessage) ProtoMessage()

func (*PCmdMessage) Reset

func (m *PCmdMessage) Reset()

func (*PCmdMessage) String

func (m *PCmdMessage) String() string

func (*PCmdMessage) XXX_DiscardUnknown

func (m *PCmdMessage) XXX_DiscardUnknown()

func (*PCmdMessage) XXX_Marshal

func (m *PCmdMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdMessage) XXX_Merge

func (m *PCmdMessage) XXX_Merge(src proto.Message)

func (*PCmdMessage) XXX_OneofWrappers

func (*PCmdMessage) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PCmdMessage) XXX_Size

func (m *PCmdMessage) XXX_Size() int

func (*PCmdMessage) XXX_Unmarshal

func (m *PCmdMessage) XXX_Unmarshal(b []byte) error

type PCmdMessage_FailMessage

type PCmdMessage_FailMessage struct {
	FailMessage *PCmdResponse `protobuf:"bytes,2,opt,name=failMessage,proto3,oneof"`
}

type PCmdMessage_HandshakeMessage

type PCmdMessage_HandshakeMessage struct {
	HandshakeMessage *PCmdServiceHandshake `protobuf:"bytes,1,opt,name=handshakeMessage,proto3,oneof"`
}

type PCmdRequest

type PCmdRequest struct {
	RequestId int32 `protobuf:"varint,1,opt,name=requestId,proto3" json:"requestId,omitempty"`
	// Types that are valid to be assigned to Command:
	//	*PCmdRequest_CommandEcho
	//	*PCmdRequest_CommandActiveThreadCount
	//	*PCmdRequest_CommandActiveThreadDump
	//	*PCmdRequest_CommandActiveThreadLightDump
	Command              isPCmdRequest_Command `protobuf_oneof:"command"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*PCmdRequest) Descriptor

func (*PCmdRequest) Descriptor() ([]byte, []int)

func (*PCmdRequest) GetCommand

func (m *PCmdRequest) GetCommand() isPCmdRequest_Command

func (*PCmdRequest) GetCommandActiveThreadCount

func (m *PCmdRequest) GetCommandActiveThreadCount() *PCmdActiveThreadCount

func (*PCmdRequest) GetCommandActiveThreadDump

func (m *PCmdRequest) GetCommandActiveThreadDump() *PCmdActiveThreadDump

func (*PCmdRequest) GetCommandActiveThreadLightDump

func (m *PCmdRequest) GetCommandActiveThreadLightDump() *PCmdActiveThreadLightDump

func (*PCmdRequest) GetCommandEcho

func (m *PCmdRequest) GetCommandEcho() *PCmdEcho

func (*PCmdRequest) GetRequestId

func (m *PCmdRequest) GetRequestId() int32

func (*PCmdRequest) ProtoMessage

func (*PCmdRequest) ProtoMessage()

func (*PCmdRequest) Reset

func (m *PCmdRequest) Reset()

func (*PCmdRequest) String

func (m *PCmdRequest) String() string

func (*PCmdRequest) XXX_DiscardUnknown

func (m *PCmdRequest) XXX_DiscardUnknown()

func (*PCmdRequest) XXX_Marshal

func (m *PCmdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdRequest) XXX_Merge

func (m *PCmdRequest) XXX_Merge(src proto.Message)

func (*PCmdRequest) XXX_OneofWrappers

func (*PCmdRequest) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PCmdRequest) XXX_Size

func (m *PCmdRequest) XXX_Size() int

func (*PCmdRequest) XXX_Unmarshal

func (m *PCmdRequest) XXX_Unmarshal(b []byte) error

type PCmdRequest_CommandActiveThreadCount

type PCmdRequest_CommandActiveThreadCount struct {
	CommandActiveThreadCount *PCmdActiveThreadCount `protobuf:"bytes,730,opt,name=commandActiveThreadCount,proto3,oneof"`
}

type PCmdRequest_CommandActiveThreadDump

type PCmdRequest_CommandActiveThreadDump struct {
	CommandActiveThreadDump *PCmdActiveThreadDump `protobuf:"bytes,740,opt,name=commandActiveThreadDump,proto3,oneof"`
}

type PCmdRequest_CommandActiveThreadLightDump

type PCmdRequest_CommandActiveThreadLightDump struct {
	CommandActiveThreadLightDump *PCmdActiveThreadLightDump `protobuf:"bytes,750,opt,name=commandActiveThreadLightDump,proto3,oneof"`
}

type PCmdRequest_CommandEcho

type PCmdRequest_CommandEcho struct {
	CommandEcho *PCmdEcho `protobuf:"bytes,710,opt,name=commandEcho,proto3,oneof"`
}

type PCmdResponse

type PCmdResponse struct {
	ResponseId           int32                   `protobuf:"varint,1,opt,name=responseId,proto3" json:"responseId,omitempty"`
	Status               int32                   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	Message              *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PCmdResponse) Descriptor

func (*PCmdResponse) Descriptor() ([]byte, []int)

func (*PCmdResponse) GetMessage

func (m *PCmdResponse) GetMessage() *wrapperspb.StringValue

func (*PCmdResponse) GetResponseId

func (m *PCmdResponse) GetResponseId() int32

func (*PCmdResponse) GetStatus

func (m *PCmdResponse) GetStatus() int32

func (*PCmdResponse) ProtoMessage

func (*PCmdResponse) ProtoMessage()

func (*PCmdResponse) Reset

func (m *PCmdResponse) Reset()

func (*PCmdResponse) String

func (m *PCmdResponse) String() string

func (*PCmdResponse) XXX_DiscardUnknown

func (m *PCmdResponse) XXX_DiscardUnknown()

func (*PCmdResponse) XXX_Marshal

func (m *PCmdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdResponse) XXX_Merge

func (m *PCmdResponse) XXX_Merge(src proto.Message)

func (*PCmdResponse) XXX_Size

func (m *PCmdResponse) XXX_Size() int

func (*PCmdResponse) XXX_Unmarshal

func (m *PCmdResponse) XXX_Unmarshal(b []byte) error

type PCmdServiceHandshake

type PCmdServiceHandshake struct {
	// initial message
	SupportCommandServiceKey []int32  `protobuf:"varint,1,rep,packed,name=supportCommandServiceKey,proto3" json:"supportCommandServiceKey,omitempty"`
	XXX_NoUnkeyedLiteral     struct{} `json:"-"`
	XXX_unrecognized         []byte   `json:"-"`
	XXX_sizecache            int32    `json:"-"`
}

func (*PCmdServiceHandshake) Descriptor

func (*PCmdServiceHandshake) Descriptor() ([]byte, []int)

func (*PCmdServiceHandshake) GetSupportCommandServiceKey

func (m *PCmdServiceHandshake) GetSupportCommandServiceKey() []int32

func (*PCmdServiceHandshake) ProtoMessage

func (*PCmdServiceHandshake) ProtoMessage()

func (*PCmdServiceHandshake) Reset

func (m *PCmdServiceHandshake) Reset()

func (*PCmdServiceHandshake) String

func (m *PCmdServiceHandshake) String() string

func (*PCmdServiceHandshake) XXX_DiscardUnknown

func (m *PCmdServiceHandshake) XXX_DiscardUnknown()

func (*PCmdServiceHandshake) XXX_Marshal

func (m *PCmdServiceHandshake) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdServiceHandshake) XXX_Merge

func (m *PCmdServiceHandshake) XXX_Merge(src proto.Message)

func (*PCmdServiceHandshake) XXX_Size

func (m *PCmdServiceHandshake) XXX_Size() int

func (*PCmdServiceHandshake) XXX_Unmarshal

func (m *PCmdServiceHandshake) XXX_Unmarshal(b []byte) error

type PCmdStreamResponse

type PCmdStreamResponse struct {
	ResponseId           int32                   `protobuf:"varint,1,opt,name=responseId,proto3" json:"responseId,omitempty"`
	SequenceId           int32                   `protobuf:"varint,2,opt,name=sequenceId,proto3" json:"sequenceId,omitempty"`
	Message              *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PCmdStreamResponse) Descriptor

func (*PCmdStreamResponse) Descriptor() ([]byte, []int)

func (*PCmdStreamResponse) GetMessage

func (m *PCmdStreamResponse) GetMessage() *wrapperspb.StringValue

func (*PCmdStreamResponse) GetResponseId

func (m *PCmdStreamResponse) GetResponseId() int32

func (*PCmdStreamResponse) GetSequenceId

func (m *PCmdStreamResponse) GetSequenceId() int32

func (*PCmdStreamResponse) ProtoMessage

func (*PCmdStreamResponse) ProtoMessage()

func (*PCmdStreamResponse) Reset

func (m *PCmdStreamResponse) Reset()

func (*PCmdStreamResponse) String

func (m *PCmdStreamResponse) String() string

func (*PCmdStreamResponse) XXX_DiscardUnknown

func (m *PCmdStreamResponse) XXX_DiscardUnknown()

func (*PCmdStreamResponse) XXX_Marshal

func (m *PCmdStreamResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCmdStreamResponse) XXX_Merge

func (m *PCmdStreamResponse) XXX_Merge(src proto.Message)

func (*PCmdStreamResponse) XXX_Size

func (m *PCmdStreamResponse) XXX_Size() int

func (*PCmdStreamResponse) XXX_Unmarshal

func (m *PCmdStreamResponse) XXX_Unmarshal(b []byte) error

type PCommandType

type PCommandType int32
const (
	PCommandType_NONE                     PCommandType = 0
	PCommandType_PING                     PCommandType = 100
	PCommandType_PONG                     PCommandType = 101
	PCommandType_ECHO                     PCommandType = 710
	PCommandType_ACTIVE_THREAD_COUNT      PCommandType = 730
	PCommandType_ACTIVE_THREAD_DUMP       PCommandType = 740
	PCommandType_ACTIVE_THREAD_LIGHT_DUMP PCommandType = 750
)

func (PCommandType) EnumDescriptor

func (PCommandType) EnumDescriptor() ([]byte, []int)

func (PCommandType) String

func (x PCommandType) String() string

type PCpuLoad

type PCpuLoad struct {
	JvmCpuLoad           float64  `protobuf:"fixed64,1,opt,name=jvmCpuLoad,proto3" json:"jvmCpuLoad,omitempty"`
	SystemCpuLoad        float64  `protobuf:"fixed64,2,opt,name=systemCpuLoad,proto3" json:"systemCpuLoad,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PCpuLoad) Descriptor

func (*PCpuLoad) Descriptor() ([]byte, []int)

func (*PCpuLoad) GetJvmCpuLoad

func (m *PCpuLoad) GetJvmCpuLoad() float64

func (*PCpuLoad) GetSystemCpuLoad

func (m *PCpuLoad) GetSystemCpuLoad() float64

func (*PCpuLoad) ProtoMessage

func (*PCpuLoad) ProtoMessage()

func (*PCpuLoad) Reset

func (m *PCpuLoad) Reset()

func (*PCpuLoad) String

func (m *PCpuLoad) String() string

func (*PCpuLoad) XXX_DiscardUnknown

func (m *PCpuLoad) XXX_DiscardUnknown()

func (*PCpuLoad) XXX_Marshal

func (m *PCpuLoad) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCpuLoad) XXX_Merge

func (m *PCpuLoad) XXX_Merge(src proto.Message)

func (*PCpuLoad) XXX_Size

func (m *PCpuLoad) XXX_Size() int

func (*PCpuLoad) XXX_Unmarshal

func (m *PCpuLoad) XXX_Unmarshal(b []byte) error

type PCustomMetric added in v1.0.0

type PCustomMetric struct {
	// Types that are valid to be assigned to Field:
	//	*PCustomMetric_IntCountMetric
	//	*PCustomMetric_LongCountMetric
	//	*PCustomMetric_IntGaugeMetric
	//	*PCustomMetric_LongGaugeMetric
	//	*PCustomMetric_DoubleGaugeMetric
	Field                isPCustomMetric_Field `protobuf_oneof:"field"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*PCustomMetric) Descriptor added in v1.0.0

func (*PCustomMetric) Descriptor() ([]byte, []int)

func (*PCustomMetric) GetDoubleGaugeMetric added in v1.0.0

func (m *PCustomMetric) GetDoubleGaugeMetric() *PDouleGaugeMetric

func (*PCustomMetric) GetField added in v1.0.0

func (m *PCustomMetric) GetField() isPCustomMetric_Field

func (*PCustomMetric) GetIntCountMetric added in v1.0.0

func (m *PCustomMetric) GetIntCountMetric() *PIntCountMetric

func (*PCustomMetric) GetIntGaugeMetric added in v1.0.0

func (m *PCustomMetric) GetIntGaugeMetric() *PIntGaugeMetric

func (*PCustomMetric) GetLongCountMetric added in v1.0.0

func (m *PCustomMetric) GetLongCountMetric() *PLongCountMetric

func (*PCustomMetric) GetLongGaugeMetric added in v1.0.0

func (m *PCustomMetric) GetLongGaugeMetric() *PLongGaugeMetric

func (*PCustomMetric) ProtoMessage added in v1.0.0

func (*PCustomMetric) ProtoMessage()

func (*PCustomMetric) Reset added in v1.0.0

func (m *PCustomMetric) Reset()

func (*PCustomMetric) String added in v1.0.0

func (m *PCustomMetric) String() string

func (*PCustomMetric) XXX_DiscardUnknown added in v1.2.0

func (m *PCustomMetric) XXX_DiscardUnknown()

func (*PCustomMetric) XXX_Marshal added in v1.2.0

func (m *PCustomMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCustomMetric) XXX_Merge added in v1.2.0

func (m *PCustomMetric) XXX_Merge(src proto.Message)

func (*PCustomMetric) XXX_OneofWrappers added in v1.2.0

func (*PCustomMetric) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PCustomMetric) XXX_Size added in v1.2.0

func (m *PCustomMetric) XXX_Size() int

func (*PCustomMetric) XXX_Unmarshal added in v1.2.0

func (m *PCustomMetric) XXX_Unmarshal(b []byte) error

type PCustomMetricMessage added in v1.0.0

type PCustomMetricMessage struct {
	Timestamp            []int64          `protobuf:"varint,1,rep,packed,name=timestamp,proto3" json:"timestamp,omitempty"`
	CollectInterval      []int64          `protobuf:"varint,2,rep,packed,name=collectInterval,proto3" json:"collectInterval,omitempty"`
	CustomMetrics        []*PCustomMetric `protobuf:"bytes,3,rep,name=customMetrics,proto3" json:"customMetrics,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*PCustomMetricMessage) Descriptor added in v1.0.0

func (*PCustomMetricMessage) Descriptor() ([]byte, []int)

func (*PCustomMetricMessage) GetCollectInterval added in v1.0.0

func (m *PCustomMetricMessage) GetCollectInterval() []int64

func (*PCustomMetricMessage) GetCustomMetrics added in v1.0.0

func (m *PCustomMetricMessage) GetCustomMetrics() []*PCustomMetric

func (*PCustomMetricMessage) GetTimestamp added in v1.0.0

func (m *PCustomMetricMessage) GetTimestamp() []int64

func (*PCustomMetricMessage) ProtoMessage added in v1.0.0

func (*PCustomMetricMessage) ProtoMessage()

func (*PCustomMetricMessage) Reset added in v1.0.0

func (m *PCustomMetricMessage) Reset()

func (*PCustomMetricMessage) String added in v1.0.0

func (m *PCustomMetricMessage) String() string

func (*PCustomMetricMessage) XXX_DiscardUnknown added in v1.2.0

func (m *PCustomMetricMessage) XXX_DiscardUnknown()

func (*PCustomMetricMessage) XXX_Marshal added in v1.2.0

func (m *PCustomMetricMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PCustomMetricMessage) XXX_Merge added in v1.2.0

func (m *PCustomMetricMessage) XXX_Merge(src proto.Message)

func (*PCustomMetricMessage) XXX_Size added in v1.2.0

func (m *PCustomMetricMessage) XXX_Size() int

func (*PCustomMetricMessage) XXX_Unmarshal added in v1.2.0

func (m *PCustomMetricMessage) XXX_Unmarshal(b []byte) error

type PCustomMetric_DoubleGaugeMetric added in v1.0.0

type PCustomMetric_DoubleGaugeMetric struct {
	DoubleGaugeMetric *PDouleGaugeMetric `protobuf:"bytes,5,opt,name=doubleGaugeMetric,proto3,oneof"`
}

type PCustomMetric_IntCountMetric added in v1.0.0

type PCustomMetric_IntCountMetric struct {
	IntCountMetric *PIntCountMetric `protobuf:"bytes,1,opt,name=intCountMetric,proto3,oneof"`
}

type PCustomMetric_IntGaugeMetric added in v1.0.0

type PCustomMetric_IntGaugeMetric struct {
	IntGaugeMetric *PIntGaugeMetric `protobuf:"bytes,3,opt,name=intGaugeMetric,proto3,oneof"`
}

type PCustomMetric_LongCountMetric added in v1.0.0

type PCustomMetric_LongCountMetric struct {
	LongCountMetric *PLongCountMetric `protobuf:"bytes,2,opt,name=longCountMetric,proto3,oneof"`
}

type PCustomMetric_LongGaugeMetric added in v1.0.0

type PCustomMetric_LongGaugeMetric struct {
	LongGaugeMetric *PLongGaugeMetric `protobuf:"bytes,4,opt,name=longGaugeMetric,proto3,oneof"`
}

type PDataSource

type PDataSource struct {
	Id                   int32    `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	ServiceTypeCode      int32    `protobuf:"varint,2,opt,name=serviceTypeCode,proto3" json:"serviceTypeCode,omitempty"`
	DatabaseName         string   `protobuf:"bytes,3,opt,name=databaseName,proto3" json:"databaseName,omitempty"`
	Url                  string   `protobuf:"bytes,4,opt,name=url,proto3" json:"url,omitempty"`
	ActiveConnectionSize int32    `protobuf:"varint,5,opt,name=activeConnectionSize,proto3" json:"activeConnectionSize,omitempty"`
	MaxConnectionSize    int32    `protobuf:"varint,6,opt,name=maxConnectionSize,proto3" json:"maxConnectionSize,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PDataSource) Descriptor

func (*PDataSource) Descriptor() ([]byte, []int)

func (*PDataSource) GetActiveConnectionSize

func (m *PDataSource) GetActiveConnectionSize() int32

func (*PDataSource) GetDatabaseName

func (m *PDataSource) GetDatabaseName() string

func (*PDataSource) GetId

func (m *PDataSource) GetId() int32

func (*PDataSource) GetMaxConnectionSize

func (m *PDataSource) GetMaxConnectionSize() int32

func (*PDataSource) GetServiceTypeCode

func (m *PDataSource) GetServiceTypeCode() int32

func (*PDataSource) GetUrl

func (m *PDataSource) GetUrl() string

func (*PDataSource) ProtoMessage

func (*PDataSource) ProtoMessage()

func (*PDataSource) Reset

func (m *PDataSource) Reset()

func (*PDataSource) String

func (m *PDataSource) String() string

func (*PDataSource) XXX_DiscardUnknown

func (m *PDataSource) XXX_DiscardUnknown()

func (*PDataSource) XXX_Marshal

func (m *PDataSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PDataSource) XXX_Merge

func (m *PDataSource) XXX_Merge(src proto.Message)

func (*PDataSource) XXX_Size

func (m *PDataSource) XXX_Size() int

func (*PDataSource) XXX_Unmarshal

func (m *PDataSource) XXX_Unmarshal(b []byte) error

type PDataSourceList

type PDataSourceList struct {
	DataSource           []*PDataSource `protobuf:"bytes,1,rep,name=dataSource,proto3" json:"dataSource,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PDataSourceList) Descriptor

func (*PDataSourceList) Descriptor() ([]byte, []int)

func (*PDataSourceList) GetDataSource

func (m *PDataSourceList) GetDataSource() []*PDataSource

func (*PDataSourceList) ProtoMessage

func (*PDataSourceList) ProtoMessage()

func (*PDataSourceList) Reset

func (m *PDataSourceList) Reset()

func (*PDataSourceList) String

func (m *PDataSourceList) String() string

func (*PDataSourceList) XXX_DiscardUnknown

func (m *PDataSourceList) XXX_DiscardUnknown()

func (*PDataSourceList) XXX_Marshal

func (m *PDataSourceList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PDataSourceList) XXX_Merge

func (m *PDataSourceList) XXX_Merge(src proto.Message)

func (*PDataSourceList) XXX_Size

func (m *PDataSourceList) XXX_Size() int

func (*PDataSourceList) XXX_Unmarshal

func (m *PDataSourceList) XXX_Unmarshal(b []byte) error

type PDeadlock

type PDeadlock struct {
	Count                int32          `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	ThreadDump           []*PThreadDump `protobuf:"bytes,2,rep,name=threadDump,proto3" json:"threadDump,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PDeadlock) Descriptor

func (*PDeadlock) Descriptor() ([]byte, []int)

func (*PDeadlock) GetCount

func (m *PDeadlock) GetCount() int32

func (*PDeadlock) GetThreadDump

func (m *PDeadlock) GetThreadDump() []*PThreadDump

func (*PDeadlock) ProtoMessage

func (*PDeadlock) ProtoMessage()

func (*PDeadlock) Reset

func (m *PDeadlock) Reset()

func (*PDeadlock) String

func (m *PDeadlock) String() string

func (*PDeadlock) XXX_DiscardUnknown

func (m *PDeadlock) XXX_DiscardUnknown()

func (*PDeadlock) XXX_Marshal

func (m *PDeadlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PDeadlock) XXX_Merge

func (m *PDeadlock) XXX_Merge(src proto.Message)

func (*PDeadlock) XXX_Size

func (m *PDeadlock) XXX_Size() int

func (*PDeadlock) XXX_Unmarshal

func (m *PDeadlock) XXX_Unmarshal(b []byte) error

type PDirectBuffer

type PDirectBuffer struct {
	DirectCount          int64    `protobuf:"varint,1,opt,name=directCount,proto3" json:"directCount,omitempty"`
	DirectMemoryUsed     int64    `protobuf:"varint,2,opt,name=directMemoryUsed,proto3" json:"directMemoryUsed,omitempty"`
	MappedCount          int64    `protobuf:"varint,3,opt,name=mappedCount,proto3" json:"mappedCount,omitempty"`
	MappedMemoryUsed     int64    `protobuf:"varint,4,opt,name=mappedMemoryUsed,proto3" json:"mappedMemoryUsed,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PDirectBuffer) Descriptor

func (*PDirectBuffer) Descriptor() ([]byte, []int)

func (*PDirectBuffer) GetDirectCount

func (m *PDirectBuffer) GetDirectCount() int64

func (*PDirectBuffer) GetDirectMemoryUsed

func (m *PDirectBuffer) GetDirectMemoryUsed() int64

func (*PDirectBuffer) GetMappedCount

func (m *PDirectBuffer) GetMappedCount() int64

func (*PDirectBuffer) GetMappedMemoryUsed

func (m *PDirectBuffer) GetMappedMemoryUsed() int64

func (*PDirectBuffer) ProtoMessage

func (*PDirectBuffer) ProtoMessage()

func (*PDirectBuffer) Reset

func (m *PDirectBuffer) Reset()

func (*PDirectBuffer) String

func (m *PDirectBuffer) String() string

func (*PDirectBuffer) XXX_DiscardUnknown

func (m *PDirectBuffer) XXX_DiscardUnknown()

func (*PDirectBuffer) XXX_Marshal

func (m *PDirectBuffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PDirectBuffer) XXX_Merge

func (m *PDirectBuffer) XXX_Merge(src proto.Message)

func (*PDirectBuffer) XXX_Size

func (m *PDirectBuffer) XXX_Size() int

func (*PDirectBuffer) XXX_Unmarshal

func (m *PDirectBuffer) XXX_Unmarshal(b []byte) error

type PDoubleValue added in v1.0.0

type PDoubleValue struct {
	Value                float64  `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
	IsNotSet             bool     `protobuf:"varint,2,opt,name=isNotSet,proto3" json:"isNotSet,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PDoubleValue) Descriptor added in v1.0.0

func (*PDoubleValue) Descriptor() ([]byte, []int)

func (*PDoubleValue) GetIsNotSet added in v1.0.0

func (m *PDoubleValue) GetIsNotSet() bool

func (*PDoubleValue) GetValue added in v1.0.0

func (m *PDoubleValue) GetValue() float64

func (*PDoubleValue) ProtoMessage added in v1.0.0

func (*PDoubleValue) ProtoMessage()

func (*PDoubleValue) Reset added in v1.0.0

func (m *PDoubleValue) Reset()

func (*PDoubleValue) String added in v1.0.0

func (m *PDoubleValue) String() string

func (*PDoubleValue) XXX_DiscardUnknown added in v1.2.0

func (m *PDoubleValue) XXX_DiscardUnknown()

func (*PDoubleValue) XXX_Marshal added in v1.2.0

func (m *PDoubleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PDoubleValue) XXX_Merge added in v1.2.0

func (m *PDoubleValue) XXX_Merge(src proto.Message)

func (*PDoubleValue) XXX_Size added in v1.2.0

func (m *PDoubleValue) XXX_Size() int

func (*PDoubleValue) XXX_Unmarshal added in v1.2.0

func (m *PDoubleValue) XXX_Unmarshal(b []byte) error

type PDouleGaugeMetric added in v1.0.0

type PDouleGaugeMetric struct {
	Name                 string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Values               []*PDoubleValue `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PDouleGaugeMetric) Descriptor added in v1.0.0

func (*PDouleGaugeMetric) Descriptor() ([]byte, []int)

func (*PDouleGaugeMetric) GetName added in v1.0.0

func (m *PDouleGaugeMetric) GetName() string

func (*PDouleGaugeMetric) GetValues added in v1.0.0

func (m *PDouleGaugeMetric) GetValues() []*PDoubleValue

func (*PDouleGaugeMetric) ProtoMessage added in v1.0.0

func (*PDouleGaugeMetric) ProtoMessage()

func (*PDouleGaugeMetric) Reset added in v1.0.0

func (m *PDouleGaugeMetric) Reset()

func (*PDouleGaugeMetric) String added in v1.0.0

func (m *PDouleGaugeMetric) String() string

func (*PDouleGaugeMetric) XXX_DiscardUnknown added in v1.2.0

func (m *PDouleGaugeMetric) XXX_DiscardUnknown()

func (*PDouleGaugeMetric) XXX_Marshal added in v1.2.0

func (m *PDouleGaugeMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PDouleGaugeMetric) XXX_Merge added in v1.2.0

func (m *PDouleGaugeMetric) XXX_Merge(src proto.Message)

func (*PDouleGaugeMetric) XXX_Size added in v1.2.0

func (m *PDouleGaugeMetric) XXX_Size() int

func (*PDouleGaugeMetric) XXX_Unmarshal added in v1.2.0

func (m *PDouleGaugeMetric) XXX_Unmarshal(b []byte) error

type PEachUriStat added in v1.0.0

type PEachUriStat struct {
	Uri                  string         `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"`
	TotalHistogram       *PUriHistogram `protobuf:"bytes,2,opt,name=totalHistogram,proto3" json:"totalHistogram,omitempty"`
	FailedHistogram      *PUriHistogram `protobuf:"bytes,3,opt,name=failedHistogram,proto3" json:"failedHistogram,omitempty"`
	Timestamp            int64          `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*PEachUriStat) Descriptor added in v1.0.0

func (*PEachUriStat) Descriptor() ([]byte, []int)

func (*PEachUriStat) GetFailedHistogram added in v1.0.0

func (m *PEachUriStat) GetFailedHistogram() *PUriHistogram

func (*PEachUriStat) GetTimestamp added in v1.3.0

func (m *PEachUriStat) GetTimestamp() int64

func (*PEachUriStat) GetTotalHistogram added in v1.0.0

func (m *PEachUriStat) GetTotalHistogram() *PUriHistogram

func (*PEachUriStat) GetUri added in v1.0.0

func (m *PEachUriStat) GetUri() string

func (*PEachUriStat) ProtoMessage added in v1.0.0

func (*PEachUriStat) ProtoMessage()

func (*PEachUriStat) Reset added in v1.0.0

func (m *PEachUriStat) Reset()

func (*PEachUriStat) String added in v1.0.0

func (m *PEachUriStat) String() string

func (*PEachUriStat) XXX_DiscardUnknown added in v1.2.0

func (m *PEachUriStat) XXX_DiscardUnknown()

func (*PEachUriStat) XXX_Marshal added in v1.2.0

func (m *PEachUriStat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PEachUriStat) XXX_Merge added in v1.2.0

func (m *PEachUriStat) XXX_Merge(src proto.Message)

func (*PEachUriStat) XXX_Size added in v1.2.0

func (m *PEachUriStat) XXX_Size() int

func (*PEachUriStat) XXX_Unmarshal added in v1.2.0

func (m *PEachUriStat) XXX_Unmarshal(b []byte) error

type PException added in v1.4.0

type PException struct {
	ExceptionClassName   string                `protobuf:"bytes,1,opt,name=exceptionClassName,proto3" json:"exceptionClassName,omitempty"`
	ExceptionMessage     string                `protobuf:"bytes,2,opt,name=exceptionMessage,proto3" json:"exceptionMessage,omitempty"`
	StartTime            int64                 `protobuf:"varint,3,opt,name=startTime,proto3" json:"startTime,omitempty"`
	ExceptionId          int64                 `protobuf:"varint,4,opt,name=exceptionId,proto3" json:"exceptionId,omitempty"`
	ExceptionDepth       int32                 `protobuf:"varint,5,opt,name=exceptionDepth,proto3" json:"exceptionDepth,omitempty"`
	StackTraceElement    []*PStackTraceElement `protobuf:"bytes,6,rep,name=stackTraceElement,proto3" json:"stackTraceElement,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*PException) Descriptor added in v1.4.0

func (*PException) Descriptor() ([]byte, []int)

func (*PException) GetExceptionClassName added in v1.4.0

func (m *PException) GetExceptionClassName() string

func (*PException) GetExceptionDepth added in v1.4.0

func (m *PException) GetExceptionDepth() int32

func (*PException) GetExceptionId added in v1.4.0

func (m *PException) GetExceptionId() int64

func (*PException) GetExceptionMessage added in v1.4.0

func (m *PException) GetExceptionMessage() string

func (*PException) GetStackTraceElement added in v1.4.0

func (m *PException) GetStackTraceElement() []*PStackTraceElement

func (*PException) GetStartTime added in v1.4.0

func (m *PException) GetStartTime() int64

func (*PException) ProtoMessage added in v1.4.0

func (*PException) ProtoMessage()

func (*PException) Reset added in v1.4.0

func (m *PException) Reset()

func (*PException) String added in v1.4.0

func (m *PException) String() string

func (*PException) XXX_DiscardUnknown added in v1.4.0

func (m *PException) XXX_DiscardUnknown()

func (*PException) XXX_Marshal added in v1.4.0

func (m *PException) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PException) XXX_Merge added in v1.4.0

func (m *PException) XXX_Merge(src proto.Message)

func (*PException) XXX_Size added in v1.4.0

func (m *PException) XXX_Size() int

func (*PException) XXX_Unmarshal added in v1.4.0

func (m *PException) XXX_Unmarshal(b []byte) error

type PExceptionMetaData added in v1.4.0

type PExceptionMetaData struct {
	Exceptions           []*PException   `protobuf:"bytes,1,rep,name=exceptions,proto3" json:"exceptions,omitempty"`
	TransactionId        *PTransactionId `protobuf:"bytes,2,opt,name=transactionId,proto3" json:"transactionId,omitempty"`
	SpanId               int64           `protobuf:"fixed64,3,opt,name=spanId,proto3" json:"spanId,omitempty"`
	UriTemplate          string          `protobuf:"bytes,4,opt,name=uriTemplate,proto3" json:"uriTemplate,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PExceptionMetaData) Descriptor added in v1.4.0

func (*PExceptionMetaData) Descriptor() ([]byte, []int)

func (*PExceptionMetaData) GetExceptions added in v1.4.0

func (m *PExceptionMetaData) GetExceptions() []*PException

func (*PExceptionMetaData) GetSpanId added in v1.4.0

func (m *PExceptionMetaData) GetSpanId() int64

func (*PExceptionMetaData) GetTransactionId added in v1.4.0

func (m *PExceptionMetaData) GetTransactionId() *PTransactionId

func (*PExceptionMetaData) GetUriTemplate added in v1.4.0

func (m *PExceptionMetaData) GetUriTemplate() string

func (*PExceptionMetaData) ProtoMessage added in v1.4.0

func (*PExceptionMetaData) ProtoMessage()

func (*PExceptionMetaData) Reset added in v1.4.0

func (m *PExceptionMetaData) Reset()

func (*PExceptionMetaData) String added in v1.4.0

func (m *PExceptionMetaData) String() string

func (*PExceptionMetaData) XXX_DiscardUnknown added in v1.4.0

func (m *PExceptionMetaData) XXX_DiscardUnknown()

func (*PExceptionMetaData) XXX_Marshal added in v1.4.0

func (m *PExceptionMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PExceptionMetaData) XXX_Merge added in v1.4.0

func (m *PExceptionMetaData) XXX_Merge(src proto.Message)

func (*PExceptionMetaData) XXX_Size added in v1.4.0

func (m *PExceptionMetaData) XXX_Size() int

func (*PExceptionMetaData) XXX_Unmarshal added in v1.4.0

func (m *PExceptionMetaData) XXX_Unmarshal(b []byte) error

type PFileDescriptor

type PFileDescriptor struct {
	OpenFileDescriptorCount int64    `protobuf:"varint,1,opt,name=openFileDescriptorCount,proto3" json:"openFileDescriptorCount,omitempty"`
	XXX_NoUnkeyedLiteral    struct{} `json:"-"`
	XXX_unrecognized        []byte   `json:"-"`
	XXX_sizecache           int32    `json:"-"`
}

func (*PFileDescriptor) Descriptor

func (*PFileDescriptor) Descriptor() ([]byte, []int)

func (*PFileDescriptor) GetOpenFileDescriptorCount

func (m *PFileDescriptor) GetOpenFileDescriptorCount() int64

func (*PFileDescriptor) ProtoMessage

func (*PFileDescriptor) ProtoMessage()

func (*PFileDescriptor) Reset

func (m *PFileDescriptor) Reset()

func (*PFileDescriptor) String

func (m *PFileDescriptor) String() string

func (*PFileDescriptor) XXX_DiscardUnknown

func (m *PFileDescriptor) XXX_DiscardUnknown()

func (*PFileDescriptor) XXX_Marshal

func (m *PFileDescriptor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PFileDescriptor) XXX_Merge

func (m *PFileDescriptor) XXX_Merge(src proto.Message)

func (*PFileDescriptor) XXX_Size

func (m *PFileDescriptor) XXX_Size() int

func (*PFileDescriptor) XXX_Unmarshal

func (m *PFileDescriptor) XXX_Unmarshal(b []byte) error

type PIntBooleanIntBooleanValue

type PIntBooleanIntBooleanValue struct {
	IntValue1            int32    `protobuf:"varint,1,opt,name=intValue1,proto3" json:"intValue1,omitempty"`
	BoolValue1           bool     `protobuf:"varint,2,opt,name=boolValue1,proto3" json:"boolValue1,omitempty"`
	IntValue2            int32    `protobuf:"varint,3,opt,name=intValue2,proto3" json:"intValue2,omitempty"`
	BoolValue2           bool     `protobuf:"varint,4,opt,name=boolValue2,proto3" json:"boolValue2,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PIntBooleanIntBooleanValue) Descriptor

func (*PIntBooleanIntBooleanValue) Descriptor() ([]byte, []int)

func (*PIntBooleanIntBooleanValue) GetBoolValue1

func (m *PIntBooleanIntBooleanValue) GetBoolValue1() bool

func (*PIntBooleanIntBooleanValue) GetBoolValue2

func (m *PIntBooleanIntBooleanValue) GetBoolValue2() bool

func (*PIntBooleanIntBooleanValue) GetIntValue1

func (m *PIntBooleanIntBooleanValue) GetIntValue1() int32

func (*PIntBooleanIntBooleanValue) GetIntValue2

func (m *PIntBooleanIntBooleanValue) GetIntValue2() int32

func (*PIntBooleanIntBooleanValue) ProtoMessage

func (*PIntBooleanIntBooleanValue) ProtoMessage()

func (*PIntBooleanIntBooleanValue) Reset

func (m *PIntBooleanIntBooleanValue) Reset()

func (*PIntBooleanIntBooleanValue) String

func (m *PIntBooleanIntBooleanValue) String() string

func (*PIntBooleanIntBooleanValue) XXX_DiscardUnknown

func (m *PIntBooleanIntBooleanValue) XXX_DiscardUnknown()

func (*PIntBooleanIntBooleanValue) XXX_Marshal

func (m *PIntBooleanIntBooleanValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PIntBooleanIntBooleanValue) XXX_Merge

func (m *PIntBooleanIntBooleanValue) XXX_Merge(src proto.Message)

func (*PIntBooleanIntBooleanValue) XXX_Size

func (m *PIntBooleanIntBooleanValue) XXX_Size() int

func (*PIntBooleanIntBooleanValue) XXX_Unmarshal

func (m *PIntBooleanIntBooleanValue) XXX_Unmarshal(b []byte) error

type PIntCountMetric added in v1.0.0

type PIntCountMetric struct {
	Name                 string       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Values               []*PIntValue `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*PIntCountMetric) Descriptor added in v1.0.0

func (*PIntCountMetric) Descriptor() ([]byte, []int)

func (*PIntCountMetric) GetName added in v1.0.0

func (m *PIntCountMetric) GetName() string

func (*PIntCountMetric) GetValues added in v1.0.0

func (m *PIntCountMetric) GetValues() []*PIntValue

func (*PIntCountMetric) ProtoMessage added in v1.0.0

func (*PIntCountMetric) ProtoMessage()

func (*PIntCountMetric) Reset added in v1.0.0

func (m *PIntCountMetric) Reset()

func (*PIntCountMetric) String added in v1.0.0

func (m *PIntCountMetric) String() string

func (*PIntCountMetric) XXX_DiscardUnknown added in v1.2.0

func (m *PIntCountMetric) XXX_DiscardUnknown()

func (*PIntCountMetric) XXX_Marshal added in v1.2.0

func (m *PIntCountMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PIntCountMetric) XXX_Merge added in v1.2.0

func (m *PIntCountMetric) XXX_Merge(src proto.Message)

func (*PIntCountMetric) XXX_Size added in v1.2.0

func (m *PIntCountMetric) XXX_Size() int

func (*PIntCountMetric) XXX_Unmarshal added in v1.2.0

func (m *PIntCountMetric) XXX_Unmarshal(b []byte) error

type PIntGaugeMetric added in v1.0.0

type PIntGaugeMetric struct {
	Name                 string       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Values               []*PIntValue `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*PIntGaugeMetric) Descriptor added in v1.0.0

func (*PIntGaugeMetric) Descriptor() ([]byte, []int)

func (*PIntGaugeMetric) GetName added in v1.0.0

func (m *PIntGaugeMetric) GetName() string

func (*PIntGaugeMetric) GetValues added in v1.0.0

func (m *PIntGaugeMetric) GetValues() []*PIntValue

func (*PIntGaugeMetric) ProtoMessage added in v1.0.0

func (*PIntGaugeMetric) ProtoMessage()

func (*PIntGaugeMetric) Reset added in v1.0.0

func (m *PIntGaugeMetric) Reset()

func (*PIntGaugeMetric) String added in v1.0.0

func (m *PIntGaugeMetric) String() string

func (*PIntGaugeMetric) XXX_DiscardUnknown added in v1.2.0

func (m *PIntGaugeMetric) XXX_DiscardUnknown()

func (*PIntGaugeMetric) XXX_Marshal added in v1.2.0

func (m *PIntGaugeMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PIntGaugeMetric) XXX_Merge added in v1.2.0

func (m *PIntGaugeMetric) XXX_Merge(src proto.Message)

func (*PIntGaugeMetric) XXX_Size added in v1.2.0

func (m *PIntGaugeMetric) XXX_Size() int

func (*PIntGaugeMetric) XXX_Unmarshal added in v1.2.0

func (m *PIntGaugeMetric) XXX_Unmarshal(b []byte) error

type PIntStringStringValue

type PIntStringStringValue struct {
	IntValue             int32                   `protobuf:"varint,1,opt,name=intValue,proto3" json:"intValue,omitempty"`
	StringValue1         *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=stringValue1,proto3" json:"stringValue1,omitempty"`
	StringValue2         *wrapperspb.StringValue `protobuf:"bytes,3,opt,name=stringValue2,proto3" json:"stringValue2,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PIntStringStringValue) Descriptor

func (*PIntStringStringValue) Descriptor() ([]byte, []int)

func (*PIntStringStringValue) GetIntValue

func (m *PIntStringStringValue) GetIntValue() int32

func (*PIntStringStringValue) GetStringValue1

func (m *PIntStringStringValue) GetStringValue1() *wrapperspb.StringValue

func (*PIntStringStringValue) GetStringValue2

func (m *PIntStringStringValue) GetStringValue2() *wrapperspb.StringValue

func (*PIntStringStringValue) ProtoMessage

func (*PIntStringStringValue) ProtoMessage()

func (*PIntStringStringValue) Reset

func (m *PIntStringStringValue) Reset()

func (*PIntStringStringValue) String

func (m *PIntStringStringValue) String() string

func (*PIntStringStringValue) XXX_DiscardUnknown

func (m *PIntStringStringValue) XXX_DiscardUnknown()

func (*PIntStringStringValue) XXX_Marshal

func (m *PIntStringStringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PIntStringStringValue) XXX_Merge

func (m *PIntStringStringValue) XXX_Merge(src proto.Message)

func (*PIntStringStringValue) XXX_Size

func (m *PIntStringStringValue) XXX_Size() int

func (*PIntStringStringValue) XXX_Unmarshal

func (m *PIntStringStringValue) XXX_Unmarshal(b []byte) error

type PIntStringValue

type PIntStringValue struct {
	IntValue             int32                   `protobuf:"varint,1,opt,name=intValue,proto3" json:"intValue,omitempty"`
	StringValue          *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=stringValue,proto3" json:"stringValue,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PIntStringValue) Descriptor

func (*PIntStringValue) Descriptor() ([]byte, []int)

func (*PIntStringValue) GetIntValue

func (m *PIntStringValue) GetIntValue() int32

func (*PIntStringValue) GetStringValue

func (m *PIntStringValue) GetStringValue() *wrapperspb.StringValue

func (*PIntStringValue) ProtoMessage

func (*PIntStringValue) ProtoMessage()

func (*PIntStringValue) Reset

func (m *PIntStringValue) Reset()

func (*PIntStringValue) String

func (m *PIntStringValue) String() string

func (*PIntStringValue) XXX_DiscardUnknown

func (m *PIntStringValue) XXX_DiscardUnknown()

func (*PIntStringValue) XXX_Marshal

func (m *PIntStringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PIntStringValue) XXX_Merge

func (m *PIntStringValue) XXX_Merge(src proto.Message)

func (*PIntStringValue) XXX_Size

func (m *PIntStringValue) XXX_Size() int

func (*PIntStringValue) XXX_Unmarshal

func (m *PIntStringValue) XXX_Unmarshal(b []byte) error

type PIntValue added in v1.0.0

type PIntValue struct {
	Value                int32    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	IsNotSet             bool     `protobuf:"varint,2,opt,name=isNotSet,proto3" json:"isNotSet,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PIntValue) Descriptor added in v1.0.0

func (*PIntValue) Descriptor() ([]byte, []int)

func (*PIntValue) GetIsNotSet added in v1.0.0

func (m *PIntValue) GetIsNotSet() bool

func (*PIntValue) GetValue added in v1.0.0

func (m *PIntValue) GetValue() int32

func (*PIntValue) ProtoMessage added in v1.0.0

func (*PIntValue) ProtoMessage()

func (*PIntValue) Reset added in v1.0.0

func (m *PIntValue) Reset()

func (*PIntValue) String added in v1.0.0

func (m *PIntValue) String() string

func (*PIntValue) XXX_DiscardUnknown added in v1.2.0

func (m *PIntValue) XXX_DiscardUnknown()

func (*PIntValue) XXX_Marshal added in v1.2.0

func (m *PIntValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PIntValue) XXX_Merge added in v1.2.0

func (m *PIntValue) XXX_Merge(src proto.Message)

func (*PIntValue) XXX_Size added in v1.2.0

func (m *PIntValue) XXX_Size() int

func (*PIntValue) XXX_Unmarshal added in v1.2.0

func (m *PIntValue) XXX_Unmarshal(b []byte) error

type PJvmGc

type PJvmGc struct {
	Type                 PJvmGcType      `protobuf:"varint,1,opt,name=type,proto3,enum=v1.PJvmGcType" json:"type,omitempty"`
	JvmMemoryHeapUsed    int64           `protobuf:"varint,2,opt,name=jvmMemoryHeapUsed,proto3" json:"jvmMemoryHeapUsed,omitempty"`
	JvmMemoryHeapMax     int64           `protobuf:"varint,3,opt,name=jvmMemoryHeapMax,proto3" json:"jvmMemoryHeapMax,omitempty"`
	JvmMemoryNonHeapUsed int64           `protobuf:"varint,4,opt,name=jvmMemoryNonHeapUsed,proto3" json:"jvmMemoryNonHeapUsed,omitempty"`
	JvmMemoryNonHeapMax  int64           `protobuf:"varint,5,opt,name=jvmMemoryNonHeapMax,proto3" json:"jvmMemoryNonHeapMax,omitempty"`
	JvmGcOldCount        int64           `protobuf:"varint,6,opt,name=jvmGcOldCount,proto3" json:"jvmGcOldCount,omitempty"`
	JvmGcOldTime         int64           `protobuf:"varint,7,opt,name=jvmGcOldTime,proto3" json:"jvmGcOldTime,omitempty"`
	JvmGcDetailed        *PJvmGcDetailed `protobuf:"bytes,8,opt,name=jvmGcDetailed,proto3" json:"jvmGcDetailed,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PJvmGc) Descriptor

func (*PJvmGc) Descriptor() ([]byte, []int)

func (*PJvmGc) GetJvmGcDetailed

func (m *PJvmGc) GetJvmGcDetailed() *PJvmGcDetailed

func (*PJvmGc) GetJvmGcOldCount

func (m *PJvmGc) GetJvmGcOldCount() int64

func (*PJvmGc) GetJvmGcOldTime

func (m *PJvmGc) GetJvmGcOldTime() int64

func (*PJvmGc) GetJvmMemoryHeapMax

func (m *PJvmGc) GetJvmMemoryHeapMax() int64

func (*PJvmGc) GetJvmMemoryHeapUsed

func (m *PJvmGc) GetJvmMemoryHeapUsed() int64

func (*PJvmGc) GetJvmMemoryNonHeapMax

func (m *PJvmGc) GetJvmMemoryNonHeapMax() int64

func (*PJvmGc) GetJvmMemoryNonHeapUsed

func (m *PJvmGc) GetJvmMemoryNonHeapUsed() int64

func (*PJvmGc) GetType

func (m *PJvmGc) GetType() PJvmGcType

func (*PJvmGc) ProtoMessage

func (*PJvmGc) ProtoMessage()

func (*PJvmGc) Reset

func (m *PJvmGc) Reset()

func (*PJvmGc) String

func (m *PJvmGc) String() string

func (*PJvmGc) XXX_DiscardUnknown

func (m *PJvmGc) XXX_DiscardUnknown()

func (*PJvmGc) XXX_Marshal

func (m *PJvmGc) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PJvmGc) XXX_Merge

func (m *PJvmGc) XXX_Merge(src proto.Message)

func (*PJvmGc) XXX_Size

func (m *PJvmGc) XXX_Size() int

func (*PJvmGc) XXX_Unmarshal

func (m *PJvmGc) XXX_Unmarshal(b []byte) error

type PJvmGcDetailed

type PJvmGcDetailed struct {
	JvmGcNewCount            int64    `protobuf:"varint,1,opt,name=jvmGcNewCount,proto3" json:"jvmGcNewCount,omitempty"`
	JvmGcNewTime             int64    `protobuf:"varint,2,opt,name=jvmGcNewTime,proto3" json:"jvmGcNewTime,omitempty"`
	JvmPoolCodeCacheUsed     float64  `protobuf:"fixed64,3,opt,name=jvmPoolCodeCacheUsed,proto3" json:"jvmPoolCodeCacheUsed,omitempty"`
	JvmPoolNewGenUsed        float64  `protobuf:"fixed64,4,opt,name=jvmPoolNewGenUsed,proto3" json:"jvmPoolNewGenUsed,omitempty"`
	JvmPoolOldGenUsed        float64  `protobuf:"fixed64,5,opt,name=jvmPoolOldGenUsed,proto3" json:"jvmPoolOldGenUsed,omitempty"`
	JvmPoolSurvivorSpaceUsed float64  `protobuf:"fixed64,6,opt,name=jvmPoolSurvivorSpaceUsed,proto3" json:"jvmPoolSurvivorSpaceUsed,omitempty"`
	JvmPoolPermGenUsed       float64  `protobuf:"fixed64,7,opt,name=jvmPoolPermGenUsed,proto3" json:"jvmPoolPermGenUsed,omitempty"`
	JvmPoolMetaspaceUsed     float64  `protobuf:"fixed64,8,opt,name=jvmPoolMetaspaceUsed,proto3" json:"jvmPoolMetaspaceUsed,omitempty"`
	XXX_NoUnkeyedLiteral     struct{} `json:"-"`
	XXX_unrecognized         []byte   `json:"-"`
	XXX_sizecache            int32    `json:"-"`
}

func (*PJvmGcDetailed) Descriptor

func (*PJvmGcDetailed) Descriptor() ([]byte, []int)

func (*PJvmGcDetailed) GetJvmGcNewCount

func (m *PJvmGcDetailed) GetJvmGcNewCount() int64

func (*PJvmGcDetailed) GetJvmGcNewTime

func (m *PJvmGcDetailed) GetJvmGcNewTime() int64

func (*PJvmGcDetailed) GetJvmPoolCodeCacheUsed

func (m *PJvmGcDetailed) GetJvmPoolCodeCacheUsed() float64

func (*PJvmGcDetailed) GetJvmPoolMetaspaceUsed

func (m *PJvmGcDetailed) GetJvmPoolMetaspaceUsed() float64

func (*PJvmGcDetailed) GetJvmPoolNewGenUsed

func (m *PJvmGcDetailed) GetJvmPoolNewGenUsed() float64

func (*PJvmGcDetailed) GetJvmPoolOldGenUsed

func (m *PJvmGcDetailed) GetJvmPoolOldGenUsed() float64

func (*PJvmGcDetailed) GetJvmPoolPermGenUsed

func (m *PJvmGcDetailed) GetJvmPoolPermGenUsed() float64

func (*PJvmGcDetailed) GetJvmPoolSurvivorSpaceUsed

func (m *PJvmGcDetailed) GetJvmPoolSurvivorSpaceUsed() float64

func (*PJvmGcDetailed) ProtoMessage

func (*PJvmGcDetailed) ProtoMessage()

func (*PJvmGcDetailed) Reset

func (m *PJvmGcDetailed) Reset()

func (*PJvmGcDetailed) String

func (m *PJvmGcDetailed) String() string

func (*PJvmGcDetailed) XXX_DiscardUnknown

func (m *PJvmGcDetailed) XXX_DiscardUnknown()

func (*PJvmGcDetailed) XXX_Marshal

func (m *PJvmGcDetailed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PJvmGcDetailed) XXX_Merge

func (m *PJvmGcDetailed) XXX_Merge(src proto.Message)

func (*PJvmGcDetailed) XXX_Size

func (m *PJvmGcDetailed) XXX_Size() int

func (*PJvmGcDetailed) XXX_Unmarshal

func (m *PJvmGcDetailed) XXX_Unmarshal(b []byte) error

type PJvmGcType

type PJvmGcType int32
const (
	PJvmGcType_JVM_GC_TYPE_UNKNOWN  PJvmGcType = 0
	PJvmGcType_JVM_GC_TYPE_SERIAL   PJvmGcType = 1
	PJvmGcType_JVM_GC_TYPE_PARALLEL PJvmGcType = 2
	PJvmGcType_JVM_GC_TYPE_CMS      PJvmGcType = 3
	PJvmGcType_JVM_GC_TYPE_G1       PJvmGcType = 4
)

func (PJvmGcType) EnumDescriptor

func (PJvmGcType) EnumDescriptor() ([]byte, []int)

func (PJvmGcType) String

func (x PJvmGcType) String() string

type PJvmInfo

type PJvmInfo struct {
	Version              int32      `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	VmVersion            string     `protobuf:"bytes,2,opt,name=vmVersion,proto3" json:"vmVersion,omitempty"`
	GcType               PJvmGcType `protobuf:"varint,3,opt,name=gcType,proto3,enum=v1.PJvmGcType" json:"gcType,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*PJvmInfo) Descriptor

func (*PJvmInfo) Descriptor() ([]byte, []int)

func (*PJvmInfo) GetGcType

func (m *PJvmInfo) GetGcType() PJvmGcType

func (*PJvmInfo) GetVersion

func (m *PJvmInfo) GetVersion() int32

func (*PJvmInfo) GetVmVersion

func (m *PJvmInfo) GetVmVersion() string

func (*PJvmInfo) ProtoMessage

func (*PJvmInfo) ProtoMessage()

func (*PJvmInfo) Reset

func (m *PJvmInfo) Reset()

func (*PJvmInfo) String

func (m *PJvmInfo) String() string

func (*PJvmInfo) XXX_DiscardUnknown

func (m *PJvmInfo) XXX_DiscardUnknown()

func (*PJvmInfo) XXX_Marshal

func (m *PJvmInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PJvmInfo) XXX_Merge

func (m *PJvmInfo) XXX_Merge(src proto.Message)

func (*PJvmInfo) XXX_Size

func (m *PJvmInfo) XXX_Size() int

func (*PJvmInfo) XXX_Unmarshal

func (m *PJvmInfo) XXX_Unmarshal(b []byte) error

type PLoadedClass added in v1.0.0

type PLoadedClass struct {
	LoadedClassCount     int64    `protobuf:"varint,1,opt,name=loadedClassCount,proto3" json:"loadedClassCount,omitempty"`
	UnloadedClassCount   int64    `protobuf:"varint,2,opt,name=unloadedClassCount,proto3" json:"unloadedClassCount,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PLoadedClass) Descriptor added in v1.0.0

func (*PLoadedClass) Descriptor() ([]byte, []int)

func (*PLoadedClass) GetLoadedClassCount added in v1.0.0

func (m *PLoadedClass) GetLoadedClassCount() int64

func (*PLoadedClass) GetUnloadedClassCount added in v1.0.0

func (m *PLoadedClass) GetUnloadedClassCount() int64

func (*PLoadedClass) ProtoMessage added in v1.0.0

func (*PLoadedClass) ProtoMessage()

func (*PLoadedClass) Reset added in v1.0.0

func (m *PLoadedClass) Reset()

func (*PLoadedClass) String added in v1.0.0

func (m *PLoadedClass) String() string

func (*PLoadedClass) XXX_DiscardUnknown added in v1.2.0

func (m *PLoadedClass) XXX_DiscardUnknown()

func (*PLoadedClass) XXX_Marshal added in v1.2.0

func (m *PLoadedClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PLoadedClass) XXX_Merge added in v1.2.0

func (m *PLoadedClass) XXX_Merge(src proto.Message)

func (*PLoadedClass) XXX_Size added in v1.2.0

func (m *PLoadedClass) XXX_Size() int

func (*PLoadedClass) XXX_Unmarshal added in v1.2.0

func (m *PLoadedClass) XXX_Unmarshal(b []byte) error

type PLocalAsyncId

type PLocalAsyncId struct {
	AsyncId              int32    `protobuf:"varint,1,opt,name=asyncId,proto3" json:"asyncId,omitempty"`
	Sequence             int32    `protobuf:"varint,2,opt,name=sequence,proto3" json:"sequence,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PLocalAsyncId) Descriptor

func (*PLocalAsyncId) Descriptor() ([]byte, []int)

func (*PLocalAsyncId) GetAsyncId

func (m *PLocalAsyncId) GetAsyncId() int32

func (*PLocalAsyncId) GetSequence

func (m *PLocalAsyncId) GetSequence() int32

func (*PLocalAsyncId) ProtoMessage

func (*PLocalAsyncId) ProtoMessage()

func (*PLocalAsyncId) Reset

func (m *PLocalAsyncId) Reset()

func (*PLocalAsyncId) String

func (m *PLocalAsyncId) String() string

func (*PLocalAsyncId) XXX_DiscardUnknown

func (m *PLocalAsyncId) XXX_DiscardUnknown()

func (*PLocalAsyncId) XXX_Marshal

func (m *PLocalAsyncId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PLocalAsyncId) XXX_Merge

func (m *PLocalAsyncId) XXX_Merge(src proto.Message)

func (*PLocalAsyncId) XXX_Size

func (m *PLocalAsyncId) XXX_Size() int

func (*PLocalAsyncId) XXX_Unmarshal

func (m *PLocalAsyncId) XXX_Unmarshal(b []byte) error

type PLongCountMetric added in v1.0.0

type PLongCountMetric struct {
	Name                 string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Values               []*PLongValue `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*PLongCountMetric) Descriptor added in v1.0.0

func (*PLongCountMetric) Descriptor() ([]byte, []int)

func (*PLongCountMetric) GetName added in v1.0.0

func (m *PLongCountMetric) GetName() string

func (*PLongCountMetric) GetValues added in v1.0.0

func (m *PLongCountMetric) GetValues() []*PLongValue

func (*PLongCountMetric) ProtoMessage added in v1.0.0

func (*PLongCountMetric) ProtoMessage()

func (*PLongCountMetric) Reset added in v1.0.0

func (m *PLongCountMetric) Reset()

func (*PLongCountMetric) String added in v1.0.0

func (m *PLongCountMetric) String() string

func (*PLongCountMetric) XXX_DiscardUnknown added in v1.2.0

func (m *PLongCountMetric) XXX_DiscardUnknown()

func (*PLongCountMetric) XXX_Marshal added in v1.2.0

func (m *PLongCountMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PLongCountMetric) XXX_Merge added in v1.2.0

func (m *PLongCountMetric) XXX_Merge(src proto.Message)

func (*PLongCountMetric) XXX_Size added in v1.2.0

func (m *PLongCountMetric) XXX_Size() int

func (*PLongCountMetric) XXX_Unmarshal added in v1.2.0

func (m *PLongCountMetric) XXX_Unmarshal(b []byte) error

type PLongGaugeMetric added in v1.0.0

type PLongGaugeMetric struct {
	Name                 string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Values               []*PLongValue `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*PLongGaugeMetric) Descriptor added in v1.0.0

func (*PLongGaugeMetric) Descriptor() ([]byte, []int)

func (*PLongGaugeMetric) GetName added in v1.0.0

func (m *PLongGaugeMetric) GetName() string

func (*PLongGaugeMetric) GetValues added in v1.0.0

func (m *PLongGaugeMetric) GetValues() []*PLongValue

func (*PLongGaugeMetric) ProtoMessage added in v1.0.0

func (*PLongGaugeMetric) ProtoMessage()

func (*PLongGaugeMetric) Reset added in v1.0.0

func (m *PLongGaugeMetric) Reset()

func (*PLongGaugeMetric) String added in v1.0.0

func (m *PLongGaugeMetric) String() string

func (*PLongGaugeMetric) XXX_DiscardUnknown added in v1.2.0

func (m *PLongGaugeMetric) XXX_DiscardUnknown()

func (*PLongGaugeMetric) XXX_Marshal added in v1.2.0

func (m *PLongGaugeMetric) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PLongGaugeMetric) XXX_Merge added in v1.2.0

func (m *PLongGaugeMetric) XXX_Merge(src proto.Message)

func (*PLongGaugeMetric) XXX_Size added in v1.2.0

func (m *PLongGaugeMetric) XXX_Size() int

func (*PLongGaugeMetric) XXX_Unmarshal added in v1.2.0

func (m *PLongGaugeMetric) XXX_Unmarshal(b []byte) error

type PLongIntIntByteByteStringValue

type PLongIntIntByteByteStringValue struct {
	LongValue            int64                   `protobuf:"varint,1,opt,name=longValue,proto3" json:"longValue,omitempty"`
	IntValue1            int32                   `protobuf:"varint,2,opt,name=intValue1,proto3" json:"intValue1,omitempty"`
	IntValue2            int32                   `protobuf:"varint,3,opt,name=intValue2,proto3" json:"intValue2,omitempty"`
	ByteValue1           int32                   `protobuf:"zigzag32,4,opt,name=byteValue1,proto3" json:"byteValue1,omitempty"`
	ByteValue2           int32                   `protobuf:"zigzag32,5,opt,name=byteValue2,proto3" json:"byteValue2,omitempty"`
	StringValue          *wrapperspb.StringValue `protobuf:"bytes,6,opt,name=stringValue,proto3" json:"stringValue,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PLongIntIntByteByteStringValue) Descriptor

func (*PLongIntIntByteByteStringValue) Descriptor() ([]byte, []int)

func (*PLongIntIntByteByteStringValue) GetByteValue1

func (m *PLongIntIntByteByteStringValue) GetByteValue1() int32

func (*PLongIntIntByteByteStringValue) GetByteValue2

func (m *PLongIntIntByteByteStringValue) GetByteValue2() int32

func (*PLongIntIntByteByteStringValue) GetIntValue1

func (m *PLongIntIntByteByteStringValue) GetIntValue1() int32

func (*PLongIntIntByteByteStringValue) GetIntValue2

func (m *PLongIntIntByteByteStringValue) GetIntValue2() int32

func (*PLongIntIntByteByteStringValue) GetLongValue

func (m *PLongIntIntByteByteStringValue) GetLongValue() int64

func (*PLongIntIntByteByteStringValue) GetStringValue

func (*PLongIntIntByteByteStringValue) ProtoMessage

func (*PLongIntIntByteByteStringValue) ProtoMessage()

func (*PLongIntIntByteByteStringValue) Reset

func (m *PLongIntIntByteByteStringValue) Reset()

func (*PLongIntIntByteByteStringValue) String

func (*PLongIntIntByteByteStringValue) XXX_DiscardUnknown

func (m *PLongIntIntByteByteStringValue) XXX_DiscardUnknown()

func (*PLongIntIntByteByteStringValue) XXX_Marshal

func (m *PLongIntIntByteByteStringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PLongIntIntByteByteStringValue) XXX_Merge

func (m *PLongIntIntByteByteStringValue) XXX_Merge(src proto.Message)

func (*PLongIntIntByteByteStringValue) XXX_Size

func (m *PLongIntIntByteByteStringValue) XXX_Size() int

func (*PLongIntIntByteByteStringValue) XXX_Unmarshal

func (m *PLongIntIntByteByteStringValue) XXX_Unmarshal(b []byte) error

type PLongValue added in v1.0.0

type PLongValue struct {
	Value                int64    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	IsNotSet             bool     `protobuf:"varint,2,opt,name=isNotSet,proto3" json:"isNotSet,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PLongValue) Descriptor added in v1.0.0

func (*PLongValue) Descriptor() ([]byte, []int)

func (*PLongValue) GetIsNotSet added in v1.0.0

func (m *PLongValue) GetIsNotSet() bool

func (*PLongValue) GetValue added in v1.0.0

func (m *PLongValue) GetValue() int64

func (*PLongValue) ProtoMessage added in v1.0.0

func (*PLongValue) ProtoMessage()

func (*PLongValue) Reset added in v1.0.0

func (m *PLongValue) Reset()

func (*PLongValue) String added in v1.0.0

func (m *PLongValue) String() string

func (*PLongValue) XXX_DiscardUnknown added in v1.2.0

func (m *PLongValue) XXX_DiscardUnknown()

func (*PLongValue) XXX_Marshal added in v1.2.0

func (m *PLongValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PLongValue) XXX_Merge added in v1.2.0

func (m *PLongValue) XXX_Merge(src proto.Message)

func (*PLongValue) XXX_Size added in v1.2.0

func (m *PLongValue) XXX_Size() int

func (*PLongValue) XXX_Unmarshal added in v1.2.0

func (m *PLongValue) XXX_Unmarshal(b []byte) error

type PMessageEvent

type PMessageEvent struct {
	NextSpanId           int64    `protobuf:"fixed64,1,opt,name=nextSpanId,proto3" json:"nextSpanId,omitempty"`
	EndPoint             string   `protobuf:"bytes,2,opt,name=endPoint,proto3" json:"endPoint,omitempty"`
	DestinationId        string   `protobuf:"bytes,3,opt,name=destinationId,proto3" json:"destinationId,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PMessageEvent) Descriptor

func (*PMessageEvent) Descriptor() ([]byte, []int)

func (*PMessageEvent) GetDestinationId

func (m *PMessageEvent) GetDestinationId() string

func (*PMessageEvent) GetEndPoint

func (m *PMessageEvent) GetEndPoint() string

func (*PMessageEvent) GetNextSpanId

func (m *PMessageEvent) GetNextSpanId() int64

func (*PMessageEvent) ProtoMessage

func (*PMessageEvent) ProtoMessage()

func (*PMessageEvent) Reset

func (m *PMessageEvent) Reset()

func (*PMessageEvent) String

func (m *PMessageEvent) String() string

func (*PMessageEvent) XXX_DiscardUnknown

func (m *PMessageEvent) XXX_DiscardUnknown()

func (*PMessageEvent) XXX_Marshal

func (m *PMessageEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PMessageEvent) XXX_Merge

func (m *PMessageEvent) XXX_Merge(src proto.Message)

func (*PMessageEvent) XXX_Size

func (m *PMessageEvent) XXX_Size() int

func (*PMessageEvent) XXX_Unmarshal

func (m *PMessageEvent) XXX_Unmarshal(b []byte) error

type PMonitorInfo

type PMonitorInfo struct {
	StackDepth           int32    `protobuf:"varint,1,opt,name=stackDepth,proto3" json:"stackDepth,omitempty"`
	StackFrame           string   `protobuf:"bytes,2,opt,name=stackFrame,proto3" json:"stackFrame,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PMonitorInfo) Descriptor

func (*PMonitorInfo) Descriptor() ([]byte, []int)

func (*PMonitorInfo) GetStackDepth

func (m *PMonitorInfo) GetStackDepth() int32

func (*PMonitorInfo) GetStackFrame

func (m *PMonitorInfo) GetStackFrame() string

func (*PMonitorInfo) ProtoMessage

func (*PMonitorInfo) ProtoMessage()

func (*PMonitorInfo) Reset

func (m *PMonitorInfo) Reset()

func (*PMonitorInfo) String

func (m *PMonitorInfo) String() string

func (*PMonitorInfo) XXX_DiscardUnknown

func (m *PMonitorInfo) XXX_DiscardUnknown()

func (*PMonitorInfo) XXX_Marshal

func (m *PMonitorInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PMonitorInfo) XXX_Merge

func (m *PMonitorInfo) XXX_Merge(src proto.Message)

func (*PMonitorInfo) XXX_Size

func (m *PMonitorInfo) XXX_Size() int

func (*PMonitorInfo) XXX_Unmarshal

func (m *PMonitorInfo) XXX_Unmarshal(b []byte) error

type PNextEvent

type PNextEvent struct {
	// Types that are valid to be assigned to Field:
	//	*PNextEvent_MessageEvent
	Field                isPNextEvent_Field `protobuf_oneof:"field"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*PNextEvent) Descriptor

func (*PNextEvent) Descriptor() ([]byte, []int)

func (*PNextEvent) GetField

func (m *PNextEvent) GetField() isPNextEvent_Field

func (*PNextEvent) GetMessageEvent

func (m *PNextEvent) GetMessageEvent() *PMessageEvent

func (*PNextEvent) ProtoMessage

func (*PNextEvent) ProtoMessage()

func (*PNextEvent) Reset

func (m *PNextEvent) Reset()

func (*PNextEvent) String

func (m *PNextEvent) String() string

func (*PNextEvent) XXX_DiscardUnknown

func (m *PNextEvent) XXX_DiscardUnknown()

func (*PNextEvent) XXX_Marshal

func (m *PNextEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PNextEvent) XXX_Merge

func (m *PNextEvent) XXX_Merge(src proto.Message)

func (*PNextEvent) XXX_OneofWrappers

func (*PNextEvent) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PNextEvent) XXX_Size

func (m *PNextEvent) XXX_Size() int

func (*PNextEvent) XXX_Unmarshal

func (m *PNextEvent) XXX_Unmarshal(b []byte) error

type PNextEvent_MessageEvent

type PNextEvent_MessageEvent struct {
	MessageEvent *PMessageEvent `protobuf:"bytes,1,opt,name=messageEvent,proto3,oneof"`
}

type PParentInfo

type PParentInfo struct {
	ParentApplicationName string   `protobuf:"bytes,1,opt,name=parentApplicationName,proto3" json:"parentApplicationName,omitempty"`
	ParentApplicationType int32    `protobuf:"varint,2,opt,name=parentApplicationType,proto3" json:"parentApplicationType,omitempty"`
	AcceptorHost          string   `protobuf:"bytes,3,opt,name=acceptorHost,proto3" json:"acceptorHost,omitempty"`
	XXX_NoUnkeyedLiteral  struct{} `json:"-"`
	XXX_unrecognized      []byte   `json:"-"`
	XXX_sizecache         int32    `json:"-"`
}

func (*PParentInfo) Descriptor

func (*PParentInfo) Descriptor() ([]byte, []int)

func (*PParentInfo) GetAcceptorHost

func (m *PParentInfo) GetAcceptorHost() string

func (*PParentInfo) GetParentApplicationName

func (m *PParentInfo) GetParentApplicationName() string

func (*PParentInfo) GetParentApplicationType

func (m *PParentInfo) GetParentApplicationType() int32

func (*PParentInfo) ProtoMessage

func (*PParentInfo) ProtoMessage()

func (*PParentInfo) Reset

func (m *PParentInfo) Reset()

func (*PParentInfo) String

func (m *PParentInfo) String() string

func (*PParentInfo) XXX_DiscardUnknown

func (m *PParentInfo) XXX_DiscardUnknown()

func (*PParentInfo) XXX_Marshal

func (m *PParentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PParentInfo) XXX_Merge

func (m *PParentInfo) XXX_Merge(src proto.Message)

func (*PParentInfo) XXX_Size

func (m *PParentInfo) XXX_Size() int

func (*PParentInfo) XXX_Unmarshal

func (m *PParentInfo) XXX_Unmarshal(b []byte) error

type PPing

type PPing struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PPing) Descriptor

func (*PPing) Descriptor() ([]byte, []int)

func (*PPing) ProtoMessage

func (*PPing) ProtoMessage()

func (*PPing) Reset

func (m *PPing) Reset()

func (*PPing) String

func (m *PPing) String() string

func (*PPing) XXX_DiscardUnknown

func (m *PPing) XXX_DiscardUnknown()

func (*PPing) XXX_Marshal

func (m *PPing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PPing) XXX_Merge

func (m *PPing) XXX_Merge(src proto.Message)

func (*PPing) XXX_Size

func (m *PPing) XXX_Size() int

func (*PPing) XXX_Unmarshal

func (m *PPing) XXX_Unmarshal(b []byte) error

type PResponseTime

type PResponseTime struct {
	Avg                  int64    `protobuf:"varint,1,opt,name=avg,proto3" json:"avg,omitempty"`
	Max                  int64    `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PResponseTime) Descriptor

func (*PResponseTime) Descriptor() ([]byte, []int)

func (*PResponseTime) GetAvg

func (m *PResponseTime) GetAvg() int64

func (*PResponseTime) GetMax

func (m *PResponseTime) GetMax() int64

func (*PResponseTime) ProtoMessage

func (*PResponseTime) ProtoMessage()

func (*PResponseTime) Reset

func (m *PResponseTime) Reset()

func (*PResponseTime) String

func (m *PResponseTime) String() string

func (*PResponseTime) XXX_DiscardUnknown

func (m *PResponseTime) XXX_DiscardUnknown()

func (*PResponseTime) XXX_Marshal

func (m *PResponseTime) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PResponseTime) XXX_Merge

func (m *PResponseTime) XXX_Merge(src proto.Message)

func (*PResponseTime) XXX_Size

func (m *PResponseTime) XXX_Size() int

func (*PResponseTime) XXX_Unmarshal

func (m *PResponseTime) XXX_Unmarshal(b []byte) error

type PResult

type PResult struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Message              string   `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PResult) Descriptor

func (*PResult) Descriptor() ([]byte, []int)

func (*PResult) GetMessage

func (m *PResult) GetMessage() string

func (*PResult) GetSuccess

func (m *PResult) GetSuccess() bool

func (*PResult) ProtoMessage

func (*PResult) ProtoMessage()

func (*PResult) Reset

func (m *PResult) Reset()

func (*PResult) String

func (m *PResult) String() string

func (*PResult) XXX_DiscardUnknown

func (m *PResult) XXX_DiscardUnknown()

func (*PResult) XXX_Marshal

func (m *PResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PResult) XXX_Merge

func (m *PResult) XXX_Merge(src proto.Message)

func (*PResult) XXX_Size

func (m *PResult) XXX_Size() int

func (*PResult) XXX_Unmarshal

func (m *PResult) XXX_Unmarshal(b []byte) error

type PServerMetaData

type PServerMetaData struct {
	ServerInfo           string          `protobuf:"bytes,1,opt,name=serverInfo,proto3" json:"serverInfo,omitempty"`
	VmArg                []string        `protobuf:"bytes,2,rep,name=vmArg,proto3" json:"vmArg,omitempty"`
	ServiceInfo          []*PServiceInfo `protobuf:"bytes,3,rep,name=serviceInfo,proto3" json:"serviceInfo,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PServerMetaData) Descriptor

func (*PServerMetaData) Descriptor() ([]byte, []int)

func (*PServerMetaData) GetServerInfo

func (m *PServerMetaData) GetServerInfo() string

func (*PServerMetaData) GetServiceInfo

func (m *PServerMetaData) GetServiceInfo() []*PServiceInfo

func (*PServerMetaData) GetVmArg

func (m *PServerMetaData) GetVmArg() []string

func (*PServerMetaData) ProtoMessage

func (*PServerMetaData) ProtoMessage()

func (*PServerMetaData) Reset

func (m *PServerMetaData) Reset()

func (*PServerMetaData) String

func (m *PServerMetaData) String() string

func (*PServerMetaData) XXX_DiscardUnknown

func (m *PServerMetaData) XXX_DiscardUnknown()

func (*PServerMetaData) XXX_Marshal

func (m *PServerMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PServerMetaData) XXX_Merge

func (m *PServerMetaData) XXX_Merge(src proto.Message)

func (*PServerMetaData) XXX_Size

func (m *PServerMetaData) XXX_Size() int

func (*PServerMetaData) XXX_Unmarshal

func (m *PServerMetaData) XXX_Unmarshal(b []byte) error

type PServiceInfo

type PServiceInfo struct {
	ServiceName          string   `protobuf:"bytes,1,opt,name=serviceName,proto3" json:"serviceName,omitempty"`
	ServiceLib           []string `protobuf:"bytes,2,rep,name=serviceLib,proto3" json:"serviceLib,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PServiceInfo) Descriptor

func (*PServiceInfo) Descriptor() ([]byte, []int)

func (*PServiceInfo) GetServiceLib

func (m *PServiceInfo) GetServiceLib() []string

func (*PServiceInfo) GetServiceName

func (m *PServiceInfo) GetServiceName() string

func (*PServiceInfo) ProtoMessage

func (*PServiceInfo) ProtoMessage()

func (*PServiceInfo) Reset

func (m *PServiceInfo) Reset()

func (*PServiceInfo) String

func (m *PServiceInfo) String() string

func (*PServiceInfo) XXX_DiscardUnknown

func (m *PServiceInfo) XXX_DiscardUnknown()

func (*PServiceInfo) XXX_Marshal

func (m *PServiceInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PServiceInfo) XXX_Merge

func (m *PServiceInfo) XXX_Merge(src proto.Message)

func (*PServiceInfo) XXX_Size

func (m *PServiceInfo) XXX_Size() int

func (*PServiceInfo) XXX_Unmarshal

func (m *PServiceInfo) XXX_Unmarshal(b []byte) error

type PSpan

type PSpan struct {
	Version       int32           `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	TransactionId *PTransactionId `protobuf:"bytes,2,opt,name=transactionId,proto3" json:"transactionId,omitempty"`
	SpanId        int64           `protobuf:"fixed64,3,opt,name=spanId,proto3" json:"spanId,omitempty"`
	ParentSpanId  int64           `protobuf:"fixed64,4,opt,name=parentSpanId,proto3" json:"parentSpanId,omitempty"`
	// span event's startTimestamp
	StartTime              int64            `protobuf:"varint,5,opt,name=startTime,proto3" json:"startTime,omitempty"`
	Elapsed                int32            `protobuf:"varint,6,opt,name=elapsed,proto3" json:"elapsed,omitempty"`
	ApiId                  int32            `protobuf:"varint,7,opt,name=apiId,proto3" json:"apiId,omitempty"`
	ServiceType            int32            `protobuf:"varint,8,opt,name=serviceType,proto3" json:"serviceType,omitempty"`
	AcceptEvent            *PAcceptEvent    `protobuf:"bytes,9,opt,name=acceptEvent,proto3" json:"acceptEvent,omitempty"`
	Annotation             []*PAnnotation   `protobuf:"bytes,10,rep,name=annotation,proto3" json:"annotation,omitempty"`
	Flag                   int32            `protobuf:"varint,11,opt,name=flag,proto3" json:"flag,omitempty"`
	Err                    int32            `protobuf:"zigzag32,12,opt,name=err,proto3" json:"err,omitempty"`
	SpanEvent              []*PSpanEvent    `protobuf:"bytes,13,rep,name=spanEvent,proto3" json:"spanEvent,omitempty"`
	ExceptionInfo          *PIntStringValue `protobuf:"bytes,14,opt,name=exceptionInfo,proto3" json:"exceptionInfo,omitempty"`
	ApplicationServiceType int32            `protobuf:"varint,15,opt,name=applicationServiceType,proto3" json:"applicationServiceType,omitempty"`
	LoggingTransactionInfo int32            `protobuf:"varint,16,opt,name=loggingTransactionInfo,proto3" json:"loggingTransactionInfo,omitempty"`
	XXX_NoUnkeyedLiteral   struct{}         `json:"-"`
	XXX_unrecognized       []byte           `json:"-"`
	XXX_sizecache          int32            `json:"-"`
}

func (*PSpan) Descriptor

func (*PSpan) Descriptor() ([]byte, []int)

func (*PSpan) GetAcceptEvent

func (m *PSpan) GetAcceptEvent() *PAcceptEvent

func (*PSpan) GetAnnotation

func (m *PSpan) GetAnnotation() []*PAnnotation

func (*PSpan) GetApiId

func (m *PSpan) GetApiId() int32

func (*PSpan) GetApplicationServiceType

func (m *PSpan) GetApplicationServiceType() int32

func (*PSpan) GetElapsed

func (m *PSpan) GetElapsed() int32

func (*PSpan) GetErr

func (m *PSpan) GetErr() int32

func (*PSpan) GetExceptionInfo

func (m *PSpan) GetExceptionInfo() *PIntStringValue

func (*PSpan) GetFlag

func (m *PSpan) GetFlag() int32

func (*PSpan) GetLoggingTransactionInfo

func (m *PSpan) GetLoggingTransactionInfo() int32

func (*PSpan) GetParentSpanId

func (m *PSpan) GetParentSpanId() int64

func (*PSpan) GetServiceType

func (m *PSpan) GetServiceType() int32

func (*PSpan) GetSpanEvent

func (m *PSpan) GetSpanEvent() []*PSpanEvent

func (*PSpan) GetSpanId

func (m *PSpan) GetSpanId() int64

func (*PSpan) GetStartTime

func (m *PSpan) GetStartTime() int64

func (*PSpan) GetTransactionId

func (m *PSpan) GetTransactionId() *PTransactionId

func (*PSpan) GetVersion

func (m *PSpan) GetVersion() int32

func (*PSpan) ProtoMessage

func (*PSpan) ProtoMessage()

func (*PSpan) Reset

func (m *PSpan) Reset()

func (*PSpan) String

func (m *PSpan) String() string

func (*PSpan) XXX_DiscardUnknown

func (m *PSpan) XXX_DiscardUnknown()

func (*PSpan) XXX_Marshal

func (m *PSpan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PSpan) XXX_Merge

func (m *PSpan) XXX_Merge(src proto.Message)

func (*PSpan) XXX_Size

func (m *PSpan) XXX_Size() int

func (*PSpan) XXX_Unmarshal

func (m *PSpan) XXX_Unmarshal(b []byte) error

type PSpanChunk

type PSpanChunk struct {
	Version                int32           `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	TransactionId          *PTransactionId `protobuf:"bytes,2,opt,name=transactionId,proto3" json:"transactionId,omitempty"`
	SpanId                 int64           `protobuf:"fixed64,3,opt,name=spanId,proto3" json:"spanId,omitempty"`
	EndPoint               string          `protobuf:"bytes,4,opt,name=endPoint,proto3" json:"endPoint,omitempty"`
	SpanEvent              []*PSpanEvent   `protobuf:"bytes,5,rep,name=spanEvent,proto3" json:"spanEvent,omitempty"`
	ApplicationServiceType int32           `protobuf:"varint,6,opt,name=applicationServiceType,proto3" json:"applicationServiceType,omitempty"`
	KeyTime                int64           `protobuf:"varint,7,opt,name=keyTime,proto3" json:"keyTime,omitempty"`
	LocalAsyncId           *PLocalAsyncId  `protobuf:"bytes,8,opt,name=localAsyncId,proto3" json:"localAsyncId,omitempty"`
	XXX_NoUnkeyedLiteral   struct{}        `json:"-"`
	XXX_unrecognized       []byte          `json:"-"`
	XXX_sizecache          int32           `json:"-"`
}

func (*PSpanChunk) Descriptor

func (*PSpanChunk) Descriptor() ([]byte, []int)

func (*PSpanChunk) GetApplicationServiceType

func (m *PSpanChunk) GetApplicationServiceType() int32

func (*PSpanChunk) GetEndPoint

func (m *PSpanChunk) GetEndPoint() string

func (*PSpanChunk) GetKeyTime

func (m *PSpanChunk) GetKeyTime() int64

func (*PSpanChunk) GetLocalAsyncId

func (m *PSpanChunk) GetLocalAsyncId() *PLocalAsyncId

func (*PSpanChunk) GetSpanEvent

func (m *PSpanChunk) GetSpanEvent() []*PSpanEvent

func (*PSpanChunk) GetSpanId

func (m *PSpanChunk) GetSpanId() int64

func (*PSpanChunk) GetTransactionId

func (m *PSpanChunk) GetTransactionId() *PTransactionId

func (*PSpanChunk) GetVersion

func (m *PSpanChunk) GetVersion() int32

func (*PSpanChunk) ProtoMessage

func (*PSpanChunk) ProtoMessage()

func (*PSpanChunk) Reset

func (m *PSpanChunk) Reset()

func (*PSpanChunk) String

func (m *PSpanChunk) String() string

func (*PSpanChunk) XXX_DiscardUnknown

func (m *PSpanChunk) XXX_DiscardUnknown()

func (*PSpanChunk) XXX_Marshal

func (m *PSpanChunk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PSpanChunk) XXX_Merge

func (m *PSpanChunk) XXX_Merge(src proto.Message)

func (*PSpanChunk) XXX_Size

func (m *PSpanChunk) XXX_Size() int

func (*PSpanChunk) XXX_Unmarshal

func (m *PSpanChunk) XXX_Unmarshal(b []byte) error

type PSpanEvent

type PSpanEvent struct {
	Sequence             int32            `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	Depth                int32            `protobuf:"varint,2,opt,name=depth,proto3" json:"depth,omitempty"`
	StartElapsed         int32            `protobuf:"varint,3,opt,name=startElapsed,proto3" json:"startElapsed,omitempty"`
	EndElapsed           int32            `protobuf:"varint,4,opt,name=endElapsed,proto3" json:"endElapsed,omitempty"`
	ServiceType          int32            `protobuf:"zigzag32,5,opt,name=serviceType,proto3" json:"serviceType,omitempty"`
	Annotation           []*PAnnotation   `protobuf:"bytes,6,rep,name=annotation,proto3" json:"annotation,omitempty"`
	ApiId                int32            `protobuf:"zigzag32,10,opt,name=apiId,proto3" json:"apiId,omitempty"`
	ExceptionInfo        *PIntStringValue `protobuf:"bytes,11,opt,name=exceptionInfo,proto3" json:"exceptionInfo,omitempty"`
	NextEvent            *PNextEvent      `protobuf:"bytes,12,opt,name=nextEvent,proto3" json:"nextEvent,omitempty"`
	AsyncEvent           int32            `protobuf:"varint,13,opt,name=asyncEvent,proto3" json:"asyncEvent,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*PSpanEvent) Descriptor

func (*PSpanEvent) Descriptor() ([]byte, []int)

func (*PSpanEvent) GetAnnotation

func (m *PSpanEvent) GetAnnotation() []*PAnnotation

func (*PSpanEvent) GetApiId

func (m *PSpanEvent) GetApiId() int32

func (*PSpanEvent) GetAsyncEvent

func (m *PSpanEvent) GetAsyncEvent() int32

func (*PSpanEvent) GetDepth

func (m *PSpanEvent) GetDepth() int32

func (*PSpanEvent) GetEndElapsed

func (m *PSpanEvent) GetEndElapsed() int32

func (*PSpanEvent) GetExceptionInfo

func (m *PSpanEvent) GetExceptionInfo() *PIntStringValue

func (*PSpanEvent) GetNextEvent

func (m *PSpanEvent) GetNextEvent() *PNextEvent

func (*PSpanEvent) GetSequence

func (m *PSpanEvent) GetSequence() int32

func (*PSpanEvent) GetServiceType

func (m *PSpanEvent) GetServiceType() int32

func (*PSpanEvent) GetStartElapsed

func (m *PSpanEvent) GetStartElapsed() int32

func (*PSpanEvent) ProtoMessage

func (*PSpanEvent) ProtoMessage()

func (*PSpanEvent) Reset

func (m *PSpanEvent) Reset()

func (*PSpanEvent) String

func (m *PSpanEvent) String() string

func (*PSpanEvent) XXX_DiscardUnknown

func (m *PSpanEvent) XXX_DiscardUnknown()

func (*PSpanEvent) XXX_Marshal

func (m *PSpanEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PSpanEvent) XXX_Merge

func (m *PSpanEvent) XXX_Merge(src proto.Message)

func (*PSpanEvent) XXX_Size

func (m *PSpanEvent) XXX_Size() int

func (*PSpanEvent) XXX_Unmarshal

func (m *PSpanEvent) XXX_Unmarshal(b []byte) error

type PSpanMessage

type PSpanMessage struct {
	// Types that are valid to be assigned to Field:
	//	*PSpanMessage_Span
	//	*PSpanMessage_SpanChunk
	Field                isPSpanMessage_Field `protobuf_oneof:"field"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PSpanMessage) Descriptor

func (*PSpanMessage) Descriptor() ([]byte, []int)

func (*PSpanMessage) GetField

func (m *PSpanMessage) GetField() isPSpanMessage_Field

func (*PSpanMessage) GetSpan

func (m *PSpanMessage) GetSpan() *PSpan

func (*PSpanMessage) GetSpanChunk

func (m *PSpanMessage) GetSpanChunk() *PSpanChunk

func (*PSpanMessage) ProtoMessage

func (*PSpanMessage) ProtoMessage()

func (*PSpanMessage) Reset

func (m *PSpanMessage) Reset()

func (*PSpanMessage) String

func (m *PSpanMessage) String() string

func (*PSpanMessage) XXX_DiscardUnknown

func (m *PSpanMessage) XXX_DiscardUnknown()

func (*PSpanMessage) XXX_Marshal

func (m *PSpanMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PSpanMessage) XXX_Merge

func (m *PSpanMessage) XXX_Merge(src proto.Message)

func (*PSpanMessage) XXX_OneofWrappers

func (*PSpanMessage) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PSpanMessage) XXX_Size

func (m *PSpanMessage) XXX_Size() int

func (*PSpanMessage) XXX_Unmarshal

func (m *PSpanMessage) XXX_Unmarshal(b []byte) error

type PSpanMessage_Span

type PSpanMessage_Span struct {
	Span *PSpan `protobuf:"bytes,1,opt,name=span,proto3,oneof"`
}

type PSpanMessage_SpanChunk

type PSpanMessage_SpanChunk struct {
	SpanChunk *PSpanChunk `protobuf:"bytes,2,opt,name=spanChunk,proto3,oneof"`
}

type PSqlMetaData

type PSqlMetaData struct {
	SqlId                int32    `protobuf:"varint,1,opt,name=sqlId,proto3" json:"sqlId,omitempty"`
	Sql                  string   `protobuf:"bytes,2,opt,name=sql,proto3" json:"sql,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PSqlMetaData) Descriptor

func (*PSqlMetaData) Descriptor() ([]byte, []int)

func (*PSqlMetaData) GetSql

func (m *PSqlMetaData) GetSql() string

func (*PSqlMetaData) GetSqlId

func (m *PSqlMetaData) GetSqlId() int32

func (*PSqlMetaData) ProtoMessage

func (*PSqlMetaData) ProtoMessage()

func (*PSqlMetaData) Reset

func (m *PSqlMetaData) Reset()

func (*PSqlMetaData) String

func (m *PSqlMetaData) String() string

func (*PSqlMetaData) XXX_DiscardUnknown

func (m *PSqlMetaData) XXX_DiscardUnknown()

func (*PSqlMetaData) XXX_Marshal

func (m *PSqlMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PSqlMetaData) XXX_Merge

func (m *PSqlMetaData) XXX_Merge(src proto.Message)

func (*PSqlMetaData) XXX_Size

func (m *PSqlMetaData) XXX_Size() int

func (*PSqlMetaData) XXX_Unmarshal

func (m *PSqlMetaData) XXX_Unmarshal(b []byte) error

type PSqlUidMetaData added in v1.4.0

type PSqlUidMetaData struct {
	SqlUid               []byte   `protobuf:"bytes,1,opt,name=sqlUid,proto3" json:"sqlUid,omitempty"`
	Sql                  string   `protobuf:"bytes,2,opt,name=sql,proto3" json:"sql,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PSqlUidMetaData) Descriptor added in v1.4.0

func (*PSqlUidMetaData) Descriptor() ([]byte, []int)

func (*PSqlUidMetaData) GetSql added in v1.4.0

func (m *PSqlUidMetaData) GetSql() string

func (*PSqlUidMetaData) GetSqlUid added in v1.4.0

func (m *PSqlUidMetaData) GetSqlUid() []byte

func (*PSqlUidMetaData) ProtoMessage added in v1.4.0

func (*PSqlUidMetaData) ProtoMessage()

func (*PSqlUidMetaData) Reset added in v1.4.0

func (m *PSqlUidMetaData) Reset()

func (*PSqlUidMetaData) String added in v1.4.0

func (m *PSqlUidMetaData) String() string

func (*PSqlUidMetaData) XXX_DiscardUnknown added in v1.4.0

func (m *PSqlUidMetaData) XXX_DiscardUnknown()

func (*PSqlUidMetaData) XXX_Marshal added in v1.4.0

func (m *PSqlUidMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PSqlUidMetaData) XXX_Merge added in v1.4.0

func (m *PSqlUidMetaData) XXX_Merge(src proto.Message)

func (*PSqlUidMetaData) XXX_Size added in v1.4.0

func (m *PSqlUidMetaData) XXX_Size() int

func (*PSqlUidMetaData) XXX_Unmarshal added in v1.4.0

func (m *PSqlUidMetaData) XXX_Unmarshal(b []byte) error

type PStackTraceElement added in v1.4.0

type PStackTraceElement struct {
	ClassName            string   `protobuf:"bytes,1,opt,name=className,proto3" json:"className,omitempty"`
	FileName             string   `protobuf:"bytes,2,opt,name=fileName,proto3" json:"fileName,omitempty"`
	LineNumber           int32    `protobuf:"varint,3,opt,name=lineNumber,proto3" json:"lineNumber,omitempty"`
	MethodName           string   `protobuf:"bytes,4,opt,name=methodName,proto3" json:"methodName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PStackTraceElement) Descriptor added in v1.4.0

func (*PStackTraceElement) Descriptor() ([]byte, []int)

func (*PStackTraceElement) GetClassName added in v1.4.0

func (m *PStackTraceElement) GetClassName() string

func (*PStackTraceElement) GetFileName added in v1.4.0

func (m *PStackTraceElement) GetFileName() string

func (*PStackTraceElement) GetLineNumber added in v1.4.0

func (m *PStackTraceElement) GetLineNumber() int32

func (*PStackTraceElement) GetMethodName added in v1.4.0

func (m *PStackTraceElement) GetMethodName() string

func (*PStackTraceElement) ProtoMessage added in v1.4.0

func (*PStackTraceElement) ProtoMessage()

func (*PStackTraceElement) Reset added in v1.4.0

func (m *PStackTraceElement) Reset()

func (*PStackTraceElement) String added in v1.4.0

func (m *PStackTraceElement) String() string

func (*PStackTraceElement) XXX_DiscardUnknown added in v1.4.0

func (m *PStackTraceElement) XXX_DiscardUnknown()

func (*PStackTraceElement) XXX_Marshal added in v1.4.0

func (m *PStackTraceElement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PStackTraceElement) XXX_Merge added in v1.4.0

func (m *PStackTraceElement) XXX_Merge(src proto.Message)

func (*PStackTraceElement) XXX_Size added in v1.4.0

func (m *PStackTraceElement) XXX_Size() int

func (*PStackTraceElement) XXX_Unmarshal added in v1.4.0

func (m *PStackTraceElement) XXX_Unmarshal(b []byte) error

type PStatMessage

type PStatMessage struct {
	// Types that are valid to be assigned to Field:
	//	*PStatMessage_AgentStat
	//	*PStatMessage_AgentStatBatch
	//	*PStatMessage_AgentUriStat
	Field                isPStatMessage_Field `protobuf_oneof:"field"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*PStatMessage) Descriptor

func (*PStatMessage) Descriptor() ([]byte, []int)

func (*PStatMessage) GetAgentStat

func (m *PStatMessage) GetAgentStat() *PAgentStat

func (*PStatMessage) GetAgentStatBatch

func (m *PStatMessage) GetAgentStatBatch() *PAgentStatBatch

func (*PStatMessage) GetAgentUriStat added in v1.0.0

func (m *PStatMessage) GetAgentUriStat() *PAgentUriStat

func (*PStatMessage) GetField

func (m *PStatMessage) GetField() isPStatMessage_Field

func (*PStatMessage) ProtoMessage

func (*PStatMessage) ProtoMessage()

func (*PStatMessage) Reset

func (m *PStatMessage) Reset()

func (*PStatMessage) String

func (m *PStatMessage) String() string

func (*PStatMessage) XXX_DiscardUnknown

func (m *PStatMessage) XXX_DiscardUnknown()

func (*PStatMessage) XXX_Marshal

func (m *PStatMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PStatMessage) XXX_Merge

func (m *PStatMessage) XXX_Merge(src proto.Message)

func (*PStatMessage) XXX_OneofWrappers

func (*PStatMessage) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*PStatMessage) XXX_Size

func (m *PStatMessage) XXX_Size() int

func (*PStatMessage) XXX_Unmarshal

func (m *PStatMessage) XXX_Unmarshal(b []byte) error

type PStatMessage_AgentStat

type PStatMessage_AgentStat struct {
	AgentStat *PAgentStat `protobuf:"bytes,1,opt,name=agentStat,proto3,oneof"`
}

type PStatMessage_AgentStatBatch

type PStatMessage_AgentStatBatch struct {
	AgentStatBatch *PAgentStatBatch `protobuf:"bytes,2,opt,name=agentStatBatch,proto3,oneof"`
}

type PStatMessage_AgentUriStat added in v1.0.0

type PStatMessage_AgentUriStat struct {
	AgentUriStat *PAgentUriStat `protobuf:"bytes,3,opt,name=agentUriStat,proto3,oneof"`
}

type PStringMetaData

type PStringMetaData struct {
	StringId             int32    `protobuf:"varint,1,opt,name=stringId,proto3" json:"stringId,omitempty"`
	StringValue          string   `protobuf:"bytes,2,opt,name=stringValue,proto3" json:"stringValue,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PStringMetaData) Descriptor

func (*PStringMetaData) Descriptor() ([]byte, []int)

func (*PStringMetaData) GetStringId

func (m *PStringMetaData) GetStringId() int32

func (*PStringMetaData) GetStringValue

func (m *PStringMetaData) GetStringValue() string

func (*PStringMetaData) ProtoMessage

func (*PStringMetaData) ProtoMessage()

func (*PStringMetaData) Reset

func (m *PStringMetaData) Reset()

func (*PStringMetaData) String

func (m *PStringMetaData) String() string

func (*PStringMetaData) XXX_DiscardUnknown

func (m *PStringMetaData) XXX_DiscardUnknown()

func (*PStringMetaData) XXX_Marshal

func (m *PStringMetaData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PStringMetaData) XXX_Merge

func (m *PStringMetaData) XXX_Merge(src proto.Message)

func (*PStringMetaData) XXX_Size

func (m *PStringMetaData) XXX_Size() int

func (*PStringMetaData) XXX_Unmarshal

func (m *PStringMetaData) XXX_Unmarshal(b []byte) error

type PStringStringValue

type PStringStringValue struct {
	StringValue1         *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=stringValue1,proto3" json:"stringValue1,omitempty"`
	StringValue2         *wrapperspb.StringValue `protobuf:"bytes,2,opt,name=stringValue2,proto3" json:"stringValue2,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*PStringStringValue) Descriptor

func (*PStringStringValue) Descriptor() ([]byte, []int)

func (*PStringStringValue) GetStringValue1

func (m *PStringStringValue) GetStringValue1() *wrapperspb.StringValue

func (*PStringStringValue) GetStringValue2

func (m *PStringStringValue) GetStringValue2() *wrapperspb.StringValue

func (*PStringStringValue) ProtoMessage

func (*PStringStringValue) ProtoMessage()

func (*PStringStringValue) Reset

func (m *PStringStringValue) Reset()

func (*PStringStringValue) String

func (m *PStringStringValue) String() string

func (*PStringStringValue) XXX_DiscardUnknown

func (m *PStringStringValue) XXX_DiscardUnknown()

func (*PStringStringValue) XXX_Marshal

func (m *PStringStringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PStringStringValue) XXX_Merge

func (m *PStringStringValue) XXX_Merge(src proto.Message)

func (*PStringStringValue) XXX_Size

func (m *PStringStringValue) XXX_Size() int

func (*PStringStringValue) XXX_Unmarshal

func (m *PStringStringValue) XXX_Unmarshal(b []byte) error

type PThreadDump

type PThreadDump struct {
	ThreadName           string          `protobuf:"bytes,1,opt,name=threadName,proto3" json:"threadName,omitempty"`
	ThreadId             int64           `protobuf:"varint,2,opt,name=threadId,proto3" json:"threadId,omitempty"`
	BlockedTime          int64           `protobuf:"varint,3,opt,name=blockedTime,proto3" json:"blockedTime,omitempty"`
	BlockedCount         int64           `protobuf:"varint,4,opt,name=blockedCount,proto3" json:"blockedCount,omitempty"`
	WaitedTime           int64           `protobuf:"varint,5,opt,name=waitedTime,proto3" json:"waitedTime,omitempty"`
	WaitedCount          int64           `protobuf:"varint,6,opt,name=waitedCount,proto3" json:"waitedCount,omitempty"`
	LockName             string          `protobuf:"bytes,7,opt,name=lockName,proto3" json:"lockName,omitempty"`
	LockOwnerId          int64           `protobuf:"varint,8,opt,name=lockOwnerId,proto3" json:"lockOwnerId,omitempty"`
	LockOwnerName        string          `protobuf:"bytes,9,opt,name=lockOwnerName,proto3" json:"lockOwnerName,omitempty"`
	InNative             bool            `protobuf:"varint,10,opt,name=inNative,proto3" json:"inNative,omitempty"`
	Suspended            bool            `protobuf:"varint,11,opt,name=suspended,proto3" json:"suspended,omitempty"`
	ThreadState          PThreadState    `protobuf:"varint,12,opt,name=threadState,proto3,enum=v1.PThreadState" json:"threadState,omitempty"`
	StackTrace           []string        `protobuf:"bytes,13,rep,name=stackTrace,proto3" json:"stackTrace,omitempty"`
	LockedMonitor        []*PMonitorInfo `protobuf:"bytes,14,rep,name=lockedMonitor,proto3" json:"lockedMonitor,omitempty"`
	LockedSynchronizer   []string        `protobuf:"bytes,15,rep,name=lockedSynchronizer,proto3" json:"lockedSynchronizer,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*PThreadDump) Descriptor

func (*PThreadDump) Descriptor() ([]byte, []int)

func (*PThreadDump) GetBlockedCount

func (m *PThreadDump) GetBlockedCount() int64

func (*PThreadDump) GetBlockedTime

func (m *PThreadDump) GetBlockedTime() int64

func (*PThreadDump) GetInNative

func (m *PThreadDump) GetInNative() bool

func (*PThreadDump) GetLockName

func (m *PThreadDump) GetLockName() string

func (*PThreadDump) GetLockOwnerId

func (m *PThreadDump) GetLockOwnerId() int64

func (*PThreadDump) GetLockOwnerName

func (m *PThreadDump) GetLockOwnerName() string

func (*PThreadDump) GetLockedMonitor

func (m *PThreadDump) GetLockedMonitor() []*PMonitorInfo

func (*PThreadDump) GetLockedSynchronizer

func (m *PThreadDump) GetLockedSynchronizer() []string

func (*PThreadDump) GetStackTrace

func (m *PThreadDump) GetStackTrace() []string

func (*PThreadDump) GetSuspended

func (m *PThreadDump) GetSuspended() bool

func (*PThreadDump) GetThreadId

func (m *PThreadDump) GetThreadId() int64

func (*PThreadDump) GetThreadName

func (m *PThreadDump) GetThreadName() string

func (*PThreadDump) GetThreadState

func (m *PThreadDump) GetThreadState() PThreadState

func (*PThreadDump) GetWaitedCount

func (m *PThreadDump) GetWaitedCount() int64

func (*PThreadDump) GetWaitedTime

func (m *PThreadDump) GetWaitedTime() int64

func (*PThreadDump) ProtoMessage

func (*PThreadDump) ProtoMessage()

func (*PThreadDump) Reset

func (m *PThreadDump) Reset()

func (*PThreadDump) String

func (m *PThreadDump) String() string

func (*PThreadDump) XXX_DiscardUnknown

func (m *PThreadDump) XXX_DiscardUnknown()

func (*PThreadDump) XXX_Marshal

func (m *PThreadDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PThreadDump) XXX_Merge

func (m *PThreadDump) XXX_Merge(src proto.Message)

func (*PThreadDump) XXX_Size

func (m *PThreadDump) XXX_Size() int

func (*PThreadDump) XXX_Unmarshal

func (m *PThreadDump) XXX_Unmarshal(b []byte) error

type PThreadDumpType

type PThreadDumpType int32
const (
	PThreadDumpType_TARGET  PThreadDumpType = 0
	PThreadDumpType_PENDING PThreadDumpType = 1
)

func (PThreadDumpType) EnumDescriptor

func (PThreadDumpType) EnumDescriptor() ([]byte, []int)

func (PThreadDumpType) String

func (x PThreadDumpType) String() string

type PThreadLightDump

type PThreadLightDump struct {
	ThreadName           string       `protobuf:"bytes,1,opt,name=threadName,proto3" json:"threadName,omitempty"`
	ThreadId             int64        `protobuf:"varint,2,opt,name=threadId,proto3" json:"threadId,omitempty"`
	ThreadState          PThreadState `protobuf:"varint,3,opt,name=threadState,proto3,enum=v1.PThreadState" json:"threadState,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*PThreadLightDump) Descriptor

func (*PThreadLightDump) Descriptor() ([]byte, []int)

func (*PThreadLightDump) GetThreadId

func (m *PThreadLightDump) GetThreadId() int64

func (*PThreadLightDump) GetThreadName

func (m *PThreadLightDump) GetThreadName() string

func (*PThreadLightDump) GetThreadState

func (m *PThreadLightDump) GetThreadState() PThreadState

func (*PThreadLightDump) ProtoMessage

func (*PThreadLightDump) ProtoMessage()

func (*PThreadLightDump) Reset

func (m *PThreadLightDump) Reset()

func (*PThreadLightDump) String

func (m *PThreadLightDump) String() string

func (*PThreadLightDump) XXX_DiscardUnknown

func (m *PThreadLightDump) XXX_DiscardUnknown()

func (*PThreadLightDump) XXX_Marshal

func (m *PThreadLightDump) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PThreadLightDump) XXX_Merge

func (m *PThreadLightDump) XXX_Merge(src proto.Message)

func (*PThreadLightDump) XXX_Size

func (m *PThreadLightDump) XXX_Size() int

func (*PThreadLightDump) XXX_Unmarshal

func (m *PThreadLightDump) XXX_Unmarshal(b []byte) error

type PThreadState

type PThreadState int32
const (
	PThreadState_THREAD_STATE_NEW           PThreadState = 0
	PThreadState_THREAD_STATE_RUNNABLE      PThreadState = 1
	PThreadState_THREAD_STATE_BLOCKED       PThreadState = 2
	PThreadState_THREAD_STATE_WAITING       PThreadState = 3
	PThreadState_THREAD_STATE_TIMED_WAITING PThreadState = 4
	PThreadState_THREAD_STATE_TERMINATED    PThreadState = 5
	PThreadState_THREAD_STATE_UNKNOWN       PThreadState = 6
)

func (PThreadState) EnumDescriptor

func (PThreadState) EnumDescriptor() ([]byte, []int)

func (PThreadState) String

func (x PThreadState) String() string

type PTotalThread added in v1.0.0

type PTotalThread struct {
	TotalThreadCount     int64    `protobuf:"varint,1,opt,name=totalThreadCount,proto3" json:"totalThreadCount,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PTotalThread) Descriptor added in v1.0.0

func (*PTotalThread) Descriptor() ([]byte, []int)

func (*PTotalThread) GetTotalThreadCount added in v1.0.0

func (m *PTotalThread) GetTotalThreadCount() int64

func (*PTotalThread) ProtoMessage added in v1.0.0

func (*PTotalThread) ProtoMessage()

func (*PTotalThread) Reset added in v1.0.0

func (m *PTotalThread) Reset()

func (*PTotalThread) String added in v1.0.0

func (m *PTotalThread) String() string

func (*PTotalThread) XXX_DiscardUnknown added in v1.2.0

func (m *PTotalThread) XXX_DiscardUnknown()

func (*PTotalThread) XXX_Marshal added in v1.2.0

func (m *PTotalThread) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PTotalThread) XXX_Merge added in v1.2.0

func (m *PTotalThread) XXX_Merge(src proto.Message)

func (*PTotalThread) XXX_Size added in v1.2.0

func (m *PTotalThread) XXX_Size() int

func (*PTotalThread) XXX_Unmarshal added in v1.2.0

func (m *PTotalThread) XXX_Unmarshal(b []byte) error

type PTransaction

type PTransaction struct {
	SampledNewCount            int64    `protobuf:"varint,2,opt,name=sampledNewCount,proto3" json:"sampledNewCount,omitempty"`
	SampledContinuationCount   int64    `protobuf:"varint,3,opt,name=sampledContinuationCount,proto3" json:"sampledContinuationCount,omitempty"`
	UnsampledNewCount          int64    `protobuf:"varint,4,opt,name=unsampledNewCount,proto3" json:"unsampledNewCount,omitempty"`
	UnsampledContinuationCount int64    `protobuf:"varint,5,opt,name=unsampledContinuationCount,proto3" json:"unsampledContinuationCount,omitempty"`
	SkippedNewCount            int64    `protobuf:"varint,6,opt,name=skippedNewCount,proto3" json:"skippedNewCount,omitempty"`
	SkippedContinuationCount   int64    `protobuf:"varint,7,opt,name=skippedContinuationCount,proto3" json:"skippedContinuationCount,omitempty"`
	XXX_NoUnkeyedLiteral       struct{} `json:"-"`
	XXX_unrecognized           []byte   `json:"-"`
	XXX_sizecache              int32    `json:"-"`
}

func (*PTransaction) Descriptor

func (*PTransaction) Descriptor() ([]byte, []int)

func (*PTransaction) GetSampledContinuationCount

func (m *PTransaction) GetSampledContinuationCount() int64

func (*PTransaction) GetSampledNewCount

func (m *PTransaction) GetSampledNewCount() int64

func (*PTransaction) GetSkippedContinuationCount

func (m *PTransaction) GetSkippedContinuationCount() int64

func (*PTransaction) GetSkippedNewCount

func (m *PTransaction) GetSkippedNewCount() int64

func (*PTransaction) GetUnsampledContinuationCount

func (m *PTransaction) GetUnsampledContinuationCount() int64

func (*PTransaction) GetUnsampledNewCount

func (m *PTransaction) GetUnsampledNewCount() int64

func (*PTransaction) ProtoMessage

func (*PTransaction) ProtoMessage()

func (*PTransaction) Reset

func (m *PTransaction) Reset()

func (*PTransaction) String

func (m *PTransaction) String() string

func (*PTransaction) XXX_DiscardUnknown

func (m *PTransaction) XXX_DiscardUnknown()

func (*PTransaction) XXX_Marshal

func (m *PTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PTransaction) XXX_Merge

func (m *PTransaction) XXX_Merge(src proto.Message)

func (*PTransaction) XXX_Size

func (m *PTransaction) XXX_Size() int

func (*PTransaction) XXX_Unmarshal

func (m *PTransaction) XXX_Unmarshal(b []byte) error

type PTransactionId

type PTransactionId struct {
	// identical to agentId if null
	AgentId              string   `protobuf:"bytes,1,opt,name=agentId,proto3" json:"agentId,omitempty"`
	AgentStartTime       int64    `protobuf:"varint,2,opt,name=agentStartTime,proto3" json:"agentStartTime,omitempty"`
	Sequence             int64    `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PTransactionId) Descriptor

func (*PTransactionId) Descriptor() ([]byte, []int)

func (*PTransactionId) GetAgentId

func (m *PTransactionId) GetAgentId() string

func (*PTransactionId) GetAgentStartTime

func (m *PTransactionId) GetAgentStartTime() int64

func (*PTransactionId) GetSequence

func (m *PTransactionId) GetSequence() int64

func (*PTransactionId) ProtoMessage

func (*PTransactionId) ProtoMessage()

func (*PTransactionId) Reset

func (m *PTransactionId) Reset()

func (*PTransactionId) String

func (m *PTransactionId) String() string

func (*PTransactionId) XXX_DiscardUnknown

func (m *PTransactionId) XXX_DiscardUnknown()

func (*PTransactionId) XXX_Marshal

func (m *PTransactionId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PTransactionId) XXX_Merge

func (m *PTransactionId) XXX_Merge(src proto.Message)

func (*PTransactionId) XXX_Size

func (m *PTransactionId) XXX_Size() int

func (*PTransactionId) XXX_Unmarshal

func (m *PTransactionId) XXX_Unmarshal(b []byte) error

type PUriHistogram added in v1.0.0

type PUriHistogram struct {
	Total                int64    `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	Max                  int64    `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
	Histogram            []int32  `protobuf:"varint,3,rep,packed,name=histogram,proto3" json:"histogram,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PUriHistogram) Descriptor added in v1.0.0

func (*PUriHistogram) Descriptor() ([]byte, []int)

func (*PUriHistogram) GetHistogram added in v1.0.0

func (m *PUriHistogram) GetHistogram() []int32

func (*PUriHistogram) GetMax added in v1.0.0

func (m *PUriHistogram) GetMax() int64

func (*PUriHistogram) GetTotal added in v1.3.0

func (m *PUriHistogram) GetTotal() int64

func (*PUriHistogram) ProtoMessage added in v1.0.0

func (*PUriHistogram) ProtoMessage()

func (*PUriHistogram) Reset added in v1.0.0

func (m *PUriHistogram) Reset()

func (*PUriHistogram) String added in v1.0.0

func (m *PUriHistogram) String() string

func (*PUriHistogram) XXX_DiscardUnknown added in v1.2.0

func (m *PUriHistogram) XXX_DiscardUnknown()

func (*PUriHistogram) XXX_Marshal added in v1.2.0

func (m *PUriHistogram) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PUriHistogram) XXX_Merge added in v1.2.0

func (m *PUriHistogram) XXX_Merge(src proto.Message)

func (*PUriHistogram) XXX_Size added in v1.2.0

func (m *PUriHistogram) XXX_Size() int

func (*PUriHistogram) XXX_Unmarshal added in v1.2.0

func (m *PUriHistogram) XXX_Unmarshal(b []byte) error

type ProfilerCommandServiceClient

type ProfilerCommandServiceClient interface {
	// deprecated api
	HandleCommand(ctx context.Context, opts ...grpc.CallOption) (ProfilerCommandService_HandleCommandClient, error)
	HandleCommandV2(ctx context.Context, opts ...grpc.CallOption) (ProfilerCommandService_HandleCommandV2Client, error)
	CommandEcho(ctx context.Context, in *PCmdEchoResponse, opts ...grpc.CallOption) (*emptypb.Empty, error)
	CommandStreamActiveThreadCount(ctx context.Context, opts ...grpc.CallOption) (ProfilerCommandService_CommandStreamActiveThreadCountClient, error)
	CommandActiveThreadDump(ctx context.Context, in *PCmdActiveThreadDumpRes, opts ...grpc.CallOption) (*emptypb.Empty, error)
	CommandActiveThreadLightDump(ctx context.Context, in *PCmdActiveThreadLightDumpRes, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

ProfilerCommandServiceClient is the client API for ProfilerCommandService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewProfilerCommandServiceClient

func NewProfilerCommandServiceClient(cc *grpc.ClientConn) ProfilerCommandServiceClient

type ProfilerCommandServiceServer

type ProfilerCommandServiceServer interface {
	// deprecated api
	HandleCommand(ProfilerCommandService_HandleCommandServer) error
	HandleCommandV2(ProfilerCommandService_HandleCommandV2Server) error
	CommandEcho(context.Context, *PCmdEchoResponse) (*emptypb.Empty, error)
	CommandStreamActiveThreadCount(ProfilerCommandService_CommandStreamActiveThreadCountServer) error
	CommandActiveThreadDump(context.Context, *PCmdActiveThreadDumpRes) (*emptypb.Empty, error)
	CommandActiveThreadLightDump(context.Context, *PCmdActiveThreadLightDumpRes) (*emptypb.Empty, error)
}

ProfilerCommandServiceServer is the server API for ProfilerCommandService service.

type ProfilerCommandService_CommandStreamActiveThreadCountClient

type ProfilerCommandService_CommandStreamActiveThreadCountClient interface {
	Send(*PCmdActiveThreadCountRes) error
	CloseAndRecv() (*emptypb.Empty, error)
	grpc.ClientStream
}

type ProfilerCommandService_CommandStreamActiveThreadCountServer

type ProfilerCommandService_CommandStreamActiveThreadCountServer interface {
	SendAndClose(*emptypb.Empty) error
	Recv() (*PCmdActiveThreadCountRes, error)
	grpc.ServerStream
}

type ProfilerCommandService_HandleCommandClient

type ProfilerCommandService_HandleCommandClient interface {
	Send(*PCmdMessage) error
	Recv() (*PCmdRequest, error)
	grpc.ClientStream
}

type ProfilerCommandService_HandleCommandServer

type ProfilerCommandService_HandleCommandServer interface {
	Send(*PCmdRequest) error
	Recv() (*PCmdMessage, error)
	grpc.ServerStream
}

type ProfilerCommandService_HandleCommandV2Client added in v1.0.0

type ProfilerCommandService_HandleCommandV2Client interface {
	Send(*PCmdMessage) error
	Recv() (*PCmdRequest, error)
	grpc.ClientStream
}

type ProfilerCommandService_HandleCommandV2Server added in v1.0.0

type ProfilerCommandService_HandleCommandV2Server interface {
	Send(*PCmdRequest) error
	Recv() (*PCmdMessage, error)
	grpc.ServerStream
}

type SpanClient

type SpanClient interface {
	SendSpan(ctx context.Context, opts ...grpc.CallOption) (Span_SendSpanClient, error)
}

SpanClient is the client API for Span service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewSpanClient

func NewSpanClient(cc *grpc.ClientConn) SpanClient

type SpanServer

type SpanServer interface {
	SendSpan(Span_SendSpanServer) error
}

SpanServer is the server API for Span service.

type Span_SendSpanClient

type Span_SendSpanClient interface {
	Send(*PSpanMessage) error
	CloseAndRecv() (*emptypb.Empty, error)
	grpc.ClientStream
}

type Span_SendSpanServer

type Span_SendSpanServer interface {
	SendAndClose(*emptypb.Empty) error
	Recv() (*PSpanMessage, error)
	grpc.ServerStream
}

type StatClient

type StatClient interface {
	SendAgentStat(ctx context.Context, opts ...grpc.CallOption) (Stat_SendAgentStatClient, error)
}

StatClient is the client API for Stat service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewStatClient

func NewStatClient(cc *grpc.ClientConn) StatClient

type StatServer

type StatServer interface {
	SendAgentStat(Stat_SendAgentStatServer) error
}

StatServer is the server API for Stat service.

type Stat_SendAgentStatClient

type Stat_SendAgentStatClient interface {
	Send(*PStatMessage) error
	CloseAndRecv() (*emptypb.Empty, error)
	grpc.ClientStream
}

type Stat_SendAgentStatServer

type Stat_SendAgentStatServer interface {
	SendAndClose(*emptypb.Empty) error
	Recv() (*PStatMessage, error)
	grpc.ServerStream
}

type UnimplementedAgentServer

type UnimplementedAgentServer struct {
}

UnimplementedAgentServer can be embedded to have forward compatible implementations.

func (*UnimplementedAgentServer) PingSession

func (*UnimplementedAgentServer) RequestAgentInfo

func (*UnimplementedAgentServer) RequestAgentInfo(ctx context.Context, req *PAgentInfo) (*PResult, error)

type UnimplementedMetadataServer

type UnimplementedMetadataServer struct {
}

UnimplementedMetadataServer can be embedded to have forward compatible implementations.

func (*UnimplementedMetadataServer) RequestApiMetaData

func (*UnimplementedMetadataServer) RequestApiMetaData(ctx context.Context, req *PApiMetaData) (*PResult, error)

func (*UnimplementedMetadataServer) RequestExceptionMetaData added in v1.4.0

func (*UnimplementedMetadataServer) RequestExceptionMetaData(ctx context.Context, req *PExceptionMetaData) (*PResult, error)

func (*UnimplementedMetadataServer) RequestSqlMetaData

func (*UnimplementedMetadataServer) RequestSqlMetaData(ctx context.Context, req *PSqlMetaData) (*PResult, error)

func (*UnimplementedMetadataServer) RequestSqlUidMetaData added in v1.4.0

func (*UnimplementedMetadataServer) RequestSqlUidMetaData(ctx context.Context, req *PSqlUidMetaData) (*PResult, error)

func (*UnimplementedMetadataServer) RequestStringMetaData

func (*UnimplementedMetadataServer) RequestStringMetaData(ctx context.Context, req *PStringMetaData) (*PResult, error)

type UnimplementedProfilerCommandServiceServer

type UnimplementedProfilerCommandServiceServer struct {
}

UnimplementedProfilerCommandServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedProfilerCommandServiceServer) CommandActiveThreadDump

func (*UnimplementedProfilerCommandServiceServer) CommandActiveThreadLightDump

func (*UnimplementedProfilerCommandServiceServer) CommandEcho

func (*UnimplementedProfilerCommandServiceServer) CommandStreamActiveThreadCount

func (*UnimplementedProfilerCommandServiceServer) HandleCommand

func (*UnimplementedProfilerCommandServiceServer) HandleCommandV2 added in v1.0.0

type UnimplementedSpanServer

type UnimplementedSpanServer struct {
}

UnimplementedSpanServer can be embedded to have forward compatible implementations.

func (*UnimplementedSpanServer) SendSpan

type UnimplementedStatServer

type UnimplementedStatServer struct {
}

UnimplementedStatServer can be embedded to have forward compatible implementations.

func (*UnimplementedStatServer) SendAgentStat

Directories

Path Synopsis
Package mock_v1 is a generated GoMock package.
Package mock_v1 is a generated GoMock package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL