12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package stats
- import (
- "net"
- "golang.org/x/net/context"
- )
- type ConnTagInfo struct {
-
- RemoteAddr net.Addr
-
- LocalAddr net.Addr
- }
- type RPCTagInfo struct {
-
- FullMethodName string
-
-
- FailFast bool
- }
- type Handler interface {
-
-
-
- TagRPC(context.Context, *RPCTagInfo) context.Context
-
- HandleRPC(context.Context, RPCStats)
-
-
-
-
-
-
-
-
- TagConn(context.Context, *ConnTagInfo) context.Context
-
- HandleConn(context.Context, ConnStats)
- }
|