2016-01-06 22:24:54 +03:00
|
|
|
package debug
|
|
|
|
|
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2016-05-29 00:30:47 +03:00
|
|
|
"runtime"
|
|
|
|
"time"
|
|
|
|
|
2016-01-06 22:24:54 +03:00
|
|
|
proto "github.com/micro/go-micro/server/debug/proto"
|
|
|
|
)
|
|
|
|
|
|
|
|
// The debug handler represents an internal server handler
|
|
|
|
// used to determine health, status and env info about
|
|
|
|
// a service node. It's akin to Google's /statusz, /healthz,
|
|
|
|
// and /varz
|
|
|
|
type DebugHandler interface {
|
|
|
|
Health(ctx context.Context, req *proto.HealthRequest, rsp *proto.HealthResponse) error
|
2016-05-29 00:30:47 +03:00
|
|
|
Stats(ctx context.Context, req *proto.StatsRequest, rsp *proto.StatsResponse) error
|
2016-01-06 22:24:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Our own internal handler
|
2016-05-29 00:30:47 +03:00
|
|
|
type debug struct {
|
|
|
|
started int64
|
|
|
|
}
|
2016-01-06 22:24:54 +03:00
|
|
|
|
|
|
|
var (
|
2016-05-29 00:30:47 +03:00
|
|
|
DefaultDebugHandler DebugHandler = newDebug()
|
2016-01-06 22:24:54 +03:00
|
|
|
)
|
|
|
|
|
2016-05-29 00:30:47 +03:00
|
|
|
func newDebug() *debug {
|
|
|
|
return &debug{
|
|
|
|
started: time.Now().Unix(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-06 22:24:54 +03:00
|
|
|
func (d *debug) Health(ctx context.Context, req *proto.HealthRequest, rsp *proto.HealthResponse) error {
|
|
|
|
rsp.Status = "ok"
|
|
|
|
return nil
|
|
|
|
}
|
2016-05-29 00:30:47 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|