I have some .net core APIs with APM enabled. They are taking requests and when making sub-calls to other APIs is attaching various trace data such as trace.id, transaction.id, transaction.span_count etc, but traceparent isn't one of them. This means that our services never get connected together in the service map, and we get duplication of items (e.g. a service in our services list is also shown as dependency - APM doesn't recognise them as the same thing)
We will often get transactions starting like this - with no UI being involved and an external system triggering an endpoint, so I need to find a way of creating traceparent items if they aren't provided and injecting to the APM settings somehow?
I'm on the lastest version of the .net core agent (1.22.0) and we're pushing to elastic cloud
Thanks!