Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Debug ¶ added in v1.8.0
type Debug struct {
Handler
}
We use this to wrap any debug handlers so we preserve the signature Debug.{Method}
type Handler ¶ added in v1.8.0
type Handler interface { Health(ctx context.Context, req *proto.HealthRequest, rsp *proto.HealthResponse) error Stats(ctx context.Context, req *proto.StatsRequest, rsp *proto.StatsResponse) error }
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
var (
DefaultHandler Handler = newDebug()
)
Click to show internal directories.
Click to hide internal directories.