1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-08-13 19:53:11 +02:00

Fix docs on otel-collector example (#2034)

This commit is contained in:
Eundoo Song
2021-06-28 01:14:39 +09:00
committed by GitHub
parent 6428cd6931
commit 0bceed7e01

View File

@@ -116,7 +116,9 @@ to the OpenTelemetry Collector, we need to first configure the `otlp` receiver:
# Make sure to add the otlp receiver. # Make sure to add the otlp receiver.
# This will open up the receiver on port 4317. # This will open up the receiver on port 4317.
otlp: otlp:
endpoint: 0.0.0.0:4317 protocols:
grpc:
endpoint: "0.0.0.0:4317"
processors: processors:
... ...
``` ```