-
Notifications
You must be signed in to change notification settings - Fork 20
feat!: integrate obfuscation to the stats exporter [APMSP-2764] #1819
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
gh-worker-dd-mergequeue-cf854d
merged 33 commits into
main
from
oscarld/integrate-obfuscation-to-trace-exporter
May 11, 2026
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
c23938d
wip: integrate obfuscation to trace exporter
Eldolfin f2621f3
fix: cargo fmt
Eldolfin 6659152
feat(data-pipeline): feature-gate stats obfuscation behind stats-obfu…
Eldolfin 0602070
refactor(data-pipeline): use Arc<AtomicBool> for shared obfuscation s…
Eldolfin d41ad73
fix: cargo fmt
Eldolfin 36cca8f
fix: update LICENSE-3rdparty.yml
Eldolfin 1ffcde1
feat(data-pipeline): read obfuscation config from /info
Eldolfin 02ab474
fix: obfuscation config optional in /info
Eldolfin 0994585
fix: clippy
Eldolfin 5a40e9a
Merge remote-tracking branch 'origin/main' into oscarld/integrate-obf…
Eldolfin 4eb0aa3
fix(lint): remove all cancellation_token references
Eldolfin 50c0469
fix: last clippy error
Eldolfin e7b04a6
WIP: moving stats obfuscation logic to SpanConcentrator (untested)
Eldolfin 1567e34
fix: clippy
Eldolfin edd4a19
fix: tests
Eldolfin a7dc804
fix: clippy again...
Eldolfin 1723dc2
fix: correct wasm32 client_side_stats construction to use StatsComput…
Eldolfin f758d03
fix: cargo fmt and clippy
Eldolfin 0d3da7b
fix: remove temp default-feature
Eldolfin 3808360
fix ci hopefully...
Eldolfin 3e8388f
fix more ci and maybe the arcswap missuse ?
Eldolfin 3feddef
fix: sql_obfuscation_mode = "" is the deprecated unspecified mode
Eldolfin fd1a97e
fix: random pascal case was wrong
Eldolfin 1636c9f
feat: apply suggestions
Eldolfin 74563dd
Merge remote-tracking branch 'origin/main' into oscarld/integrate-obf…
Eldolfin b2d3804
fix merge
Eldolfin 957ced7
Merge remote-tracking branch 'origin/main' into oscarld/integrate-obf…
Eldolfin 8d1b888
feat(css-obfuscation): add runtime feature flag
Eldolfin 0a5a7f9
fix: clippy
Eldolfin 3e62cea
Merge branch 'main' into oscarld/integrate-obfuscation-to-trace-exporter
Eldolfin 0318585
feat: cleanup test
Eldolfin 0cdd5fd
Merge remote-tracking branch 'origin/main' into oscarld/integrate-obf…
Eldolfin 4a5e776
fix: cargo fmt
Eldolfin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure we need this to be a cargo-feature, we could probably use a runtime config option for this. If we go with the cargo feature I think it should be a default feature
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now I think it's better to keep this as both a cargo-feature and runtime option so that we don't add unused code to consumer's binary size that don't need it. For now only one tracer (probably dd-trace-py) will enable this feature for testing and benchmarking and it will later put as default when deemed stable.