Commit be4d221
authored
otelcol/grpclog: suppress benign gRPC client-disconnect warnings (#15024)
Fixes #5169
## Problem
When a gRPC client disconnects normally (e.g., a .NET app shutting
down its `TracerProvider`), the collector logs spurious WARN messages
from the gRPC transport layer:
These are expected during graceful client shutdown but appear
alarming to operators and pollute production logs.
## Root cause
grpc-go is doing the right thing: messages like this are gated
behind `LoggerV2.V(2)` in `internal/transport/http2_server.go`,
i.e. they are explicitly classified as supplemental verbosity, not
severity-level warnings. They should never reach a WARN sink.
The bug is in zapgrpc. `zapgrpc.Logger.V` is implemented as
`levelEnabler.Enabled(zapcore.Level(level - 1))`, which conflates
grpclog's *verbosity* with zap's *severity*. With WARN enabled,
`V(2)` returns true, so grpc-go thinks verbosity level 2 is
permitted and emits the message — which then gets formatted by
zapgrpc as a WARN entry. See
[uber-go/zap#1544](uber-go/zap#1544).
## Solution
Wrap the installed `grpclog.LoggerV2` with a `fixedVerbosityLogger`
whose `V()` compares the requested level against a fixed threshold
(default 0) instead of the underlying zap severity enabler. This
restores grpclog's intended verbosity gating, so verbose messages
stop at grpc-go before formatting rather than being filtered out
of the log stream after the fact.
The default threshold of `0` matches grpclog when
`GRPC_GO_LOG_VERBOSITY_LEVEL` is unset.
This approach:
- Addresses the root cause (broken `V()` mapping) rather than
string-matching specific message contents.
- Stops chatty messages at the source, before grpc-go formats them.
- Is generic — kills *all* `V(2)+` noise, including future grpc-go
additions, not just two cherry-picked patterns.
- Leaves severity-level emission (`Info` / `Warning` / `Error`)
completely unchanged.
- Tiny: ~10 lines of wrapper plus comment.
## Testing
- `TestFixedVerbosity` — asserts `V(0)` is enabled and `V(1)`/`V(2)`
are not at the default threshold.
- `TestSeverityLevelsUnaffected` — direct `Warning("…")` still
fires at WARN, confirming the wrapper does not gate severity.
- Existing `TestGRPCLogger` cases continue to pass unchanged.
---------
Signed-off-by: Sai Kruthi Wusirika <kruthiwusirika@gmail.com>1 parent f6da47d commit be4d221
4 files changed
Lines changed: 100 additions & 1 deletion
File tree
- .chloggen
- .github/workflows/utils
- otelcol/internal/grpclog
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
260 | 260 | | |
261 | 261 | | |
262 | 262 | | |
| 263 | + | |
| 264 | + | |
263 | 265 | | |
264 | 266 | | |
265 | 267 | | |
| |||
295 | 297 | | |
296 | 298 | | |
297 | 299 | | |
| 300 | + | |
298 | 301 | | |
299 | 302 | | |
300 | 303 | | |
| |||
533 | 536 | | |
534 | 537 | | |
535 | 538 | | |
| 539 | + | |
536 | 540 | | |
537 | 541 | | |
538 | 542 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
13 | 33 | | |
14 | 34 | | |
15 | 35 | | |
| |||
30 | 50 | | |
31 | 51 | | |
32 | 52 | | |
33 | | - | |
| 53 | + | |
34 | 54 | | |
35 | 55 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
86 | 130 | | |
87 | 131 | | |
88 | 132 | | |
| |||
0 commit comments