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
Fix issue with traces getting agent's k8s.pod.uid (#88)
Fix issue with traces getting agent's k8s.pod.uid
In change 3c312b6 we added some globally set resource attributes like
k8s.pod.uid. The problem is these attributes would get set before k8s_tagger
was run so you would get traces with the k8s.pod.uid of the agent itself
instead of the pod the trace came from.
Instead add a separate metrics pipeline that adds the agent k8s metadata only
to prometheus metrics.
* Remove usage of OTEL_RESOURCE_ATTRIBUTES in favor of processors (user can still set it)
* Use insert for resource attribute updates to prevent overriding upstream values and consistency
0 commit comments