Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
443ff6a
Sync declarative config and env var support; add tests
mtoffl01 Oct 14, 2025
5f0c5fa
Move runtime specific evaluations to defaults (e.g. remote config, cr…
mtoffl01 Oct 14, 2025
bf248eb
Fix extended configs test (temporarily)
mtoffl01 Oct 15, 2025
b9b5e91
Fix existing tests
mtoffl01 Oct 17, 2025
cc34971
Handle cloudPayloadTagging and installSignature
mtoffl01 Oct 20, 2025
bdd455d
fix tracingPropagationStyle
mtoffl01 Oct 20, 2025
2a69eac
nits: cleanup
mtoffl01 Oct 20, 2025
b5080e5
Fix logic for OTEL_PROPAGATORS
mtoffl01 Oct 20, 2025
4102a5d
merge master
mtoffl01 Oct 21, 2025
930c8bf
Fix OTEL_LOGS_EXPORTER evaluation in config.js
mtoffl01 Oct 21, 2025
4c62d5f
restore files with unintended changes to master
mtoffl01 Oct 21, 2025
90cb4a0
Fix instrumentationSource logic in config.js
mtoffl01 Oct 21, 2025
5c9176d
Handle all merge conflicts
mtoffl01 Oct 22, 2025
f00b4c2
Restore node-24.10.0-junit.xml to master
mtoffl01 Oct 22, 2025
14bf8b5
put defaults in sorted order, and change serverless and JEST_WORKER_I…
mtoffl01 Oct 24, 2025
b20097b
github review feedback
mtoffl01 Oct 24, 2025
55e8f16
cleanup applyDefaults
mtoffl01 Oct 24, 2025
b08cab6
fix merge conflicts: flush interval is also determined by DD_TRACE_FL…
mtoffl01 Oct 27, 2025
fcc9cba
Try to fix failing aws tests by changing 'else if' to just 'else' whe…
mtoffl01 Oct 27, 2025
245d7e2
Modify cloudPayloadTagging logic in applyOptions; restore flushInterv…
mtoffl01 Oct 28, 2025
095fffd
nits remove unnecessary comments
mtoffl01 Oct 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/dd-trace/src/config-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ module.exports = {
* @returns {string|undefined}
* @throws {Error} if the configuration is not supported
*/
// This method, and callers of this method, need to be updated to check for declarative config sources as well.
getEnvironmentVariable (name) {
Comment on lines +83 to 84
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getEnvironmentVariable is called 150+ times across the codebase. I'm thinking the changes described on line 81 should be done in a separate PR.

if ((name.startsWith('DD_') || name.startsWith('OTEL_') || aliasToCanonical[name]) &&
!supportedConfigurations[name]) {
Expand Down
Loading