You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When transforming an OTLP span to a Datadog span (in either datadogconnector or datadogexporter), the following attributes are read from the OTLP span and used to populate the fields of the Datadog span:
datadog.host.name,
container.id
k8s.pod.id
deployment.environment.name
service.name
service.version
We would like these to be read from resource attributes and only resource attributes. In previous releases, some of these attributes could be set in span attributes as well - however, we are in the process of deprecating that, to match Datadog's specification. This issue is to flag this change and track the deprecation effort.
Tracking work:
We've merged a few PRs to introduce an alternative code path in the Datadog trace agent (which performs trace translation) that deprecates this functionality: see DataDog/datadog-agent#30981
In a future PR, we'll add a feature flag which allows users to enable the alternate code path when connector.datadogconnector.NativeIngest is disabled as well.
The text was updated successfully, but these errors were encountered:
Component(s)
connector/datadog
Describe the issue you're reporting
When transforming an OTLP span to a Datadog span (in either datadogconnector or datadogexporter), the following attributes are read from the OTLP span and used to populate the fields of the Datadog span:
We would like these to be read from resource attributes and only resource attributes. In previous releases, some of these attributes could be set in span attributes as well - however, we are in the process of deprecating that, to match Datadog's specification. This issue is to flag this change and track the deprecation effort.
Tracking work:
We've merged a few PRs to introduce an alternative code path in the Datadog trace agent (which performs trace translation) that deprecates this functionality: see DataDog/datadog-agent#30981
This PR deprecates the functionality for when
connector.datadogconnector.NativeIngest
is enabled. This user who was usingservice.name
in span attributes encountered an issue following this change..In a future PR, we'll add a feature flag which allows users to enable the alternate code path when
connector.datadogconnector.NativeIngest
is disabled as well.The text was updated successfully, but these errors were encountered: