micro/debug/handler/debug.go

116 lines
2.5 KiB
Go
Raw Normal View History

// Pacjage handler implements service debug handler
2019-08-06 19:53:14 +03:00
package handler
import (
"context"
"runtime"
"time"
2019-11-27 19:12:39 +03:00
"github.com/micro/go-micro/debug/log"
2019-08-06 19:53:14 +03:00
proto "github.com/micro/go-micro/debug/proto"
"github.com/micro/go-micro/server"
2019-08-06 19:53:14 +03:00
)
var (
// DefaultHandler is default debug handler
2019-08-06 19:53:14 +03:00
DefaultHandler = newDebug()
)
type Debug struct {
started int64
2019-11-28 14:05:35 +03:00
proto.DebugHandler
2019-11-28 14:36:38 +03:00
log log.Log
}
2019-08-06 19:53:14 +03:00
func newDebug() *Debug {
return &Debug{
started: time.Now().Unix(),
2019-11-28 14:36:38 +03:00
log: log.DefaultLog,
2019-08-06 19:53:14 +03:00
}
}
func (d *Debug) Health(ctx context.Context, req *proto.HealthRequest, rsp *proto.HealthResponse) error {
rsp.Status = "ok"
return nil
}
func (d *Debug) Stats(ctx context.Context, req *proto.StatsRequest, rsp *proto.StatsResponse) error {
var mstat runtime.MemStats
runtime.ReadMemStats(&mstat)
rsp.Started = uint64(d.started)
rsp.Uptime = uint64(time.Now().Unix() - d.started)
rsp.Memory = mstat.Alloc
rsp.Gc = mstat.PauseTotalNs
rsp.Threads = uint64(runtime.NumGoroutine())
return nil
}
func (d *Debug) Logs(ctx context.Context, stream server.Stream) error {
req := new(proto.LogRequest)
if err := stream.Recv(req); err != nil {
return err
}
var options []log.ReadOption
since := time.Unix(req.Since, 0)
2019-11-27 21:38:26 +03:00
if !since.IsZero() {
options = append(options, log.Since(since))
}
count := int(req.Count)
if count > 0 {
options = append(options, log.Count(count))
2019-11-27 21:38:26 +03:00
}
if req.Stream {
stop := make(chan bool)
defer close(stop)
// TODO: we need to figure out how to close ithe log stream
// It seems like when a client disconnects,
// the connection stays open until some timeout expires
// or something like that; that means the map of streams
// might end up leaking memory if not cleaned up properly
records := d.log.Stream(stop)
for record := range records {
if err := d.sendRecord(record, stream); err != nil {
return err
}
}
// done streaming, return
return nil
}
// get the log records
records := d.log.Read(options...)
// send all the logs downstream
2019-11-27 21:38:26 +03:00
for _, record := range records {
if err := d.sendRecord(record, stream); err != nil {
return err
2019-11-27 21:38:26 +03:00
}
}
2019-11-27 21:38:26 +03:00
return nil
}
2019-11-27 21:38:26 +03:00
func (d *Debug) sendRecord(record log.Record, stream server.Stream) error {
metadata := make(map[string]string)
for k, v := range record.Metadata {
metadata[k] = v
}
pbRecord := &proto.Record{
Timestamp: record.Timestamp.Unix(),
Value: record.Value.(string),
Metadata: metadata,
}
if err := stream.Send(pbRecord); err != nil {
return err
2019-11-27 21:38:26 +03:00
}
return nil
}