Documentation ¶
Index ¶
- Variables
- type CPU
- func (*CPU) Descriptor() ([]byte, []int)
- func (m *CPU) GetUsagePercent() float64
- func (*CPU) ProtoMessage()
- func (m *CPU) Reset()
- func (m *CPU) String() string
- func (m *CPU) XXX_DiscardUnknown()
- func (m *CPU) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *CPU) XXX_Merge(src proto.Message)
- func (m *CPU) XXX_Size() int
- func (m *CPU) XXX_Unmarshal(b []byte) error
- type Command
- func (*Command) Descriptor() ([]byte, []int)
- func (m *Command) GetArgs() []*KeyStringValuePair
- func (m *Command) GetCommand() string
- func (*Command) ProtoMessage()
- func (m *Command) Reset()
- func (m *Command) String() string
- func (m *Command) XXX_DiscardUnknown()
- func (m *Command) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Command) XXX_Merge(src proto.Message)
- func (m *Command) XXX_Size() int
- func (m *Command) XXX_Unmarshal(b []byte) error
- type Commands
- func (*Commands) Descriptor() ([]byte, []int)
- func (m *Commands) GetCommands() []*Command
- func (*Commands) ProtoMessage()
- func (m *Commands) Reset()
- func (m *Commands) String() string
- func (m *Commands) XXX_DiscardUnknown()
- func (m *Commands) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Commands) XXX_Merge(src proto.Message)
- func (m *Commands) XXX_Size() int
- func (m *Commands) XXX_Unmarshal(b []byte) error
- type DetectPoint
- type KeyStringValuePair
- func (*KeyStringValuePair) Descriptor() ([]byte, []int)
- func (m *KeyStringValuePair) GetKey() string
- func (m *KeyStringValuePair) GetValue() string
- func (*KeyStringValuePair) ProtoMessage()
- func (m *KeyStringValuePair) Reset()
- func (m *KeyStringValuePair) String() string
- func (m *KeyStringValuePair) XXX_DiscardUnknown()
- func (m *KeyStringValuePair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *KeyStringValuePair) XXX_Merge(src proto.Message)
- func (m *KeyStringValuePair) XXX_Size() int
- func (m *KeyStringValuePair) XXX_Unmarshal(b []byte) error
- type ServiceType
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type CPU ¶
type Command ¶
type Command struct { Command string `protobuf:"bytes,1,opt,name=command,proto3" json:"command,omitempty"` Args []*KeyStringValuePair `protobuf:"bytes,2,rep,name=args,proto3" json:"args,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Command) GetArgs ¶
func (m *Command) GetArgs() []*KeyStringValuePair
func (*Command) XXX_Marshal ¶
type Commands ¶
type Commands struct { Commands []*Command `protobuf:"bytes,1,rep,name=commands,proto3" json:"commands,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Commands) XXX_Marshal ¶
type DetectPoint ¶
type DetectPoint int32
In most cases, detect point should be `server` or `client`. Even in service mesh, this means `server`/`client` side sidecar `proxy` is reserved only.
const ( DetectPoint_client DetectPoint = 0 DetectPoint_server DetectPoint = 1 DetectPoint_proxy DetectPoint = 2 )
func (DetectPoint) EnumDescriptor ¶
func (DetectPoint) EnumDescriptor() ([]byte, []int)
func (DetectPoint) String ¶
func (x DetectPoint) String() string
type KeyStringValuePair ¶
type KeyStringValuePair struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*KeyStringValuePair) Descriptor ¶
func (*KeyStringValuePair) Descriptor() ([]byte, []int)
func (*KeyStringValuePair) GetKey ¶
func (m *KeyStringValuePair) GetKey() string
func (*KeyStringValuePair) GetValue ¶
func (m *KeyStringValuePair) GetValue() string
func (*KeyStringValuePair) ProtoMessage ¶
func (*KeyStringValuePair) ProtoMessage()
func (*KeyStringValuePair) Reset ¶
func (m *KeyStringValuePair) Reset()
func (*KeyStringValuePair) String ¶
func (m *KeyStringValuePair) String() string
func (*KeyStringValuePair) XXX_DiscardUnknown ¶
func (m *KeyStringValuePair) XXX_DiscardUnknown()
func (*KeyStringValuePair) XXX_Marshal ¶
func (m *KeyStringValuePair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*KeyStringValuePair) XXX_Merge ¶
func (m *KeyStringValuePair) XXX_Merge(src proto.Message)
func (*KeyStringValuePair) XXX_Size ¶
func (m *KeyStringValuePair) XXX_Size() int
func (*KeyStringValuePair) XXX_Unmarshal ¶
func (m *KeyStringValuePair) XXX_Unmarshal(b []byte) error
type ServiceType ¶
type ServiceType int32
const ( // An agent works inside the normal business application. ServiceType_normal ServiceType = 0 // An agent works inside the database. ServiceType_database ServiceType = 1 // An agent works inside the MQ. ServiceType_mq ServiceType = 2 // An agent works inside the cache server. ServiceType_cache ServiceType = 3 // An agent works inside the browser. ServiceType_browser ServiceType = 4 )
func (ServiceType) EnumDescriptor ¶
func (ServiceType) EnumDescriptor() ([]byte, []int)
func (ServiceType) String ¶
func (x ServiceType) String() string
Click to show internal directories.
Click to hide internal directories.