command

package
v1.5.1 Latest Latest
Warning

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

Go to latest
Published: Sep 19, 2021 License: MPL-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_app_stats_command_command_proto protoreflect.FileDescriptor
View Source
var StatsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "xray.app.stats.command.StatsService",
	HandlerType: (*StatsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetStats",
			Handler:    _StatsService_GetStats_Handler,
		},
		{
			MethodName: "QueryStats",
			Handler:    _StatsService_QueryStats_Handler,
		},
		{
			MethodName: "GetSysStats",
			Handler:    _StatsService_GetSysStats_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "app/stats/command/command.proto",
}

StatsService_ServiceDesc is the grpc.ServiceDesc for StatsService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterStatsServiceServer

func RegisterStatsServiceServer(s grpc.ServiceRegistrar, srv StatsServiceServer)

Types

type Config

type Config struct {
	// contains filtered or unexported fields
}

func (*Config) Descriptor deprecated

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

Deprecated: Use Config.ProtoReflect.Descriptor instead.

func (*Config) ProtoMessage

func (*Config) ProtoMessage()

func (*Config) ProtoReflect

func (x *Config) ProtoReflect() protoreflect.Message

func (*Config) Reset

func (x *Config) Reset()

func (*Config) String

func (x *Config) String() string

type GetStatsRequest

type GetStatsRequest struct {

	// Name of the stat counter.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Whether or not to reset the counter to fetching its value.
	Reset_ bool `protobuf:"varint,2,opt,name=reset,proto3" json:"reset,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStatsRequest) Descriptor deprecated

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

Deprecated: Use GetStatsRequest.ProtoReflect.Descriptor instead.

func (*GetStatsRequest) GetName

func (x *GetStatsRequest) GetName() string

func (*GetStatsRequest) GetReset_

func (x *GetStatsRequest) GetReset_() bool

func (*GetStatsRequest) ProtoMessage

func (*GetStatsRequest) ProtoMessage()

func (*GetStatsRequest) ProtoReflect

func (x *GetStatsRequest) ProtoReflect() protoreflect.Message

func (*GetStatsRequest) Reset

func (x *GetStatsRequest) Reset()

func (*GetStatsRequest) String

func (x *GetStatsRequest) String() string

type GetStatsResponse

type GetStatsResponse struct {
	Stat *Stat `protobuf:"bytes,1,opt,name=stat,proto3" json:"stat,omitempty"`
	// contains filtered or unexported fields
}

func (*GetStatsResponse) Descriptor deprecated

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

Deprecated: Use GetStatsResponse.ProtoReflect.Descriptor instead.

func (*GetStatsResponse) GetStat

func (x *GetStatsResponse) GetStat() *Stat

func (*GetStatsResponse) ProtoMessage

func (*GetStatsResponse) ProtoMessage()

func (*GetStatsResponse) ProtoReflect

func (x *GetStatsResponse) ProtoReflect() protoreflect.Message

func (*GetStatsResponse) Reset

func (x *GetStatsResponse) Reset()

func (*GetStatsResponse) String

func (x *GetStatsResponse) String() string

type QueryStatsRequest

type QueryStatsRequest struct {
	Pattern string `protobuf:"bytes,1,opt,name=pattern,proto3" json:"pattern,omitempty"`
	Reset_  bool   `protobuf:"varint,2,opt,name=reset,proto3" json:"reset,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryStatsRequest) Descriptor deprecated

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

Deprecated: Use QueryStatsRequest.ProtoReflect.Descriptor instead.

func (*QueryStatsRequest) GetPattern

func (x *QueryStatsRequest) GetPattern() string

func (*QueryStatsRequest) GetReset_

func (x *QueryStatsRequest) GetReset_() bool

func (*QueryStatsRequest) ProtoMessage

func (*QueryStatsRequest) ProtoMessage()

func (*QueryStatsRequest) ProtoReflect

func (x *QueryStatsRequest) ProtoReflect() protoreflect.Message

func (*QueryStatsRequest) Reset

func (x *QueryStatsRequest) Reset()

func (*QueryStatsRequest) String

func (x *QueryStatsRequest) String() string

type QueryStatsResponse

type QueryStatsResponse struct {
	Stat []*Stat `protobuf:"bytes,1,rep,name=stat,proto3" json:"stat,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryStatsResponse) Descriptor deprecated

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

Deprecated: Use QueryStatsResponse.ProtoReflect.Descriptor instead.

func (*QueryStatsResponse) GetStat

func (x *QueryStatsResponse) GetStat() []*Stat

func (*QueryStatsResponse) ProtoMessage

func (*QueryStatsResponse) ProtoMessage()

func (*QueryStatsResponse) ProtoReflect

func (x *QueryStatsResponse) ProtoReflect() protoreflect.Message

func (*QueryStatsResponse) Reset

func (x *QueryStatsResponse) Reset()

func (*QueryStatsResponse) String

func (x *QueryStatsResponse) String() string

type Stat

type Stat struct {
	Name  string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Value int64  `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Stat) Descriptor deprecated

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

Deprecated: Use Stat.ProtoReflect.Descriptor instead.

func (*Stat) GetName

func (x *Stat) GetName() string

func (*Stat) GetValue

func (x *Stat) GetValue() int64

func (*Stat) ProtoMessage

func (*Stat) ProtoMessage()

func (*Stat) ProtoReflect

func (x *Stat) ProtoReflect() protoreflect.Message

func (*Stat) Reset

func (x *Stat) Reset()

func (*Stat) String

func (x *Stat) String() string

type StatsServiceClient

type StatsServiceClient interface {
	GetStats(ctx context.Context, in *GetStatsRequest, opts ...grpc.CallOption) (*GetStatsResponse, error)
	QueryStats(ctx context.Context, in *QueryStatsRequest, opts ...grpc.CallOption) (*QueryStatsResponse, error)
	GetSysStats(ctx context.Context, in *SysStatsRequest, opts ...grpc.CallOption) (*SysStatsResponse, error)
}

StatsServiceClient is the client API for StatsService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type StatsServiceServer

type StatsServiceServer interface {
	GetStats(context.Context, *GetStatsRequest) (*GetStatsResponse, error)
	QueryStats(context.Context, *QueryStatsRequest) (*QueryStatsResponse, error)
	GetSysStats(context.Context, *SysStatsRequest) (*SysStatsResponse, error)
	// contains filtered or unexported methods
}

StatsServiceServer is the server API for StatsService service. All implementations must embed UnimplementedStatsServiceServer for forward compatibility

func NewStatsServer

func NewStatsServer(manager feature_stats.Manager) StatsServiceServer

type SysStatsRequest

type SysStatsRequest struct {
	// contains filtered or unexported fields
}

func (*SysStatsRequest) Descriptor deprecated

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

Deprecated: Use SysStatsRequest.ProtoReflect.Descriptor instead.

func (*SysStatsRequest) ProtoMessage

func (*SysStatsRequest) ProtoMessage()

func (*SysStatsRequest) ProtoReflect

func (x *SysStatsRequest) ProtoReflect() protoreflect.Message

func (*SysStatsRequest) Reset

func (x *SysStatsRequest) Reset()

func (*SysStatsRequest) String

func (x *SysStatsRequest) String() string

type SysStatsResponse

type SysStatsResponse struct {
	NumGoroutine uint32 `protobuf:"varint,1,opt,name=NumGoroutine,proto3" json:"NumGoroutine,omitempty"`
	NumGC        uint32 `protobuf:"varint,2,opt,name=NumGC,proto3" json:"NumGC,omitempty"`
	Alloc        uint64 `protobuf:"varint,3,opt,name=Alloc,proto3" json:"Alloc,omitempty"`
	TotalAlloc   uint64 `protobuf:"varint,4,opt,name=TotalAlloc,proto3" json:"TotalAlloc,omitempty"`
	Sys          uint64 `protobuf:"varint,5,opt,name=Sys,proto3" json:"Sys,omitempty"`
	Mallocs      uint64 `protobuf:"varint,6,opt,name=Mallocs,proto3" json:"Mallocs,omitempty"`
	Frees        uint64 `protobuf:"varint,7,opt,name=Frees,proto3" json:"Frees,omitempty"`
	LiveObjects  uint64 `protobuf:"varint,8,opt,name=LiveObjects,proto3" json:"LiveObjects,omitempty"`
	PauseTotalNs uint64 `protobuf:"varint,9,opt,name=PauseTotalNs,proto3" json:"PauseTotalNs,omitempty"`
	Uptime       uint32 `protobuf:"varint,10,opt,name=Uptime,proto3" json:"Uptime,omitempty"`
	// contains filtered or unexported fields
}

func (*SysStatsResponse) Descriptor deprecated

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

Deprecated: Use SysStatsResponse.ProtoReflect.Descriptor instead.

func (*SysStatsResponse) GetAlloc

func (x *SysStatsResponse) GetAlloc() uint64

func (*SysStatsResponse) GetFrees

func (x *SysStatsResponse) GetFrees() uint64

func (*SysStatsResponse) GetLiveObjects

func (x *SysStatsResponse) GetLiveObjects() uint64

func (*SysStatsResponse) GetMallocs

func (x *SysStatsResponse) GetMallocs() uint64

func (*SysStatsResponse) GetNumGC

func (x *SysStatsResponse) GetNumGC() uint32

func (*SysStatsResponse) GetNumGoroutine

func (x *SysStatsResponse) GetNumGoroutine() uint32

func (*SysStatsResponse) GetPauseTotalNs

func (x *SysStatsResponse) GetPauseTotalNs() uint64

func (*SysStatsResponse) GetSys

func (x *SysStatsResponse) GetSys() uint64

func (*SysStatsResponse) GetTotalAlloc

func (x *SysStatsResponse) GetTotalAlloc() uint64

func (*SysStatsResponse) GetUptime

func (x *SysStatsResponse) GetUptime() uint32

func (*SysStatsResponse) ProtoMessage

func (*SysStatsResponse) ProtoMessage()

func (*SysStatsResponse) ProtoReflect

func (x *SysStatsResponse) ProtoReflect() protoreflect.Message

func (*SysStatsResponse) Reset

func (x *SysStatsResponse) Reset()

func (*SysStatsResponse) String

func (x *SysStatsResponse) String() string

type UnimplementedStatsServiceServer

type UnimplementedStatsServiceServer struct {
}

UnimplementedStatsServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedStatsServiceServer) GetStats

func (UnimplementedStatsServiceServer) GetSysStats

func (UnimplementedStatsServiceServer) QueryStats

type UnsafeStatsServiceServer

type UnsafeStatsServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeStatsServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to StatsServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

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