Noob question here. I'm sending x-ray data to an Opentelemetry Collector so the receiver is awsxray. But when it is exported by the awsxray exporter, it does not show a complete trace. Is there something missing in what I'm doing?
It should be something like this:
Service A -> Service B -> Service C
Instead, I'm getting this:
Service A
Service B
Service C
Here's the configuration that I'm currently using:
receivers:
awsxray:
endpoint: 0.0.0.0:2000
exporters:
awsxray:
region: us-east-1
service:
pipelines:
traces:
receivers: [awsxray]
exporters: [awsxray]