mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-24 22:26:54 +02:00
move debug handler
This commit is contained in:
@ -7,7 +7,7 @@ import (
|
|||||||
|
|
||||||
"github.com/micro/go-micro/v2/client"
|
"github.com/micro/go-micro/v2/client"
|
||||||
"github.com/micro/go-micro/v2/debug/log"
|
"github.com/micro/go-micro/v2/debug/log"
|
||||||
proto "github.com/micro/go-micro/v2/debug/service/proto"
|
proto "github.com/micro/go-micro/v2/debug/proto"
|
||||||
"github.com/micro/go-micro/v2/debug/stats"
|
"github.com/micro/go-micro/v2/debug/stats"
|
||||||
"github.com/micro/go-micro/v2/debug/trace"
|
"github.com/micro/go-micro/v2/debug/trace"
|
||||||
"github.com/micro/go-micro/v2/server"
|
"github.com/micro/go-micro/v2/server"
|
||||||
@ -19,7 +19,6 @@ func NewHandler(c client.Client) *Debug {
|
|||||||
log: log.DefaultLog,
|
log: log.DefaultLog,
|
||||||
stats: stats.DefaultStats,
|
stats: stats.DefaultStats,
|
||||||
trace: trace.DefaultTracer,
|
trace: trace.DefaultTracer,
|
||||||
cache: c.Options().Cache,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -32,8 +31,6 @@ type Debug struct {
|
|||||||
stats stats.Stats
|
stats stats.Stats
|
||||||
// the tracer
|
// the tracer
|
||||||
trace trace.Tracer
|
trace trace.Tracer
|
||||||
// the cache
|
|
||||||
cache *client.Cache
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Debug) Health(ctx context.Context, req *proto.HealthRequest, rsp *proto.HealthResponse) error {
|
func (d *Debug) Health(ctx context.Context, req *proto.HealthRequest, rsp *proto.HealthResponse) error {
|
||||||
@ -168,9 +165,3 @@ func (d *Debug) Log(ctx context.Context, stream server.Stream) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cache returns all the key value pairs in the client cache
|
|
||||||
func (d *Debug) Cache(ctx context.Context, req *proto.CacheRequest, rsp *proto.CacheResponse) error {
|
|
||||||
rsp.Values = d.cache.List()
|
|
||||||
return nil
|
|
||||||
}
|
|
@ -1,15 +1,11 @@
|
|||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||||
// source: debug/service/proto/debug.proto
|
// source: proto/debug.proto
|
||||||
|
|
||||||
package debug
|
package debug
|
||||||
|
|
||||||
import (
|
import (
|
||||||
context "context"
|
|
||||||
fmt "fmt"
|
fmt "fmt"
|
||||||
proto "github.com/golang/protobuf/proto"
|
proto "github.com/golang/protobuf/proto"
|
||||||
grpc "google.golang.org/grpc"
|
|
||||||
codes "google.golang.org/grpc/codes"
|
|
||||||
status "google.golang.org/grpc/status"
|
|
||||||
math "math"
|
math "math"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -46,7 +42,7 @@ func (x SpanType) String() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (SpanType) EnumDescriptor() ([]byte, []int) {
|
func (SpanType) EnumDescriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{0}
|
return fileDescriptor_466b588516b7ea56, []int{0}
|
||||||
}
|
}
|
||||||
|
|
||||||
type HealthRequest struct {
|
type HealthRequest struct {
|
||||||
@ -61,7 +57,7 @@ func (m *HealthRequest) Reset() { *m = HealthRequest{} }
|
|||||||
func (m *HealthRequest) String() string { return proto.CompactTextString(m) }
|
func (m *HealthRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*HealthRequest) ProtoMessage() {}
|
func (*HealthRequest) ProtoMessage() {}
|
||||||
func (*HealthRequest) Descriptor() ([]byte, []int) {
|
func (*HealthRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{0}
|
return fileDescriptor_466b588516b7ea56, []int{0}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *HealthRequest) XXX_Unmarshal(b []byte) error {
|
func (m *HealthRequest) XXX_Unmarshal(b []byte) error {
|
||||||
@ -101,7 +97,7 @@ func (m *HealthResponse) Reset() { *m = HealthResponse{} }
|
|||||||
func (m *HealthResponse) String() string { return proto.CompactTextString(m) }
|
func (m *HealthResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*HealthResponse) ProtoMessage() {}
|
func (*HealthResponse) ProtoMessage() {}
|
||||||
func (*HealthResponse) Descriptor() ([]byte, []int) {
|
func (*HealthResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{1}
|
return fileDescriptor_466b588516b7ea56, []int{1}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *HealthResponse) XXX_Unmarshal(b []byte) error {
|
func (m *HealthResponse) XXX_Unmarshal(b []byte) error {
|
||||||
@ -141,7 +137,7 @@ func (m *StatsRequest) Reset() { *m = StatsRequest{} }
|
|||||||
func (m *StatsRequest) String() string { return proto.CompactTextString(m) }
|
func (m *StatsRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*StatsRequest) ProtoMessage() {}
|
func (*StatsRequest) ProtoMessage() {}
|
||||||
func (*StatsRequest) Descriptor() ([]byte, []int) {
|
func (*StatsRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{2}
|
return fileDescriptor_466b588516b7ea56, []int{2}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *StatsRequest) XXX_Unmarshal(b []byte) error {
|
func (m *StatsRequest) XXX_Unmarshal(b []byte) error {
|
||||||
@ -195,7 +191,7 @@ func (m *StatsResponse) Reset() { *m = StatsResponse{} }
|
|||||||
func (m *StatsResponse) String() string { return proto.CompactTextString(m) }
|
func (m *StatsResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*StatsResponse) ProtoMessage() {}
|
func (*StatsResponse) ProtoMessage() {}
|
||||||
func (*StatsResponse) Descriptor() ([]byte, []int) {
|
func (*StatsResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{3}
|
return fileDescriptor_466b588516b7ea56, []int{3}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *StatsResponse) XXX_Unmarshal(b []byte) error {
|
func (m *StatsResponse) XXX_Unmarshal(b []byte) error {
|
||||||
@ -293,7 +289,7 @@ func (m *LogRequest) Reset() { *m = LogRequest{} }
|
|||||||
func (m *LogRequest) String() string { return proto.CompactTextString(m) }
|
func (m *LogRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*LogRequest) ProtoMessage() {}
|
func (*LogRequest) ProtoMessage() {}
|
||||||
func (*LogRequest) Descriptor() ([]byte, []int) {
|
func (*LogRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{4}
|
return fileDescriptor_466b588516b7ea56, []int{4}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *LogRequest) XXX_Unmarshal(b []byte) error {
|
func (m *LogRequest) XXX_Unmarshal(b []byte) error {
|
||||||
@ -359,7 +355,7 @@ func (m *Record) Reset() { *m = Record{} }
|
|||||||
func (m *Record) String() string { return proto.CompactTextString(m) }
|
func (m *Record) String() string { return proto.CompactTextString(m) }
|
||||||
func (*Record) ProtoMessage() {}
|
func (*Record) ProtoMessage() {}
|
||||||
func (*Record) Descriptor() ([]byte, []int) {
|
func (*Record) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{5}
|
return fileDescriptor_466b588516b7ea56, []int{5}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Record) XXX_Unmarshal(b []byte) error {
|
func (m *Record) XXX_Unmarshal(b []byte) error {
|
||||||
@ -413,7 +409,7 @@ func (m *TraceRequest) Reset() { *m = TraceRequest{} }
|
|||||||
func (m *TraceRequest) String() string { return proto.CompactTextString(m) }
|
func (m *TraceRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*TraceRequest) ProtoMessage() {}
|
func (*TraceRequest) ProtoMessage() {}
|
||||||
func (*TraceRequest) Descriptor() ([]byte, []int) {
|
func (*TraceRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{6}
|
return fileDescriptor_466b588516b7ea56, []int{6}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *TraceRequest) XXX_Unmarshal(b []byte) error {
|
func (m *TraceRequest) XXX_Unmarshal(b []byte) error {
|
||||||
@ -452,7 +448,7 @@ func (m *TraceResponse) Reset() { *m = TraceResponse{} }
|
|||||||
func (m *TraceResponse) String() string { return proto.CompactTextString(m) }
|
func (m *TraceResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*TraceResponse) ProtoMessage() {}
|
func (*TraceResponse) ProtoMessage() {}
|
||||||
func (*TraceResponse) Descriptor() ([]byte, []int) {
|
func (*TraceResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{7}
|
return fileDescriptor_466b588516b7ea56, []int{7}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *TraceResponse) XXX_Unmarshal(b []byte) error {
|
func (m *TraceResponse) XXX_Unmarshal(b []byte) error {
|
||||||
@ -505,7 +501,7 @@ func (m *Span) Reset() { *m = Span{} }
|
|||||||
func (m *Span) String() string { return proto.CompactTextString(m) }
|
func (m *Span) String() string { return proto.CompactTextString(m) }
|
||||||
func (*Span) ProtoMessage() {}
|
func (*Span) ProtoMessage() {}
|
||||||
func (*Span) Descriptor() ([]byte, []int) {
|
func (*Span) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{8}
|
return fileDescriptor_466b588516b7ea56, []int{8}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Span) XXX_Unmarshal(b []byte) error {
|
func (m *Span) XXX_Unmarshal(b []byte) error {
|
||||||
@ -582,76 +578,6 @@ func (m *Span) GetType() SpanType {
|
|||||||
return SpanType_INBOUND
|
return SpanType_INBOUND
|
||||||
}
|
}
|
||||||
|
|
||||||
type CacheRequest struct {
|
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
||||||
XXX_unrecognized []byte `json:"-"`
|
|
||||||
XXX_sizecache int32 `json:"-"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *CacheRequest) Reset() { *m = CacheRequest{} }
|
|
||||||
func (m *CacheRequest) String() string { return proto.CompactTextString(m) }
|
|
||||||
func (*CacheRequest) ProtoMessage() {}
|
|
||||||
func (*CacheRequest) Descriptor() ([]byte, []int) {
|
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{9}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *CacheRequest) XXX_Unmarshal(b []byte) error {
|
|
||||||
return xxx_messageInfo_CacheRequest.Unmarshal(m, b)
|
|
||||||
}
|
|
||||||
func (m *CacheRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
||||||
return xxx_messageInfo_CacheRequest.Marshal(b, m, deterministic)
|
|
||||||
}
|
|
||||||
func (m *CacheRequest) XXX_Merge(src proto.Message) {
|
|
||||||
xxx_messageInfo_CacheRequest.Merge(m, src)
|
|
||||||
}
|
|
||||||
func (m *CacheRequest) XXX_Size() int {
|
|
||||||
return xxx_messageInfo_CacheRequest.Size(m)
|
|
||||||
}
|
|
||||||
func (m *CacheRequest) XXX_DiscardUnknown() {
|
|
||||||
xxx_messageInfo_CacheRequest.DiscardUnknown(m)
|
|
||||||
}
|
|
||||||
|
|
||||||
var xxx_messageInfo_CacheRequest proto.InternalMessageInfo
|
|
||||||
|
|
||||||
type CacheResponse struct {
|
|
||||||
Values map[string]string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
|
||||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
||||||
XXX_unrecognized []byte `json:"-"`
|
|
||||||
XXX_sizecache int32 `json:"-"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *CacheResponse) Reset() { *m = CacheResponse{} }
|
|
||||||
func (m *CacheResponse) String() string { return proto.CompactTextString(m) }
|
|
||||||
func (*CacheResponse) ProtoMessage() {}
|
|
||||||
func (*CacheResponse) Descriptor() ([]byte, []int) {
|
|
||||||
return fileDescriptor_df91f41a5db378e6, []int{10}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (m *CacheResponse) XXX_Unmarshal(b []byte) error {
|
|
||||||
return xxx_messageInfo_CacheResponse.Unmarshal(m, b)
|
|
||||||
}
|
|
||||||
func (m *CacheResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
||||||
return xxx_messageInfo_CacheResponse.Marshal(b, m, deterministic)
|
|
||||||
}
|
|
||||||
func (m *CacheResponse) XXX_Merge(src proto.Message) {
|
|
||||||
xxx_messageInfo_CacheResponse.Merge(m, src)
|
|
||||||
}
|
|
||||||
func (m *CacheResponse) XXX_Size() int {
|
|
||||||
return xxx_messageInfo_CacheResponse.Size(m)
|
|
||||||
}
|
|
||||||
func (m *CacheResponse) XXX_DiscardUnknown() {
|
|
||||||
xxx_messageInfo_CacheResponse.DiscardUnknown(m)
|
|
||||||
}
|
|
||||||
|
|
||||||
var xxx_messageInfo_CacheResponse proto.InternalMessageInfo
|
|
||||||
|
|
||||||
func (m *CacheResponse) GetValues() map[string]string {
|
|
||||||
if m != nil {
|
|
||||||
return m.Values
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterEnum("SpanType", SpanType_name, SpanType_value)
|
proto.RegisterEnum("SpanType", SpanType_name, SpanType_value)
|
||||||
proto.RegisterType((*HealthRequest)(nil), "HealthRequest")
|
proto.RegisterType((*HealthRequest)(nil), "HealthRequest")
|
||||||
@ -665,306 +591,47 @@ func init() {
|
|||||||
proto.RegisterType((*TraceResponse)(nil), "TraceResponse")
|
proto.RegisterType((*TraceResponse)(nil), "TraceResponse")
|
||||||
proto.RegisterType((*Span)(nil), "Span")
|
proto.RegisterType((*Span)(nil), "Span")
|
||||||
proto.RegisterMapType((map[string]string)(nil), "Span.MetadataEntry")
|
proto.RegisterMapType((map[string]string)(nil), "Span.MetadataEntry")
|
||||||
proto.RegisterType((*CacheRequest)(nil), "CacheRequest")
|
|
||||||
proto.RegisterType((*CacheResponse)(nil), "CacheResponse")
|
|
||||||
proto.RegisterMapType((map[string]string)(nil), "CacheResponse.ValuesEntry")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("debug/service/proto/debug.proto", fileDescriptor_df91f41a5db378e6) }
|
func init() { proto.RegisterFile("proto/debug.proto", fileDescriptor_466b588516b7ea56) }
|
||||||
|
|
||||||
var fileDescriptor_df91f41a5db378e6 = []byte{
|
var fileDescriptor_466b588516b7ea56 = []byte{
|
||||||
// 646 bytes of a gzipped FileDescriptorProto
|
// 589 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xdb, 0x6e, 0xd3, 0x4a,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xdb, 0x6e, 0xd3, 0x40,
|
||||||
0x14, 0x8d, 0xed, 0x38, 0xb1, 0x77, 0x62, 0x9f, 0x6a, 0xce, 0x45, 0x96, 0x0f, 0xd0, 0xca, 0x12,
|
0x10, 0x8d, 0xed, 0x38, 0xb1, 0xa7, 0x8d, 0x29, 0xcb, 0x45, 0x96, 0xb9, 0x55, 0x96, 0x90, 0xc2,
|
||||||
0x52, 0xb8, 0x68, 0x02, 0xe1, 0x85, 0xcb, 0x1b, 0x14, 0x09, 0xa4, 0xd2, 0x4a, 0xd3, 0x96, 0xf7,
|
0x45, 0x2e, 0x94, 0x17, 0x04, 0x6f, 0xa8, 0x48, 0x20, 0x95, 0x56, 0xda, 0xb6, 0x1f, 0xb0, 0xb5,
|
||||||
0xa9, 0x3d, 0x4a, 0x03, 0xf5, 0x85, 0x99, 0x71, 0xa5, 0xbc, 0xf0, 0x23, 0xfc, 0x04, 0xff, 0x82,
|
0x47, 0xae, 0xa1, 0xbe, 0xb0, 0xbb, 0xae, 0x94, 0x6f, 0xe1, 0x0b, 0x78, 0xe3, 0x67, 0xf8, 0x1f,
|
||||||
0xf8, 0x1f, 0x34, 0x17, 0xb7, 0xb6, 0x10, 0xaa, 0x10, 0x6f, 0x5e, 0x6b, 0xaf, 0xd9, 0xd9, 0x7b,
|
0xb4, 0x17, 0xa7, 0xb1, 0x10, 0xea, 0x03, 0x6f, 0x7b, 0xce, 0xce, 0x9e, 0xcc, 0x9c, 0x1c, 0x0f,
|
||||||
0x69, 0x65, 0xc3, 0x6e, 0xc1, 0xce, 0xda, 0xf5, 0x52, 0x30, 0x7e, 0xb9, 0xc9, 0xd9, 0xb2, 0xe1,
|
0xdc, 0xee, 0x78, 0x2b, 0xdb, 0xbd, 0x02, 0xcf, 0xfb, 0x32, 0xd3, 0xe7, 0xf4, 0x19, 0x2c, 0x3e,
|
||||||
0xb5, 0xac, 0x97, 0x9a, 0xc3, 0xfa, 0x3b, 0xbb, 0x07, 0xd1, 0x1b, 0x46, 0x2f, 0xe4, 0x39, 0x61,
|
0x21, 0xbb, 0x94, 0x17, 0x14, 0xbf, 0xf7, 0x28, 0x24, 0x89, 0x61, 0x2e, 0x90, 0x5f, 0x55, 0x39,
|
||||||
0x9f, 0x5a, 0x26, 0x24, 0x4a, 0x60, 0x6a, 0xd5, 0x89, 0xb3, 0xe7, 0x2c, 0x42, 0xd2, 0xc1, 0x6c,
|
0xc6, 0xce, 0xae, 0xb3, 0x0c, 0xe9, 0x00, 0xd3, 0x25, 0x44, 0x43, 0xa9, 0xe8, 0xda, 0x46, 0x20,
|
||||||
0x01, 0x71, 0x27, 0x15, 0x4d, 0x5d, 0x09, 0x86, 0xfe, 0x83, 0x89, 0x90, 0x54, 0xb6, 0xc2, 0x4a,
|
0xb9, 0x0f, 0x33, 0x21, 0x99, 0xec, 0x85, 0x2d, 0xb5, 0x28, 0x5d, 0xc2, 0xf6, 0x89, 0x64, 0x52,
|
||||||
0x2d, 0xca, 0x16, 0x30, 0x3f, 0x96, 0x54, 0x8a, 0x9b, 0x7b, 0x7e, 0x77, 0x20, 0xb2, 0x52, 0xdb,
|
0xdc, 0xac, 0xf9, 0xdb, 0x81, 0x85, 0x2d, 0xb5, 0x9a, 0x0f, 0x21, 0x94, 0x55, 0x8d, 0x42, 0xb2,
|
||||||
0xf3, 0x16, 0x84, 0x72, 0x53, 0x32, 0x21, 0x69, 0xd9, 0x68, 0xf5, 0x98, 0x5c, 0x13, 0xba, 0x93,
|
0xba, 0xd3, 0xd5, 0x53, 0x7a, 0x4d, 0x68, 0x25, 0xc9, 0xb8, 0xc4, 0x22, 0x76, 0xf5, 0xdd, 0x00,
|
||||||
0xa4, 0x5c, 0xb2, 0x22, 0x71, 0x75, 0xad, 0x83, 0x6a, 0x96, 0xb6, 0x51, 0xc2, 0xc4, 0xd3, 0x05,
|
0x55, 0x2f, 0x7d, 0xa7, 0x0a, 0x63, 0x4f, 0x5f, 0x58, 0xa4, 0xf8, 0x1a, 0xeb, 0x96, 0xaf, 0xe2,
|
||||||
0x8b, 0x14, 0x5f, 0xb2, 0xb2, 0xe6, 0xdb, 0x64, 0x6c, 0x78, 0x83, 0x54, 0x27, 0x79, 0xce, 0x19,
|
0xa9, 0xe1, 0x0d, 0x52, 0x4a, 0xf2, 0x82, 0x23, 0x2b, 0x44, 0xec, 0x1b, 0x25, 0x0b, 0x49, 0x04,
|
||||||
0x2d, 0x44, 0xe2, 0x9b, 0x4e, 0x16, 0xa2, 0x18, 0xdc, 0x75, 0x9e, 0x4c, 0x34, 0xe9, 0xae, 0x73,
|
0x6e, 0x99, 0xc7, 0x33, 0x4d, 0xba, 0x65, 0x4e, 0x12, 0x08, 0xb8, 0x19, 0x44, 0xc4, 0x73, 0xcd,
|
||||||
0x94, 0x42, 0xc0, 0xcd, 0x22, 0x22, 0x99, 0x6a, 0xf6, 0x0a, 0xab, 0xee, 0x8c, 0xf3, 0x9a, 0x8b,
|
0xae, 0xb1, 0x52, 0x47, 0xce, 0x5b, 0x2e, 0xe2, 0xc0, 0xa8, 0x1b, 0x94, 0x7e, 0x05, 0x38, 0x6c,
|
||||||
0x24, 0x30, 0xdd, 0x0d, 0xca, 0x3e, 0x00, 0x1c, 0xd4, 0xeb, 0x1b, 0xf7, 0x37, 0x0e, 0x72, 0x46,
|
0xcb, 0x1b, 0xe7, 0x37, 0x0e, 0x72, 0x64, 0xb5, 0x1e, 0x27, 0xa0, 0x16, 0x91, 0xbb, 0xe0, 0xe7,
|
||||||
0x4b, 0xbd, 0x4e, 0x40, 0x2c, 0x42, 0xff, 0x80, 0x9f, 0xd7, 0x6d, 0x25, 0xf5, 0x32, 0x1e, 0x31,
|
0x6d, 0xdf, 0x48, 0x3d, 0x8c, 0x47, 0x0d, 0x50, 0xac, 0xa8, 0x9a, 0x1c, 0xf5, 0x28, 0x1e, 0x35,
|
||||||
0x40, 0xb1, 0x62, 0x53, 0xe5, 0x4c, 0xaf, 0xe2, 0x11, 0x03, 0xb2, 0xaf, 0x0e, 0x4c, 0x08, 0xcb,
|
0x20, 0xfd, 0xe5, 0xc0, 0x8c, 0x62, 0xde, 0xf2, 0xe2, 0x6f, 0xf3, 0xbc, 0x4d, 0xf3, 0x5e, 0x43,
|
||||||
0x6b, 0x5e, 0xfc, 0x6c, 0x9e, 0xd7, 0x37, 0xef, 0x31, 0x04, 0x25, 0x93, 0xb4, 0xa0, 0x92, 0x26,
|
0x50, 0xa3, 0x64, 0x05, 0x93, 0x2c, 0x76, 0x77, 0xbd, 0xe5, 0xd6, 0xfe, 0xbd, 0xcc, 0x3c, 0xcc,
|
||||||
0xee, 0x9e, 0xb7, 0x98, 0xad, 0xfe, 0xc5, 0xe6, 0x21, 0x7e, 0x67, 0xf9, 0xd7, 0x95, 0xe4, 0x5b,
|
0xbe, 0x58, 0xfe, 0x63, 0x23, 0xf9, 0x8a, 0xae, 0xcb, 0x54, 0xe7, 0x35, 0x0a, 0xc1, 0x4a, 0x63,
|
||||||
0x72, 0x25, 0x53, 0x93, 0x97, 0x4c, 0x08, 0xba, 0x36, 0xb6, 0x86, 0xa4, 0x83, 0xe9, 0x0b, 0x88,
|
0x6b, 0x48, 0x07, 0x98, 0xbc, 0x87, 0xc5, 0xe8, 0x11, 0xd9, 0x01, 0xef, 0x1b, 0xae, 0xec, 0x80,
|
||||||
0x06, 0x8f, 0xd0, 0x0e, 0x78, 0x1f, 0xd9, 0xd6, 0x2e, 0xa8, 0x3e, 0xd5, 0xb8, 0x97, 0xf4, 0xa2,
|
0xea, 0xa8, 0xda, 0xbd, 0x62, 0x97, 0x3d, 0xea, 0xd9, 0x42, 0x6a, 0xc0, 0x3b, 0xf7, 0xad, 0x93,
|
||||||
0x65, 0x7a, 0xb7, 0x90, 0x18, 0xf0, 0xdc, 0x7d, 0xea, 0x64, 0x77, 0x60, 0x7e, 0xc2, 0x69, 0xce,
|
0x3e, 0x86, 0xed, 0x53, 0xce, 0x72, 0x1c, 0x0c, 0x8a, 0xc0, 0xad, 0x0a, 0xfb, 0xd4, 0xad, 0x8a,
|
||||||
0x3a, 0x83, 0x62, 0x70, 0x37, 0x85, 0x7d, 0xea, 0x6e, 0x8a, 0xec, 0x21, 0x44, 0xb6, 0x6e, 0x53,
|
0xf4, 0x25, 0x2c, 0xec, 0xbd, 0x4d, 0xc5, 0x03, 0xf0, 0x45, 0xc7, 0x1a, 0x15, 0x34, 0xd5, 0xb7,
|
||||||
0xf1, 0x3f, 0xf8, 0xa2, 0xa1, 0x95, 0x0a, 0x9a, 0x9a, 0xdb, 0xc7, 0xc7, 0x0d, 0xad, 0x88, 0xe1,
|
0x9f, 0x9d, 0x74, 0xac, 0xa1, 0x86, 0x4b, 0x7f, 0xb8, 0x30, 0x55, 0x58, 0xfd, 0xa0, 0x54, 0xcf,
|
||||||
0xb2, 0x2f, 0x2e, 0x8c, 0x15, 0x56, 0x3f, 0x28, 0xd5, 0x33, 0xdb, 0xc9, 0x00, 0xdb, 0xdc, 0xed,
|
0xac, 0x92, 0x01, 0x56, 0xdc, 0x1d, 0xc4, 0x95, 0xe7, 0x1d, 0xe3, 0x68, 0xcd, 0x0d, 0xa9, 0x45,
|
||||||
0x9a, 0x2b, 0xcf, 0x1b, 0xca, 0x99, 0x35, 0x37, 0x24, 0x16, 0x21, 0x04, 0xe3, 0x8a, 0x96, 0xc6,
|
0x84, 0xc0, 0xb4, 0x61, 0xb5, 0x31, 0x37, 0xa4, 0xfa, 0xbc, 0x99, 0x37, 0x7f, 0x9c, 0xb7, 0x04,
|
||||||
0xdc, 0x90, 0xe8, 0xef, 0x7e, 0xde, 0xfc, 0x61, 0xde, 0x52, 0x08, 0x8a, 0x96, 0x53, 0xb9, 0xa9,
|
0x82, 0xa2, 0xe7, 0x4c, 0x56, 0x6d, 0x63, 0xb3, 0xb2, 0xc6, 0x64, 0x6f, 0xc3, 0xe8, 0xb9, 0x6e,
|
||||||
0x2b, 0x9b, 0x95, 0x2b, 0x8c, 0x96, 0x3d, 0xa3, 0xa7, 0x7a, 0xe0, 0xbf, 0xf5, 0xc0, 0xbf, 0xb4,
|
0xf8, 0x8e, 0x6e, 0xf8, 0x9f, 0x36, 0x3f, 0x82, 0xa9, 0x5c, 0x75, 0xa8, 0x43, 0x14, 0xed, 0x87,
|
||||||
0xf9, 0x36, 0x8c, 0xe5, 0xb6, 0x61, 0x3a, 0x44, 0xf1, 0x2a, 0xd4, 0xe2, 0x93, 0x6d, 0xc3, 0x88,
|
0xba, 0xf8, 0x74, 0xd5, 0x21, 0xd5, 0xf4, 0x7f, 0x79, 0xfd, 0xfc, 0x29, 0x04, 0x83, 0x1c, 0xd9,
|
||||||
0xa6, 0xff, 0xcc, 0xeb, 0x18, 0xe6, 0xaf, 0x68, 0x7e, 0xde, 0x79, 0x9d, 0x7d, 0x86, 0xc8, 0x62,
|
0x82, 0xf9, 0xe7, 0xa3, 0x0f, 0xc7, 0x67, 0x47, 0x07, 0x3b, 0x13, 0xb2, 0x0d, 0xc1, 0xf1, 0xd9,
|
||||||
0xeb, 0xed, 0x0a, 0x26, 0x5a, 0xdd, 0x99, 0x9b, 0xe2, 0x41, 0x1d, 0xbf, 0xd7, 0x45, 0x33, 0xb2,
|
0xa9, 0x41, 0xce, 0xfe, 0x4f, 0x07, 0xfc, 0x03, 0xb5, 0x18, 0xc8, 0x13, 0xf0, 0x0e, 0xdb, 0x92,
|
||||||
0x55, 0xa6, 0xcf, 0x60, 0xd6, 0xa3, 0x7f, 0x67, 0x9e, 0xfb, 0x77, 0x21, 0xe8, 0xd6, 0x43, 0x33,
|
0x6c, 0x65, 0xd7, 0x09, 0x4e, 0xe6, 0x36, 0x28, 0xe9, 0xe4, 0x95, 0x43, 0x5e, 0xc0, 0xcc, 0x2c,
|
||||||
0x98, 0xbe, 0x3d, 0x7c, 0x79, 0x74, 0x7a, 0xb8, 0xbf, 0x33, 0x42, 0x73, 0x08, 0x8e, 0x4e, 0x4f,
|
0x02, 0x12, 0x65, 0xa3, 0xe5, 0x91, 0xdc, 0xca, 0xc6, 0x1b, 0x22, 0x9d, 0x90, 0x25, 0xf8, 0xfa,
|
||||||
0x0c, 0x72, 0x56, 0xdf, 0x1c, 0xf0, 0xf7, 0xd5, 0xa1, 0x42, 0xbb, 0xe0, 0x1d, 0xd4, 0x6b, 0x34,
|
0x03, 0x27, 0x8b, 0x6c, 0x73, 0x27, 0x24, 0x51, 0x36, 0xfa, 0xee, 0x4d, 0xa5, 0xfe, 0xd3, 0xc9,
|
||||||
0xc3, 0xd7, 0xff, 0xa8, 0x74, 0x6a, 0x83, 0x9b, 0x8d, 0x1e, 0x39, 0xe8, 0x01, 0x4c, 0xcc, 0x61,
|
0x22, 0xdb, 0x0c, 0x47, 0x12, 0x65, 0xa3, 0x2c, 0xa4, 0x93, 0xf3, 0x99, 0xde, 0x5d, 0x6f, 0xfe,
|
||||||
0x42, 0x31, 0x1e, 0x1c, 0xb3, 0xf4, 0x2f, 0x3c, 0xbc, 0x58, 0xd9, 0x08, 0x2d, 0xc0, 0xd7, 0x07,
|
0x04, 0x00, 0x00, 0xff, 0xff, 0x4c, 0x2d, 0xec, 0xd8, 0xd0, 0x04, 0x00, 0x00,
|
||||||
0x07, 0x45, 0xb8, 0x7f, 0xa3, 0xd2, 0x18, 0x0f, 0xee, 0x90, 0x51, 0xea, 0x10, 0xa2, 0x08, 0xf7,
|
|
||||||
0xc3, 0x9a, 0xc6, 0x78, 0x90, 0x4d, 0xa3, 0xd4, 0x96, 0xa1, 0x08, 0xf7, 0xad, 0x4e, 0xe3, 0xa1,
|
|
||||||
0x93, 0xd9, 0xe8, 0x6c, 0xa2, 0xaf, 0xee, 0x93, 0x1f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x22, 0x65,
|
|
||||||
0x99, 0x10, 0x98, 0x05, 0x00, 0x00,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Reference imports to suppress errors if they are not otherwise used.
|
|
||||||
var _ context.Context
|
|
||||||
var _ grpc.ClientConn
|
|
||||||
|
|
||||||
// This is a compile-time assertion to ensure that this generated file
|
|
||||||
// is compatible with the grpc package it is being compiled against.
|
|
||||||
const _ = grpc.SupportPackageIsVersion4
|
|
||||||
|
|
||||||
// DebugClient is the client API for Debug service.
|
|
||||||
//
|
|
||||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
||||||
type DebugClient interface {
|
|
||||||
Log(ctx context.Context, in *LogRequest, opts ...grpc.CallOption) (Debug_LogClient, error)
|
|
||||||
Health(ctx context.Context, in *HealthRequest, opts ...grpc.CallOption) (*HealthResponse, error)
|
|
||||||
Stats(ctx context.Context, in *StatsRequest, opts ...grpc.CallOption) (*StatsResponse, error)
|
|
||||||
Trace(ctx context.Context, in *TraceRequest, opts ...grpc.CallOption) (*TraceResponse, error)
|
|
||||||
Cache(ctx context.Context, in *CacheRequest, opts ...grpc.CallOption) (*CacheResponse, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
type debugClient struct {
|
|
||||||
cc *grpc.ClientConn
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewDebugClient(cc *grpc.ClientConn) DebugClient {
|
|
||||||
return &debugClient{cc}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *debugClient) Log(ctx context.Context, in *LogRequest, opts ...grpc.CallOption) (Debug_LogClient, error) {
|
|
||||||
stream, err := c.cc.NewStream(ctx, &_Debug_serviceDesc.Streams[0], "/Debug/Log", opts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
x := &debugLogClient{stream}
|
|
||||||
if err := x.ClientStream.SendMsg(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if err := x.ClientStream.CloseSend(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return x, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type Debug_LogClient interface {
|
|
||||||
Recv() (*Record, error)
|
|
||||||
grpc.ClientStream
|
|
||||||
}
|
|
||||||
|
|
||||||
type debugLogClient struct {
|
|
||||||
grpc.ClientStream
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *debugLogClient) Recv() (*Record, error) {
|
|
||||||
m := new(Record)
|
|
||||||
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return m, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *debugClient) Health(ctx context.Context, in *HealthRequest, opts ...grpc.CallOption) (*HealthResponse, error) {
|
|
||||||
out := new(HealthResponse)
|
|
||||||
err := c.cc.Invoke(ctx, "/Debug/Health", in, out, opts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *debugClient) Stats(ctx context.Context, in *StatsRequest, opts ...grpc.CallOption) (*StatsResponse, error) {
|
|
||||||
out := new(StatsResponse)
|
|
||||||
err := c.cc.Invoke(ctx, "/Debug/Stats", in, out, opts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *debugClient) Trace(ctx context.Context, in *TraceRequest, opts ...grpc.CallOption) (*TraceResponse, error) {
|
|
||||||
out := new(TraceResponse)
|
|
||||||
err := c.cc.Invoke(ctx, "/Debug/Trace", in, out, opts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *debugClient) Cache(ctx context.Context, in *CacheRequest, opts ...grpc.CallOption) (*CacheResponse, error) {
|
|
||||||
out := new(CacheResponse)
|
|
||||||
err := c.cc.Invoke(ctx, "/Debug/Cache", in, out, opts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// DebugServer is the server API for Debug service.
|
|
||||||
type DebugServer interface {
|
|
||||||
Log(*LogRequest, Debug_LogServer) error
|
|
||||||
Health(context.Context, *HealthRequest) (*HealthResponse, error)
|
|
||||||
Stats(context.Context, *StatsRequest) (*StatsResponse, error)
|
|
||||||
Trace(context.Context, *TraceRequest) (*TraceResponse, error)
|
|
||||||
Cache(context.Context, *CacheRequest) (*CacheResponse, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
// UnimplementedDebugServer can be embedded to have forward compatible implementations.
|
|
||||||
type UnimplementedDebugServer struct {
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*UnimplementedDebugServer) Log(req *LogRequest, srv Debug_LogServer) error {
|
|
||||||
return status.Errorf(codes.Unimplemented, "method Log not implemented")
|
|
||||||
}
|
|
||||||
func (*UnimplementedDebugServer) Health(ctx context.Context, req *HealthRequest) (*HealthResponse, error) {
|
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method Health not implemented")
|
|
||||||
}
|
|
||||||
func (*UnimplementedDebugServer) Stats(ctx context.Context, req *StatsRequest) (*StatsResponse, error) {
|
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method Stats not implemented")
|
|
||||||
}
|
|
||||||
func (*UnimplementedDebugServer) Trace(ctx context.Context, req *TraceRequest) (*TraceResponse, error) {
|
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method Trace not implemented")
|
|
||||||
}
|
|
||||||
func (*UnimplementedDebugServer) Cache(ctx context.Context, req *CacheRequest) (*CacheResponse, error) {
|
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method Cache not implemented")
|
|
||||||
}
|
|
||||||
|
|
||||||
func RegisterDebugServer(s *grpc.Server, srv DebugServer) {
|
|
||||||
s.RegisterService(&_Debug_serviceDesc, srv)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _Debug_Log_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
||||||
m := new(LogRequest)
|
|
||||||
if err := stream.RecvMsg(m); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
return srv.(DebugServer).Log(m, &debugLogServer{stream})
|
|
||||||
}
|
|
||||||
|
|
||||||
type Debug_LogServer interface {
|
|
||||||
Send(*Record) error
|
|
||||||
grpc.ServerStream
|
|
||||||
}
|
|
||||||
|
|
||||||
type debugLogServer struct {
|
|
||||||
grpc.ServerStream
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *debugLogServer) Send(m *Record) error {
|
|
||||||
return x.ServerStream.SendMsg(m)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _Debug_Health_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
||||||
in := new(HealthRequest)
|
|
||||||
if err := dec(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if interceptor == nil {
|
|
||||||
return srv.(DebugServer).Health(ctx, in)
|
|
||||||
}
|
|
||||||
info := &grpc.UnaryServerInfo{
|
|
||||||
Server: srv,
|
|
||||||
FullMethod: "/Debug/Health",
|
|
||||||
}
|
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
||||||
return srv.(DebugServer).Health(ctx, req.(*HealthRequest))
|
|
||||||
}
|
|
||||||
return interceptor(ctx, in, info, handler)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _Debug_Stats_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
||||||
in := new(StatsRequest)
|
|
||||||
if err := dec(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if interceptor == nil {
|
|
||||||
return srv.(DebugServer).Stats(ctx, in)
|
|
||||||
}
|
|
||||||
info := &grpc.UnaryServerInfo{
|
|
||||||
Server: srv,
|
|
||||||
FullMethod: "/Debug/Stats",
|
|
||||||
}
|
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
||||||
return srv.(DebugServer).Stats(ctx, req.(*StatsRequest))
|
|
||||||
}
|
|
||||||
return interceptor(ctx, in, info, handler)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _Debug_Trace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
||||||
in := new(TraceRequest)
|
|
||||||
if err := dec(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if interceptor == nil {
|
|
||||||
return srv.(DebugServer).Trace(ctx, in)
|
|
||||||
}
|
|
||||||
info := &grpc.UnaryServerInfo{
|
|
||||||
Server: srv,
|
|
||||||
FullMethod: "/Debug/Trace",
|
|
||||||
}
|
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
||||||
return srv.(DebugServer).Trace(ctx, req.(*TraceRequest))
|
|
||||||
}
|
|
||||||
return interceptor(ctx, in, info, handler)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _Debug_Cache_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
||||||
in := new(CacheRequest)
|
|
||||||
if err := dec(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if interceptor == nil {
|
|
||||||
return srv.(DebugServer).Cache(ctx, in)
|
|
||||||
}
|
|
||||||
info := &grpc.UnaryServerInfo{
|
|
||||||
Server: srv,
|
|
||||||
FullMethod: "/Debug/Cache",
|
|
||||||
}
|
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
||||||
return srv.(DebugServer).Cache(ctx, req.(*CacheRequest))
|
|
||||||
}
|
|
||||||
return interceptor(ctx, in, info, handler)
|
|
||||||
}
|
|
||||||
|
|
||||||
var _Debug_serviceDesc = grpc.ServiceDesc{
|
|
||||||
ServiceName: "Debug",
|
|
||||||
HandlerType: (*DebugServer)(nil),
|
|
||||||
Methods: []grpc.MethodDesc{
|
|
||||||
{
|
|
||||||
MethodName: "Health",
|
|
||||||
Handler: _Debug_Health_Handler,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
MethodName: "Stats",
|
|
||||||
Handler: _Debug_Stats_Handler,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
MethodName: "Trace",
|
|
||||||
Handler: _Debug_Trace_Handler,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
MethodName: "Cache",
|
|
||||||
Handler: _Debug_Cache_Handler,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Streams: []grpc.StreamDesc{
|
|
||||||
{
|
|
||||||
StreamName: "Log",
|
|
||||||
Handler: _Debug_Log_Handler,
|
|
||||||
ServerStreams: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Metadata: "debug/service/proto/debug.proto",
|
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
// Code generated by protoc-gen-micro. DO NOT EDIT.
|
// Code generated by protoc-gen-micro. DO NOT EDIT.
|
||||||
// source: debug/service/proto/debug.proto
|
// source: proto/debug.proto
|
||||||
|
|
||||||
package debug
|
package debug
|
||||||
|
|
||||||
@ -46,7 +46,6 @@ type DebugService interface {
|
|||||||
Health(ctx context.Context, in *HealthRequest, opts ...client.CallOption) (*HealthResponse, error)
|
Health(ctx context.Context, in *HealthRequest, opts ...client.CallOption) (*HealthResponse, error)
|
||||||
Stats(ctx context.Context, in *StatsRequest, opts ...client.CallOption) (*StatsResponse, error)
|
Stats(ctx context.Context, in *StatsRequest, opts ...client.CallOption) (*StatsResponse, error)
|
||||||
Trace(ctx context.Context, in *TraceRequest, opts ...client.CallOption) (*TraceResponse, error)
|
Trace(ctx context.Context, in *TraceRequest, opts ...client.CallOption) (*TraceResponse, error)
|
||||||
Cache(ctx context.Context, in *CacheRequest, opts ...client.CallOption) (*CacheResponse, error)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type debugService struct {
|
type debugService struct {
|
||||||
@ -140,16 +139,6 @@ func (c *debugService) Trace(ctx context.Context, in *TraceRequest, opts ...clie
|
|||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *debugService) Cache(ctx context.Context, in *CacheRequest, opts ...client.CallOption) (*CacheResponse, error) {
|
|
||||||
req := c.c.NewRequest(c.name, "Debug.Cache", in)
|
|
||||||
out := new(CacheResponse)
|
|
||||||
err := c.c.Call(ctx, req, out, opts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Server API for Debug service
|
// Server API for Debug service
|
||||||
|
|
||||||
type DebugHandler interface {
|
type DebugHandler interface {
|
||||||
@ -157,7 +146,6 @@ type DebugHandler interface {
|
|||||||
Health(context.Context, *HealthRequest, *HealthResponse) error
|
Health(context.Context, *HealthRequest, *HealthResponse) error
|
||||||
Stats(context.Context, *StatsRequest, *StatsResponse) error
|
Stats(context.Context, *StatsRequest, *StatsResponse) error
|
||||||
Trace(context.Context, *TraceRequest, *TraceResponse) error
|
Trace(context.Context, *TraceRequest, *TraceResponse) error
|
||||||
Cache(context.Context, *CacheRequest, *CacheResponse) error
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func RegisterDebugHandler(s server.Server, hdlr DebugHandler, opts ...server.HandlerOption) error {
|
func RegisterDebugHandler(s server.Server, hdlr DebugHandler, opts ...server.HandlerOption) error {
|
||||||
@ -166,7 +154,6 @@ func RegisterDebugHandler(s server.Server, hdlr DebugHandler, opts ...server.Han
|
|||||||
Health(ctx context.Context, in *HealthRequest, out *HealthResponse) error
|
Health(ctx context.Context, in *HealthRequest, out *HealthResponse) error
|
||||||
Stats(ctx context.Context, in *StatsRequest, out *StatsResponse) error
|
Stats(ctx context.Context, in *StatsRequest, out *StatsResponse) error
|
||||||
Trace(ctx context.Context, in *TraceRequest, out *TraceResponse) error
|
Trace(ctx context.Context, in *TraceRequest, out *TraceResponse) error
|
||||||
Cache(ctx context.Context, in *CacheRequest, out *CacheResponse) error
|
|
||||||
}
|
}
|
||||||
type Debug struct {
|
type Debug struct {
|
||||||
debug
|
debug
|
||||||
@ -230,7 +217,3 @@ func (h *debugHandler) Stats(ctx context.Context, in *StatsRequest, out *StatsRe
|
|||||||
func (h *debugHandler) Trace(ctx context.Context, in *TraceRequest, out *TraceResponse) error {
|
func (h *debugHandler) Trace(ctx context.Context, in *TraceRequest, out *TraceResponse) error {
|
||||||
return h.DebugHandler.Trace(ctx, in, out)
|
return h.DebugHandler.Trace(ctx, in, out)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *debugHandler) Cache(ctx context.Context, in *CacheRequest, out *CacheResponse) error {
|
|
||||||
return h.DebugHandler.Cache(ctx, in, out)
|
|
||||||
}
|
|
@ -5,7 +5,6 @@ service Debug {
|
|||||||
rpc Health(HealthRequest) returns (HealthResponse) {};
|
rpc Health(HealthRequest) returns (HealthResponse) {};
|
||||||
rpc Stats(StatsRequest) returns (StatsResponse) {};
|
rpc Stats(StatsRequest) returns (StatsResponse) {};
|
||||||
rpc Trace(TraceRequest) returns (TraceResponse) {};
|
rpc Trace(TraceRequest) returns (TraceResponse) {};
|
||||||
rpc Cache(CacheRequest) returns (CacheResponse) {};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message HealthRequest {
|
message HealthRequest {
|
||||||
@ -98,9 +97,3 @@ message Span {
|
|||||||
map<string,string> metadata = 7;
|
map<string,string> metadata = 7;
|
||||||
SpanType type = 8;
|
SpanType type = 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
message CacheRequest {}
|
|
||||||
|
|
||||||
message CacheResponse {
|
|
||||||
map<string, string> values = 1;
|
|
||||||
}
|
|
@ -1,94 +0,0 @@
|
|||||||
// Package service provides the service log
|
|
||||||
package service
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/micro/go-micro/v2/client"
|
|
||||||
"github.com/micro/go-micro/v2/debug/log"
|
|
||||||
pb "github.com/micro/go-micro/v2/debug/service/proto"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Debug provides debug service client
|
|
||||||
type debugClient struct {
|
|
||||||
Client pb.DebugService
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *debugClient) Trace() ([]*pb.Span, error) {
|
|
||||||
rsp, err := d.Client.Trace(context.Background(), &pb.TraceRequest{})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return rsp.Spans, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Logs queries the services logs and returns a channel to read the logs from
|
|
||||||
func (d *debugClient) Log(since time.Time, count int, stream bool) (log.Stream, error) {
|
|
||||||
req := &pb.LogRequest{}
|
|
||||||
if !since.IsZero() {
|
|
||||||
req.Since = since.Unix()
|
|
||||||
}
|
|
||||||
|
|
||||||
if count > 0 {
|
|
||||||
req.Count = int64(count)
|
|
||||||
}
|
|
||||||
|
|
||||||
// set whether to stream
|
|
||||||
req.Stream = stream
|
|
||||||
|
|
||||||
// get the log stream
|
|
||||||
serverStream, err := d.Client.Log(context.Background(), req)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
lg := &logStream{
|
|
||||||
stream: make(chan log.Record),
|
|
||||||
stop: make(chan bool),
|
|
||||||
}
|
|
||||||
|
|
||||||
// go stream logs
|
|
||||||
go d.streamLogs(lg, serverStream)
|
|
||||||
|
|
||||||
return lg, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (d *debugClient) streamLogs(lg *logStream, stream pb.Debug_LogService) {
|
|
||||||
defer stream.Close()
|
|
||||||
defer lg.Stop()
|
|
||||||
|
|
||||||
for {
|
|
||||||
resp, err := stream.Recv()
|
|
||||||
if err != nil {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
|
|
||||||
metadata := make(map[string]string)
|
|
||||||
for k, v := range resp.Metadata {
|
|
||||||
metadata[k] = v
|
|
||||||
}
|
|
||||||
|
|
||||||
record := log.Record{
|
|
||||||
Timestamp: time.Unix(resp.Timestamp, 0),
|
|
||||||
Message: resp.Message,
|
|
||||||
Metadata: metadata,
|
|
||||||
}
|
|
||||||
|
|
||||||
select {
|
|
||||||
case <-lg.stop:
|
|
||||||
return
|
|
||||||
case lg.stream <- record:
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewClient provides a debug client
|
|
||||||
func NewClient(name string) *debugClient {
|
|
||||||
// create default client
|
|
||||||
cli := client.DefaultClient
|
|
||||||
|
|
||||||
return &debugClient{
|
|
||||||
Client: pb.NewDebugService(name, cli),
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,64 +0,0 @@
|
|||||||
package service
|
|
||||||
|
|
||||||
import (
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/micro/go-micro/v2/debug"
|
|
||||||
"github.com/micro/go-micro/v2/debug/log"
|
|
||||||
)
|
|
||||||
|
|
||||||
type serviceLog struct {
|
|
||||||
Client *debugClient
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read reads log entries from the logger
|
|
||||||
func (s *serviceLog) Read(opts ...log.ReadOption) ([]log.Record, error) {
|
|
||||||
var options log.ReadOptions
|
|
||||||
for _, o := range opts {
|
|
||||||
o(&options)
|
|
||||||
}
|
|
||||||
|
|
||||||
stream, err := s.Client.Log(options.Since, options.Count, false)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
defer stream.Stop()
|
|
||||||
|
|
||||||
// stream the records until nothing is left
|
|
||||||
var records []log.Record
|
|
||||||
|
|
||||||
for record := range stream.Chan() {
|
|
||||||
records = append(records, record)
|
|
||||||
}
|
|
||||||
|
|
||||||
return records, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// There is no write support
|
|
||||||
func (s *serviceLog) Write(r log.Record) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Stream log records
|
|
||||||
func (s *serviceLog) Stream() (log.Stream, error) {
|
|
||||||
return s.Client.Log(time.Time{}, 0, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewLog returns a new log interface
|
|
||||||
func NewLog(opts ...log.Option) log.Log {
|
|
||||||
var options log.Options
|
|
||||||
for _, o := range opts {
|
|
||||||
o(&options)
|
|
||||||
}
|
|
||||||
|
|
||||||
name := options.Name
|
|
||||||
|
|
||||||
// set the default name
|
|
||||||
if len(name) == 0 {
|
|
||||||
name = debug.DefaultName
|
|
||||||
}
|
|
||||||
|
|
||||||
return &serviceLog{
|
|
||||||
Client: NewClient(name),
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,25 +0,0 @@
|
|||||||
package service
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/micro/go-micro/v2/debug/log"
|
|
||||||
)
|
|
||||||
|
|
||||||
type logStream struct {
|
|
||||||
stream chan log.Record
|
|
||||||
stop chan bool
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logStream) Chan() <-chan log.Record {
|
|
||||||
return l.stream
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logStream) Stop() error {
|
|
||||||
select {
|
|
||||||
case <-l.stop:
|
|
||||||
return nil
|
|
||||||
default:
|
|
||||||
close(l.stream)
|
|
||||||
close(l.stop)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
@ -5,7 +5,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
proto "github.com/micro/go-micro/v2/debug/service/proto"
|
proto "github.com/micro/go-micro/v2/debug/proto"
|
||||||
"github.com/micro/go-micro/v2/registry/memory"
|
"github.com/micro/go-micro/v2/registry/memory"
|
||||||
"github.com/micro/go-micro/v2/util/test"
|
"github.com/micro/go-micro/v2/util/test"
|
||||||
)
|
)
|
||||||
|
1
go.sum
1
go.sum
@ -322,6 +322,7 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0j
|
|||||||
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
|
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
|
||||||
github.com/micro/cli/v2 v2.1.2 h1:43J1lChg/rZCC1rvdqZNFSQDrGT7qfMrtp6/ztpIkEM=
|
github.com/micro/cli/v2 v2.1.2 h1:43J1lChg/rZCC1rvdqZNFSQDrGT7qfMrtp6/ztpIkEM=
|
||||||
github.com/micro/cli/v2 v2.1.2/go.mod h1:EguNh6DAoWKm9nmk+k/Rg0H3lQnDxqzu5x5srOtGtYg=
|
github.com/micro/cli/v2 v2.1.2/go.mod h1:EguNh6DAoWKm9nmk+k/Rg0H3lQnDxqzu5x5srOtGtYg=
|
||||||
|
github.com/micro/go-micro v1.18.0 h1:gP70EZVHpJuUIT0YWth192JmlIci+qMOEByHm83XE9E=
|
||||||
github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4=
|
github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4=
|
||||||
github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
|
github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
|
||||||
github.com/miekg/dns v1.1.27 h1:aEH/kqUzUxGJ/UHcEKdJY+ugH6WEzsEBBSPa8zuy1aM=
|
github.com/miekg/dns v1.1.27 h1:aEH/kqUzUxGJ/UHcEKdJY+ugH6WEzsEBBSPa8zuy1aM=
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
|
|
||||||
"github.com/micro/go-micro/v2/client"
|
"github.com/micro/go-micro/v2/client"
|
||||||
"github.com/micro/go-micro/v2/cmd"
|
"github.com/micro/go-micro/v2/cmd"
|
||||||
"github.com/micro/go-micro/v2/debug/service/handler"
|
"github.com/micro/go-micro/v2/debug/handler"
|
||||||
"github.com/micro/go-micro/v2/debug/stats"
|
"github.com/micro/go-micro/v2/debug/stats"
|
||||||
"github.com/micro/go-micro/v2/debug/trace"
|
"github.com/micro/go-micro/v2/debug/trace"
|
||||||
"github.com/micro/go-micro/v2/logger"
|
"github.com/micro/go-micro/v2/logger"
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/micro/go-micro/v2/client"
|
"github.com/micro/go-micro/v2/client"
|
||||||
proto "github.com/micro/go-micro/v2/debug/service/proto"
|
proto "github.com/micro/go-micro/v2/debug/proto"
|
||||||
"github.com/micro/go-micro/v2/registry/memory"
|
"github.com/micro/go-micro/v2/registry/memory"
|
||||||
"github.com/micro/go-micro/v2/util/test"
|
"github.com/micro/go-micro/v2/util/test"
|
||||||
)
|
)
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/micro/go-micro/v2/client"
|
"github.com/micro/go-micro/v2/client"
|
||||||
"github.com/micro/go-micro/v2/debug/service/handler"
|
"github.com/micro/go-micro/v2/debug/handler"
|
||||||
"github.com/micro/go-micro/v2/network/proxy"
|
"github.com/micro/go-micro/v2/network/proxy"
|
||||||
"github.com/micro/go-micro/v2/server"
|
"github.com/micro/go-micro/v2/server"
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user