Skip to content

Commit 617aef7

Browse files
Furistoroboquat
authored andcommitted
[baseserver] Stop logging healthcheck RPCs
1 parent b6f4557 commit 617aef7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/common-go/baseserver/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ func (s *Server) initializeGRPC() error {
268268
grpc_logrus.UnaryServerInterceptor(s.Logger(),
269269
grpc_logrus.WithDecider(func(fullMethodName string, err error) bool {
270270
// Skip gRPC healthcheck logs, they are frequent and pollute our logging infra
271-
return fullMethodName != "grpc.health.v1.Health/Check"
271+
return fullMethodName != "/grpc.health.v1.Health/Check"
272272
}),
273273
),
274274
grpcMetrics.UnaryServerInterceptor(),

0 commit comments

Comments
 (0)