@@ -31,15 +31,13 @@ import "github.com/grpc-ecosystem/go-grpc-middleware/v2"
31
31
32
32
myServer := grpc.NewServer (
33
33
grpc.ChainStreamInterceptor (
34
- tags.StreamServerInterceptor (),
35
34
opentracing.StreamServerInterceptor (),
36
35
prometheus.StreamServerInterceptor ,
37
36
zap.StreamServerInterceptor (zapLogger),
38
37
auth.StreamServerInterceptor (myAuthFunction),
39
38
recovery.StreamServerInterceptor (),
40
39
),
41
40
grpc.ChainUnaryInterceptor (
42
- tags.UnaryServerInterceptor (),
43
41
opentracing.UnaryServerInterceptor (),
44
42
prometheus.UnaryServerInterceptor ,
45
43
zap.UnaryServerInterceptor (zapLogger),
@@ -58,7 +56,6 @@ myServer := grpc.NewServer(
58
56
59
57
#### Logging
60
58
61
- * [ ` tags ` ] ( interceptors/tags ) - a library that adds a ` Tag ` map to context, with data populated from request body
62
59
* [ ` zap ` ] ( providers/zap ) - integration of [ zap] ( https://github.com/uber-go/zap ) logging library into gRPC handlers.
63
60
* [ ` logrus ` ] ( providers/logrus ) - integration of [ logrus] ( https://github.com/sirupsen/logrus ) logging library into gRPC handlers.
64
61
* [ ` kit ` ] ( providers/kit ) - integration of [ go-kit/log] ( https://github.com/go-kit/log ) logging library into gRPC handlers.
0 commit comments