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
This PR adds a process_tags field to the telemetry Application struct. This tag can be set during configuration or later (when the process_tags are acquired).
Motivation
dd-trace-php needs to be send the process_tags for its telemetry according to this RFC.
It is important to note that the tracer will set the configuration of its sidecar before we can retrieve the process_tags. That's why I created a function specifically to set the processs_tags.
❌ Patch coverage is 0% with 45 lines in your changes missing coverage. Please review.
✅ Project coverage is 70.82%. Comparing base (c40a544) to head (1459f76).
This report tracks Clippy allow annotations for specific rules, showing how they've changed in this PR. Decreasing the number of these annotations generally improves code quality.
The reason will be displayed to describe this comment to others. Learn more.
The change in libdd-telemetry looks fine
bwoebi
changed the title
feat(telemetry): add process_tags to Application in telemetry
feat(telemetry)!: add process_tags to Application in telemetry
Feb 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This PR adds a
process_tagsfield to the telemetryApplicationstruct. This tag can be set during configuration or later (when the process_tags are acquired).Motivation
dd-trace-phpneeds to be send the process_tags for its telemetry according to this RFC.It is important to note that the tracer will set the configuration of its sidecar before we can retrieve the process_tags. That's why I created a function specifically to set the processs_tags.
How to test the change?
The change is tested in dd-trace-php through this PR: DataDog/dd-trace-php#3627