add handler error metrics

This commit is contained in:
ginuerzh
2022-03-05 16:37:45 +08:00
parent e587b4df7c
commit ee72cea036
31 changed files with 404 additions and 293 deletions

View File

@ -10,7 +10,7 @@ import (
type Handler interface {
Init(metadata.Metadata) error
Handle(context.Context, net.Conn)
Handle(context.Context, net.Conn) error
}
type Forwarder interface {