From 76a6e89b0c8a59b085e5a79cc5dd56b39965dd9e Mon Sep 17 00:00:00 2001 From: Yoshi Yamaguchi Date: Wed, 17 Aug 2022 13:16:26 +0900 Subject: [PATCH] fix comments for HealthCheck filter --- .../google.golang.org/grpc/otelgrpc/filters/filters.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instrumentation/google.golang.org/grpc/otelgrpc/filters/filters.go b/instrumentation/google.golang.org/grpc/otelgrpc/filters/filters.go index 131d512e650..90290234f5d 100644 --- a/instrumentation/google.golang.org/grpc/otelgrpc/filters/filters.go +++ b/instrumentation/google.golang.org/grpc/otelgrpc/filters/filters.go @@ -151,7 +151,7 @@ func ServicePrefix(pre string) otelgrpc.Filter { } // HealthCheck returns a Filter that returns true if the request's -// is not health check defined by gRPC Health Checking Protocol. +// service name is health check defined by gRPC Health Checking Protocol. // https://github.com/grpc/grpc/blob/master/doc/health-checking.md func HealthCheck() otelgrpc.Filter { return ServicePrefix("grpc.health.v1.Health")