Skip to content

Commit

Permalink
Fix default collector deployment receiver endpoint
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cwildman authored Apr 11, 2024
1 parent 8fd72df commit 9f7a90f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/en/docs/collector/deployment/agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 9f7a90f

Please sign in to comment.