From 9f7a90f648bcaafc6501f278fe91beff7df6a749 Mon Sep 17 00:00:00 2001 From: Christopher Wildman Date: Thu, 11 Apr 2024 10:54:15 -0700 Subject: [PATCH] Fix default collector deployment receiver endpoint In the default deployment example the export configuration is expecting to use OTLP over HTTP on port 4318. The collector examples though is then showing configuration for receivers on gRPC over 4317, instead of 4318. --- content/en/docs/collector/deployment/agent.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/en/docs/collector/deployment/agent.md b/content/en/docs/collector/deployment/agent.md index 6db6d6b233ee..2a17343c3b7b 100644 --- a/content/en/docs/collector/deployment/agent.md +++ b/content/en/docs/collector/deployment/agent.md @@ -42,8 +42,8 @@ like so: receivers: otlp: # the OTLP receiver the app is sending traces to protocols: - grpc: - endpoint: 0.0.0.0:4317 + http: + endpoint: 0.0.0.0:4318 processors: batch: @@ -66,8 +66,8 @@ service: receivers: otlp: # the OTLP receiver the app is sending metrics to protocols: - grpc: - endpoint: 0.0.0.0:4317 + http: + endpoint: 0.0.0.0:4318 processors: batch: @@ -90,8 +90,8 @@ service: receivers: otlp: # the OTLP receiver the app is sending logs to protocols: - grpc: - endpoint: 0.0.0.0:4317 + http: + endpoint: 0.0.0.0:4318 processors: batch: