Skip to content

Commit 42eaa5e

Browse files
rogercolldmathieu
andauthored
docs: fix grpc protocol configuration name (#13830)
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description `grpc/protobuf` is not a valid configuration option for the otelconf protocol configuration, `grpc` should be used instead. See: https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/otelconf/v0.3.0/config.go#L30C26-L30C30 Co-authored-by: Damien Mathieu <[email protected]>
1 parent 5ec1466 commit 42eaa5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/observability.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ service:
125125
interval: 5000
126126
exporter:
127127
otlp:
128-
protocol: grpc/protobuf
128+
protocol: grpc
129129
endpoint: https://backend:4317
130130
traces:
131131
processors:
132132
- batch:
133133
exporter:
134134
otlp:
135-
protocol: grpc/protobuf
135+
protocol: grpc
136136
endpoint: https://backend2:4317
137137
```
138138
@@ -153,7 +153,7 @@ service:
153153
batch:
154154
exporter:
155155
otlp:
156-
protocol: grpc/protobuf
156+
protocol: grpc
157157
endpoint: ${MY_POD_IP}:4317
158158
```
159159

0 commit comments

Comments
 (0)