The exporter no pipeline uses
A correctly written otlphttp exporter that no pipeline references, so it never runs. The Collector starts, validates, logs nothing, and every span goes to the debug exporter instead of the backend.
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
processors:
batch: {}
exporters:
debug: {}
otlphttp:
endpoint: https://backend.example.com
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [debug]