From 0bceed7e0133c369479c863ad7f25cdbc352d8bb Mon Sep 17 00:00:00 2001 From: Eundoo Song Date: Mon, 28 Jun 2021 01:14:39 +0900 Subject: [PATCH] Fix docs on otel-collector example (#2034) --- example/otel-collector/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/example/otel-collector/README.md b/example/otel-collector/README.md index 022d9a972..765071f1f 100644 --- a/example/otel-collector/README.md +++ b/example/otel-collector/README.md @@ -116,7 +116,9 @@ to the OpenTelemetry Collector, we need to first configure the `otlp` receiver: # Make sure to add the otlp receiver. # This will open up the receiver on port 4317. otlp: - endpoint: 0.0.0.0:4317 + protocols: + grpc: + endpoint: "0.0.0.0:4317" processors: ... ```