dd-trace 5.87.0 → 5.89.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/LICENSE-3rdparty.csv +60 -32
  2. package/ext/exporters.d.ts +1 -0
  3. package/ext/exporters.js +1 -0
  4. package/ext/tags.js +2 -0
  5. package/index.d.ts +234 -4
  6. package/package.json +18 -11
  7. package/packages/datadog-instrumentations/src/ai.js +54 -90
  8. package/packages/datadog-instrumentations/src/helpers/hook.js +17 -11
  9. package/packages/datadog-instrumentations/src/helpers/rewriter/index.js +27 -110
  10. package/packages/datadog-instrumentations/src/helpers/rewriter/instrumentations/ai.js +103 -0
  11. package/packages/datadog-instrumentations/src/helpers/rewriter/instrumentations/bullmq.js +108 -0
  12. package/packages/datadog-instrumentations/src/helpers/rewriter/instrumentations/index.js +2 -1
  13. package/packages/datadog-instrumentations/src/helpers/rewriter/orchestrion/compiler.js +74 -0
  14. package/packages/datadog-instrumentations/src/helpers/rewriter/orchestrion/index.js +43 -0
  15. package/packages/datadog-instrumentations/src/helpers/rewriter/orchestrion/matcher.js +49 -0
  16. package/packages/datadog-instrumentations/src/helpers/rewriter/orchestrion/transformer.js +121 -0
  17. package/packages/datadog-instrumentations/src/helpers/rewriter/{transforms.js → orchestrion/transforms.js} +143 -17
  18. package/packages/datadog-instrumentations/src/jest.js +176 -54
  19. package/packages/datadog-instrumentations/src/kafkajs.js +20 -17
  20. package/packages/datadog-instrumentations/src/playwright.js +1 -1
  21. package/packages/datadog-plugin-amqplib/src/consumer.js +14 -10
  22. package/packages/datadog-plugin-amqplib/src/producer.js +23 -19
  23. package/packages/datadog-plugin-bullmq/src/consumer.js +33 -11
  24. package/packages/datadog-plugin-bullmq/src/producer.js +60 -31
  25. package/packages/datadog-plugin-cucumber/src/index.js +9 -6
  26. package/packages/datadog-plugin-cypress/src/cypress-plugin.js +62 -5
  27. package/packages/datadog-plugin-cypress/src/source-map-utils.js +297 -0
  28. package/packages/datadog-plugin-cypress/src/support.js +52 -9
  29. package/packages/datadog-plugin-jest/src/index.js +12 -2
  30. package/packages/datadog-plugin-jest/src/util.js +2 -1
  31. package/packages/datadog-plugin-kafkajs/src/consumer.js +22 -12
  32. package/packages/datadog-plugin-kafkajs/src/producer.js +33 -22
  33. package/packages/datadog-plugin-mocha/src/index.js +9 -6
  34. package/packages/datadog-plugin-playwright/src/index.js +10 -6
  35. package/packages/datadog-plugin-vitest/src/index.js +13 -8
  36. package/packages/dd-trace/src/aiguard/sdk.js +5 -1
  37. package/packages/dd-trace/src/appsec/iast/analyzers/cookie-analyzer.js +1 -1
  38. package/packages/dd-trace/src/appsec/iast/analyzers/ssrf-analyzer.js +1 -1
  39. package/packages/dd-trace/src/appsec/iast/analyzers/unvalidated-redirect-analyzer.js +1 -1
  40. package/packages/dd-trace/src/appsec/iast/analyzers/vulnerability-analyzer.js +4 -5
  41. package/packages/dd-trace/src/appsec/iast/path-line.js +36 -25
  42. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-analyzers/command-sensitive-analyzer.js +1 -1
  43. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-handler.js +3 -4
  44. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/utils.js +3 -2
  45. package/packages/dd-trace/src/azure_metadata.js +0 -2
  46. package/packages/dd-trace/src/ci-visibility/early-flake-detection/get-known-tests.js +1 -1
  47. package/packages/dd-trace/src/ci-visibility/exporters/ci-visibility-exporter.js +3 -0
  48. package/packages/dd-trace/src/ci-visibility/intelligent-test-runner/get-skippable-suites.js +1 -1
  49. package/packages/dd-trace/src/ci-visibility/requests/get-library-configuration.js +4 -1
  50. package/packages/dd-trace/src/ci-visibility/requests/request.js +236 -0
  51. package/packages/dd-trace/src/ci-visibility/test-management/get-test-management-tests.js +1 -1
  52. package/packages/dd-trace/src/config/defaults.js +148 -197
  53. package/packages/dd-trace/src/config/helper.js +43 -1
  54. package/packages/dd-trace/src/config/index.js +38 -14
  55. package/packages/dd-trace/src/config/supported-configurations.json +4125 -512
  56. package/packages/dd-trace/src/constants.js +0 -2
  57. package/packages/dd-trace/src/crashtracking/crashtracker.js +10 -3
  58. package/packages/dd-trace/src/datastreams/checkpointer.js +13 -0
  59. package/packages/dd-trace/src/datastreams/index.js +3 -0
  60. package/packages/dd-trace/src/datastreams/manager.js +9 -0
  61. package/packages/dd-trace/src/datastreams/pathway.js +22 -3
  62. package/packages/dd-trace/src/datastreams/processor.js +140 -4
  63. package/packages/dd-trace/src/encode/agentless-json.js +155 -0
  64. package/packages/dd-trace/src/exporter.js +2 -0
  65. package/packages/dd-trace/src/exporters/agent/writer.js +21 -8
  66. package/packages/dd-trace/src/exporters/agentless/index.js +89 -0
  67. package/packages/dd-trace/src/exporters/agentless/writer.js +184 -0
  68. package/packages/dd-trace/src/exporters/common/request.js +4 -4
  69. package/packages/dd-trace/src/llmobs/plugins/ai/index.js +5 -3
  70. package/packages/dd-trace/src/opentelemetry/context_manager.js +19 -46
  71. package/packages/dd-trace/src/opentelemetry/otlp/otlp_http_exporter_base.js +3 -4
  72. package/packages/dd-trace/src/opentracing/propagation/text_map.js +3 -5
  73. package/packages/dd-trace/src/opentracing/span.js +6 -4
  74. package/packages/dd-trace/src/pkg.js +1 -1
  75. package/packages/dd-trace/src/plugins/ci_plugin.js +57 -5
  76. package/packages/dd-trace/src/plugins/database.js +15 -2
  77. package/packages/dd-trace/src/plugins/util/test.js +48 -0
  78. package/packages/dd-trace/src/profiling/exporter_cli.js +1 -0
  79. package/packages/dd-trace/src/propagation-hash/index.js +145 -0
  80. package/packages/dd-trace/src/proxy.js +6 -1
  81. package/packages/dd-trace/src/runtime_metrics/runtime_metrics.js +1 -1
  82. package/packages/dd-trace/src/startup-log.js +53 -19
  83. package/vendor/dist/@datadog/sketches-js/index.js +1 -1
  84. package/vendor/dist/@datadog/source-map/index.js +1 -1
  85. package/vendor/dist/@isaacs/ttlcache/index.js +1 -1
  86. package/vendor/dist/@opentelemetry/core/index.js +1 -1
  87. package/vendor/dist/@opentelemetry/resources/index.js +1 -1
  88. package/vendor/dist/astring/index.js +1 -1
  89. package/vendor/dist/crypto-randomuuid/index.js +1 -1
  90. package/vendor/dist/escape-string-regexp/index.js +1 -1
  91. package/vendor/dist/esquery/index.js +1 -1
  92. package/vendor/dist/ignore/index.js +1 -1
  93. package/vendor/dist/istanbul-lib-coverage/index.js +1 -1
  94. package/vendor/dist/jest-docblock/index.js +1 -1
  95. package/vendor/dist/jsonpath-plus/index.js +1 -1
  96. package/vendor/dist/limiter/index.js +1 -1
  97. package/vendor/dist/lodash.sortby/index.js +1 -1
  98. package/vendor/dist/lru-cache/index.js +1 -1
  99. package/vendor/dist/meriyah/index.js +1 -1
  100. package/vendor/dist/module-details-from-path/index.js +1 -1
  101. package/vendor/dist/mutexify/promise/index.js +1 -1
  102. package/vendor/dist/opentracing/index.js +1 -1
  103. package/vendor/dist/path-to-regexp/index.js +1 -1
  104. package/vendor/dist/pprof-format/index.js +1 -1
  105. package/vendor/dist/protobufjs/index.js +1 -1
  106. package/vendor/dist/protobufjs/minimal/index.js +1 -1
  107. package/vendor/dist/retry/index.js +1 -1
  108. package/vendor/dist/rfdc/index.js +1 -1
  109. package/vendor/dist/semifies/index.js +1 -1
  110. package/vendor/dist/shell-quote/index.js +1 -1
  111. package/vendor/dist/source-map/index.js +1 -1
  112. package/vendor/dist/source-map/lib/util/index.js +1 -1
  113. package/vendor/dist/tlhunter-sorted-set/index.js +1 -1
  114. package/vendor/dist/ttl-set/index.js +1 -1
  115. package/packages/datadog-instrumentations/src/helpers/rewriter/compiler.js +0 -33
  116. package/packages/datadog-instrumentations/src/helpers/rewriter/instrumentations/bullmq.json +0 -106
  117. package/packages/dd-trace/src/appsec/iast/analyzers/hardcoded-secrets-rules.js +0 -741
  118. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-regex.js +0 -11
  119. package/packages/dd-trace/src/scope/noop/scope.js +0 -21
@@ -1,516 +1,4129 @@
1
1
  {
2
+ "version": "2",
2
3
  "supportedConfigurations": {
3
- "DD_AAS_DOTNET_EXTENSION_VERSION": ["A"],
4
- "DD_ACTION_EXECUTION_ID": ["A"],
5
- "DD_AGENT_HOST": ["A"],
6
- "DD_AGENTLESS_LOG_SUBMISSION_ENABLED": ["A"],
7
- "DD_AGENTLESS_LOG_SUBMISSION_URL": ["A"],
8
- "DD_AI_GUARD_ENABLED": ["A"],
9
- "DD_AI_GUARD_ENDPOINT": ["A"],
10
- "DD_AI_GUARD_MAX_CONTENT_SIZE": ["A"],
11
- "DD_AI_GUARD_MAX_MESSAGES_LENGTH": ["A"],
12
- "DD_AI_GUARD_TIMEOUT": ["A"],
13
- "DD_API_KEY": ["A"],
14
- "DD_API_SECURITY_ENABLED": ["A"],
15
- "DD_API_SECURITY_SAMPLE_DELAY": ["A"],
16
- "DD_API_SECURITY_ENDPOINT_COLLECTION_ENABLED": ["A"],
17
- "DD_API_SECURITY_ENDPOINT_COLLECTION_MESSAGE_LIMIT": ["A"],
18
- "DD_API_SECURITY_DOWNSTREAM_BODY_ANALYSIS_SAMPLE_RATE": ["A"],
19
- "DD_API_SECURITY_MAX_DOWNSTREAM_REQUEST_BODY_ANALYSIS": ["A"],
20
- "DD_APM_FLUSH_DEADLINE_MILLISECONDS": ["A"],
21
- "DD_APM_TRACING_ENABLED": ["A"],
22
- "DD_APP_KEY": ["A"],
23
- "DD_APPSEC_AUTO_USER_INSTRUMENTATION_MODE": ["A"],
24
- "DD_APPSEC_COLLECT_ALL_HEADERS": ["A"],
25
- "DD_APPSEC_ENABLED": ["A"],
26
- "DD_APPSEC_GRAPHQL_BLOCKED_TEMPLATE_JSON": ["A"],
27
- "DD_APPSEC_HEADER_COLLECTION_REDACTION_ENABLED": ["A"],
28
- "DD_APPSEC_HTTP_BLOCKED_TEMPLATE_HTML": ["A"],
29
- "DD_APPSEC_HTTP_BLOCKED_TEMPLATE_JSON": ["A"],
30
- "DD_APPSEC_MAX_COLLECTED_HEADERS": ["A"],
31
- "DD_APPSEC_MAX_STACK_TRACE_DEPTH": ["A"],
32
- "DD_APPSEC_MAX_STACK_TRACES": ["A"],
33
- "DD_APPSEC_OBFUSCATION_PARAMETER_KEY_REGEXP": ["A"],
34
- "DD_APPSEC_OBFUSCATION_PARAMETER_VALUE_REGEXP": ["A"],
35
- "DD_APPSEC_RASP_COLLECT_REQUEST_BODY": ["A"],
36
- "DD_APPSEC_RASP_ENABLED": ["A"],
37
- "DD_APPSEC_RULES": ["A"],
38
- "DD_APPSEC_SCA_ENABLED": ["A"],
39
- "DD_APPSEC_STACK_TRACE_ENABLED": ["A"],
40
- "DD_APPSEC_TRACE_RATE_LIMIT": ["A"],
41
- "DD_APPSEC_WAF_TIMEOUT": ["A"],
42
- "DD_AZURE_RESOURCE_GROUP": ["A"],
43
- "DD_CIVISIBILITY_AGENTLESS_ENABLED": ["A"],
44
- "DD_CIVISIBILITY_AGENTLESS_URL": ["A"],
45
- "DD_CIVISIBILITY_AUTO_INSTRUMENTATION_PROVIDER": ["A"],
46
- "DD_CIVISIBILITY_DANGEROUSLY_FORCE_COVERAGE": ["A"],
47
- "DD_CIVISIBILITY_DANGEROUSLY_FORCE_TEST_SKIPPING": ["A"],
48
- "DD_CIVISIBILITY_EARLY_FLAKE_DETECTION_ENABLED": ["A"],
49
- "DD_CIVISIBILITY_ENABLED": ["A"],
50
- "DD_CIVISIBILITY_FLAKY_RETRY_COUNT": ["A"],
51
- "DD_CIVISIBILITY_FLAKY_RETRY_ENABLED": ["A"],
52
- "DD_CIVISIBILITY_GIT_UNSHALLOW_ENABLED": ["A"],
53
- "DD_CIVISIBILITY_GIT_UPLOAD_ENABLED": ["A"],
54
- "DD_CIVISIBILITY_IMPACTED_TESTS_DETECTION_ENABLED": ["A"],
55
- "DD_CIVISIBILITY_ITR_ENABLED": ["A"],
56
- "DD_CIVISIBILITY_RUM_FLUSH_WAIT_MILLIS": ["A"],
57
- "DD_CIVISIBILITY_MANUAL_API_ENABLED": ["A"],
58
- "DD_CIVISIBILITY_TEST_COMMAND": ["A"],
59
- "DD_CIVISIBILITY_TEST_MODULE_ID": ["A"],
60
- "DD_CIVISIBILITY_TEST_SESSION_ID": ["A"],
61
- "DD_CODE_ORIGIN_FOR_SPANS_ENABLED": ["A"],
62
- "DD_CODE_ORIGIN_FOR_SPANS_EXPERIMENTAL_EXIT_SPANS_ENABLED": ["A"],
63
- "DD_CRASHTRACKING_ENABLED": ["A"],
64
- "DD_CUSTOM_TRACE_ID": ["A"],
65
- "DD_DATA_STREAMS_ENABLED": ["A"],
66
- "DD_DBM_PROPAGATION_MODE": ["A"],
67
- "DD_DOGSTATSD_HOST": ["A"],
68
- "DD_DOGSTATSD_PORT": ["A"],
69
- "DD_DYNAMIC_INSTRUMENTATION_CAPTURE_TIMEOUT_MS": ["A"],
70
- "DD_DYNAMIC_INSTRUMENTATION_ENABLED": ["A"],
71
- "DD_DYNAMIC_INSTRUMENTATION_PROBE_FILE": ["A"],
72
- "DD_DYNAMIC_INSTRUMENTATION_REDACTED_IDENTIFIERS": ["A"],
73
- "DD_DYNAMIC_INSTRUMENTATION_REDACTION_EXCLUDED_IDENTIFIERS": ["A"],
74
- "DD_DYNAMIC_INSTRUMENTATION_UPLOAD_INTERVAL_SECONDS": ["A"],
75
- "DD_ENV": ["A"],
76
- "DD_EXPERIMENTAL_APPSEC_STANDALONE_ENABLED": ["A"],
77
- "DD_EXPERIMENTAL_FLAGGING_PROVIDER_ENABLED": ["A"],
78
- "DD_EXPERIMENTAL_FLAGGING_PROVIDER_INITIALIZATION_TIMEOUT_MS": ["A"],
79
- "DD_EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED": ["A"],
80
- "DD_EXPERIMENTAL_TEST_OPT_GIT_CACHE_ENABLED": ["A"],
81
- "DD_EXPERIMENTAL_TEST_OPT_GIT_CACHE_DIR": ["A"],
82
- "DD_EXTERNAL_ENV": ["A"],
83
- "DD_GIT_BRANCH": ["A"],
84
- "DD_GIT_COMMIT_AUTHOR_DATE": ["A"],
85
- "DD_GIT_COMMIT_AUTHOR_EMAIL": ["A"],
86
- "DD_GIT_COMMIT_AUTHOR_NAME": ["A"],
87
- "DD_GIT_COMMIT_COMMITTER_DATE": ["A"],
88
- "DD_GIT_COMMIT_COMMITTER_EMAIL": ["A"],
89
- "DD_GIT_COMMIT_COMMITTER_NAME": ["A"],
90
- "DD_GIT_COMMIT_MESSAGE": ["A"],
91
- "DD_GIT_COMMIT_SHA": ["A"],
92
- "DD_GIT_PROPERTIES_FILE": ["A"],
93
- "DD_GIT_FOLDER_PATH": ["A"],
94
- "DD_GIT_REPOSITORY_URL": ["A"],
95
- "DD_GIT_TAG": ["A"],
96
- "DD_GIT_PULL_REQUEST_BASE_BRANCH": ["A"],
97
- "DD_GIT_PULL_REQUEST_BASE_BRANCH_SHA": ["A"],
98
- "DD_GIT_COMMIT_HEAD_SHA": ["A"],
99
- "DD_GRPC_CLIENT_ERROR_STATUSES": ["A"],
100
- "DD_GRPC_SERVER_ERROR_STATUSES": ["A"],
101
- "DD_HEAP_SNAPSHOT_COUNT": ["A"],
102
- "DD_HEAP_SNAPSHOT_INTERVAL": ["A"],
103
- "DD_HEAP_SNAPSHOT_DESTINATION": ["A"],
104
- "DD_IAST_DB_ROWS_TO_TAINT": ["A"],
105
- "DD_IAST_DEDUPLICATION_ENABLED": ["A"],
106
- "DD_IAST_ENABLED": ["A"],
107
- "DD_IAST_MAX_CONCURRENT_REQUESTS": ["A"],
108
- "DD_IAST_MAX_CONTEXT_OPERATIONS": ["A"],
109
- "DD_IAST_REDACTION_ENABLED": ["A"],
110
- "DD_IAST_REDACTION_NAME_PATTERN": ["A"],
111
- "DD_IAST_REDACTION_VALUE_PATTERN": ["A"],
112
- "DD_IAST_REQUEST_SAMPLING": ["A"],
113
- "DD_IAST_SECURITY_CONTROLS_CONFIGURATION": ["A"],
114
- "DD_IAST_STACK_TRACE_ENABLED": ["A"],
115
- "DD_IAST_TELEMETRY_VERBOSITY": ["A"],
116
- "DD_INJECT_FORCE": ["A"],
117
- "DD_INJECTION_ENABLED": ["A"],
118
- "DD_ENABLE_NX_SERVICE_NAME": ["A"],
119
- "DD_INSTRUMENTATION_CONFIG_ID": ["A"],
120
- "DD_INSTRUMENTATION_INSTALL_ID": ["A"],
121
- "DD_INSTRUMENTATION_INSTALL_TIME": ["A"],
122
- "DD_INSTRUMENTATION_INSTALL_TYPE": ["A"],
123
- "DD_INSTRUMENTATION_TELEMETRY_ENABLED": ["A"],
124
- "DD_INTERNAL_PROFILING_LONG_LIVED_THRESHOLD": ["A"],
125
- "DD_INTERNAL_PROFILING_TIMELINE_SAMPLING_ENABLED": ["A"],
126
- "DD_LAMBDA_HANDLER": ["A"],
127
- "DD_LANGCHAIN_SPAN_CHAR_LIMIT": ["A"],
128
- "DD_LANGCHAIN_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": ["A"],
129
- "DD_LLMOBS_AGENTLESS_ENABLED": ["A"],
130
- "DD_LLMOBS_ENABLED": ["A"],
131
- "DD_LLMOBS_ML_APP": ["A"],
132
- "DD_LOG_LEVEL": ["A"],
133
- "DD_LOGS_INJECTION": ["A"],
134
- "DD_LOGS_OTEL_ENABLED": ["A"],
135
- "DD_METRICS_OTEL_ENABLED": ["A"],
136
- "DD_MINI_AGENT_PATH": ["A"],
137
- "DD_OPENAI_LOGS_ENABLED": ["A"],
138
- "DD_OPENAI_SPAN_CHAR_LIMIT": ["A"],
139
- "DD_PIPELINE_EXECUTION_ID": ["A"],
140
- "DD_PLAYWRIGHT_WORKER": ["A"],
141
- "DD_PROFILING_ASYNC_CONTEXT_FRAME_ENABLED": ["A"],
142
- "DD_PROFILING_CODEHOTSPOTS_ENABLED": ["A"],
143
- "DD_PROFILING_CPU_ENABLED": ["A"],
144
- "DD_PROFILING_DEBUG_SOURCE_MAPS": ["A"],
145
- "DD_PROFILING_DEBUG_UPLOAD_COMPRESSION": ["A"],
146
- "DD_PROFILING_ENABLED": ["A"],
147
- "DD_PROFILING_ENDPOINT_COLLECTION_ENABLED": ["A"],
148
- "DD_PROFILING_EXPERIMENTAL_OOM_EXPORT_STRATEGIES": ["A"],
149
- "DD_PROFILING_EXPERIMENTAL_OOM_HEAP_LIMIT_EXTENSION_SIZE": ["A"],
150
- "DD_PROFILING_EXPERIMENTAL_OOM_MAX_HEAP_EXTENSION_COUNT": ["A"],
151
- "DD_PROFILING_EXPERIMENTAL_OOM_MONITORING_ENABLED": ["A"],
152
- "DD_PROFILING_EXPORTERS": ["A"],
153
- "DD_PROFILING_HEAP_ENABLED": ["A"],
154
- "DD_PROFILING_HEAP_SAMPLING_INTERVAL": ["A"],
155
- "DD_PROFILING_PPROF_PREFIX": ["A"],
156
- "DD_PROFILING_PROFILERS": ["A"],
157
- "DD_PROFILING_SOURCE_MAP": ["A"],
158
- "DD_PROFILING_TIMELINE_ENABLED": ["A"],
159
- "DD_PROFILING_UPLOAD_PERIOD": ["A"],
160
- "DD_PROFILING_UPLOAD_TIMEOUT": ["A"],
161
- "DD_PROFILING_V8_PROFILER_BUG_WORKAROUND": ["A"],
162
- "DD_PROFILING_WALLTIME_ENABLED": ["A"],
163
- "DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": ["A"],
164
- "DD_REMOTE_CONFIGURATION_ENABLED": ["A"],
165
- "DD_RUNTIME_METRICS_ENABLED": ["A"],
166
- "DD_RUNTIME_METRICS_EVENT_LOOP_ENABLED": ["A"],
167
- "DD_RUNTIME_METRICS_GC_ENABLED": ["A"],
168
- "DD_RUNTIME_METRICS_FLUSH_INTERVAL": ["A"],
169
- "DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED": ["A"],
170
- "DD_TRACE_GCP_PUBSUB_PUSH_ENABLED": ["A"],
171
- "DD_SERVICE_MAPPING": ["A"],
172
- "DD_SERVICE": ["A"],
173
- "DD_SITE": ["A"],
174
- "DD_SPAN_SAMPLING_RULES_FILE": ["A"],
175
- "DD_SPAN_SAMPLING_RULES": ["A"],
176
- "DD_TAGS": ["A"],
177
- "DD_TELEMETRY_DEBUG": ["A"],
178
- "DD_TELEMETRY_DEPENDENCY_COLLECTION_ENABLED": ["A"],
179
- "DD_TELEMETRY_FORWARDER_PATH": ["A"],
180
- "DD_TELEMETRY_HEARTBEAT_INTERVAL": ["A"],
181
- "DD_TELEMETRY_LOG_COLLECTION_ENABLED": ["A"],
182
- "DD_TELEMETRY_METRICS_ENABLED": ["A"],
183
- "DD_TEST_FAILED_TEST_REPLAY_ENABLED": ["A"],
184
- "DD_TEST_FLEET_CONFIG_PATH": ["A"],
185
- "DD_TEST_LOCAL_CONFIG_PATH": ["A"],
186
- "DD_TEST_MANAGEMENT_ATTEMPT_TO_FIX_RETRIES": ["A"],
187
- "DD_TEST_MANAGEMENT_ENABLED": ["A"],
188
- "DD_EXPERIMENTAL_TEST_OPT_SETTINGS_CACHE": ["A"],
189
- "DD_TEST_SESSION_NAME": ["A"],
190
- "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": ["A"],
191
- "DD_TRACE_128_BIT_TRACEID_LOGGING_ENABLED": ["A"],
192
- "DD_TRACE_AEROSPIKE_ENABLED": ["A"],
193
- "DD_TRACE_AI_ENABLED": ["A"],
194
- "DD_TRACE_ANTHROPIC_ENABLED": ["A"],
195
- "DD_TRACE_AGENT_PORT": ["A"],
196
- "DD_TRACE_AGENT_PROTOCOL_VERSION": ["A"],
197
- "DD_TRACE_AGENT_URL": ["A"],
198
- "DD_TRACE_AMQP10_ENABLED": ["A"],
199
- "DD_TRACE_AMQPLIB_ENABLED": ["A"],
200
- "DD_TRACE_APOLLO_ENABLED": ["A"],
201
- "DD_TRACE_APOLLO_GATEWAY_ENABLED": ["A"],
202
- "DD_TRACE_APOLLO_SERVER_CORE_ENABLED": ["A"],
203
- "DD_TRACE_APOLLO_SERVER_ENABLED": ["A"],
204
- "DD_TRACE_APOLLO_SERVER_EXPRESS_ENABLED": ["A"],
205
- "DD_TRACE_APOLLO_SERVER_FASTIFY_ENABLED": ["A"],
206
- "DD_TRACE_APOLLO_SUBGRAPH_ENABLED": ["A"],
207
- "DD_TRACE_AVSC_ENABLED": ["A"],
208
- "DD_TRACE_AWS_ADD_SPAN_POINTERS": ["A"],
209
- "DD_TRACE_AWS_SDK_AWS_BATCH_PROPAGATION_ENABLED": ["A"],
210
- "DD_TRACE_AWS_SDK_AWS_ENABLED": ["A"],
211
- "DD_TRACE_AWS_SDK_BATCH_PROPAGATION_ENABLED": ["A"],
212
- "DD_TRACE_AWS_SDK_BEDROCKRUNTIME_BATCH_PROPAGATION_ENABLED": ["A"],
213
- "DD_TRACE_AWS_SDK_BEDROCKRUNTIME_ENABLED": ["A"],
214
- "DD_TRACE_AWS_SDK_CLOUDWATCHLOGS_BATCH_PROPAGATION_ENABLED": ["A"],
215
- "DD_TRACE_AWS_SDK_CLOUDWATCHLOGS_ENABLED": ["A"],
216
- "DD_TRACE_AWS_SDK_DYNAMODB_BATCH_PROPAGATION_ENABLED": ["A"],
217
- "DD_TRACE_AWS_SDK_DYNAMODB_ENABLED": ["A"],
218
- "DD_TRACE_AWS_SDK_ENABLED": ["A"],
219
- "DD_TRACE_AWS_SDK_EVENTBRIDGE_BATCH_PROPAGATION_ENABLED": ["A"],
220
- "DD_TRACE_AWS_SDK_EVENTBRIDGE_ENABLED": ["A"],
221
- "DD_TRACE_AWS_SDK_KINESIS_BATCH_PROPAGATION_ENABLED": ["A"],
222
- "DD_TRACE_AWS_SDK_KINESIS_ENABLED": ["A"],
223
- "DD_TRACE_AWS_SDK_LAMBDA_BATCH_PROPAGATION_ENABLED": ["A"],
224
- "DD_TRACE_AWS_SDK_LAMBDA_ENABLED": ["A"],
225
- "DD_TRACE_AWS_SDK_NODE_HTTP_HANDLER_ENABLED": ["A"],
226
- "DD_TRACE_AWS_SDK_REDSHIFT_BATCH_PROPAGATION_ENABLED": ["A"],
227
- "DD_TRACE_AWS_SDK_REDSHIFT_ENABLED": ["A"],
228
- "DD_TRACE_AWS_SDK_S3_BATCH_PROPAGATION_ENABLED": ["A"],
229
- "DD_TRACE_AWS_SDK_S3_ENABLED": ["A"],
230
- "DD_TRACE_AWS_SDK_SFN_BATCH_PROPAGATION_ENABLED": ["A"],
231
- "DD_TRACE_AWS_SDK_SFN_CLIENT_ENABLED": ["A"],
232
- "DD_TRACE_AWS_SDK_SFN_ENABLED": ["A"],
233
- "DD_TRACE_AWS_SDK_SMITHY_CLIENT_ENABLED": ["A"],
234
- "DD_TRACE_AWS_SDK_SNS_BATCH_PROPAGATION_ENABLED": ["A"],
235
- "DD_TRACE_AWS_SDK_SNS_ENABLED": ["A"],
236
- "DD_TRACE_AWS_SDK_SQS_BATCH_PROPAGATION_ENABLED": ["A"],
237
- "DD_TRACE_AWS_SDK_SQS_ENABLED": ["A"],
238
- "DD_TRACE_AWS_SDK_STATES_BATCH_PROPAGATION_ENABLED": ["A"],
239
- "DD_TRACE_AWS_SDK_STATES_ENABLED": ["A"],
240
- "DD_TRACE_AWS_SDK_STEPFUNCTIONS_BATCH_PROPAGATION_ENABLED": ["A"],
241
- "DD_TRACE_AWS_SDK_STEPFUNCTIONS_ENABLED": ["A"],
242
- "DD_TRACE_AXIOS_ENABLED": ["A"],
243
- "DD_TRACE_AZURE_EVENT_HUBS_ENABLED": ["A"],
244
- "DD_TRACE_AZURE_EVENTHUBS_BATCH_LINKS_ENABLED": ["A"],
245
- "DD_TRACE_AZURE_FUNCTIONS_ENABLED": ["A"],
246
- "DD_TRACE_AZURE_SERVICE_BUS_ENABLED": ["A"],
247
- "DD_TRACE_AZURE_SERVICEBUS_BATCH_LINKS_ENABLED": ["A"],
248
- "DD_TRACE_BAGGAGE_MAX_BYTES": ["A"],
249
- "DD_TRACE_BAGGAGE_MAX_ITEMS": ["A"],
250
- "DD_TRACE_BAGGAGE_TAG_KEYS": ["A"],
251
- "DD_TRACE_BEAUTIFUL_LOGS": ["A"],
252
- "DD_TRACE_BLUEBIRD_ENABLED": ["A"],
253
- "DD_TRACE_BULLMQ_ENABLED": ["A"],
254
- "DD_TRACE_BODY_PARSER_ENABLED": ["A"],
255
- "DD_TRACE_BSON_ENABLED": ["A"],
256
- "DD_TRACE_BUNYAN_ENABLED": ["A"],
257
- "DD_TRACE_CASSANDRA_DRIVER_ENABLED": ["A"],
258
- "DD_TRACE_CHILD_PROCESS_ENABLED": ["A"],
259
- "DD_TRACE_CLIENT_IP_ENABLED": ["A"],
260
- "DD_TRACE_CLIENT_IP_HEADER": ["A"],
261
- "DD_TRACE_CLOUD_PAYLOAD_TAGGING_MAX_DEPTH": ["A"],
262
- "DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": ["A"],
263
- "DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": ["A"],
264
- "DD_TRACE_COLLECTIONS_ENABLED": ["A"],
265
- "DD_TRACE_COMMONPLUGIN_ENABLED": ["A"],
266
- "DD_TRACE_CONFLUENTINC_KAFKA_JAVASCRIPT_ENABLED": ["A"],
267
- "DD_TRACE_CONNECT_ENABLED": ["A"],
268
- "DD_TRACE_COOKIE_ENABLED": ["A"],
269
- "DD_TRACE_COOKIE_PARSER_ENABLED": ["A"],
270
- "DD_TRACE_COUCHBASE_ENABLED": ["A"],
271
- "DD_TRACE_CRYPTO_ENABLED": ["A"],
272
- "DD_TRACE_CUCUMBER_CUCUMBER_ENABLED": ["A"],
273
- "DD_TRACE_CUCUMBER_ENABLED": ["A"],
274
- "DD_TRACE_CYPRESS_ENABLED": ["A"],
275
- "DD_TRACE_DD_TRACE_API_ENABLED": ["A"],
276
- "DD_TRACE_DEBUG": ["A"],
277
- "DD_TRACE_DISABLED_INSTRUMENTATIONS": ["A"],
278
- "DD_TRACE_DISABLED_PLUGINS": ["A"],
279
- "DD_TRACE_DNS_ENABLED": ["A"],
280
- "DD_TRACE_DYNAMODB_TABLE_PRIMARY_KEYS": ["A"],
281
- "DD_TRACE_ELASTIC_ELASTICSEARCH_ENABLED": ["A"],
282
- "DD_TRACE_ELASTIC_TRANSPORT_ENABLED": ["A"],
283
- "DD_TRACE_ELASTICSEARCH_ENABLED": ["A"],
284
- "DD_TRACE_ENABLED": ["A"],
285
- "DD_TRACE_ENCODING_DEBUG": ["A"],
286
- "DD_TRACE_EXPERIMENTAL_B3_ENABLED": ["A"],
287
- "DD_TRACE_EXPERIMENTAL_EXPORTER": ["A"],
288
- "DD_TRACE_EXPERIMENTAL_GET_RUM_DATA_ENABLED": ["A"],
289
- "DD_TRACE_EXPERIMENTAL_SPAN_COUNTS": ["A"],
290
- "DD_TRACE_EXPERIMENTAL_STATE_TRACKING": ["A"],
291
- "DD_TRACE_EXPRESS_ENABLED": ["A"],
292
- "DD_TRACE_EXPRESS_MONGO_SANITIZE_ENABLED": ["A"],
293
- "DD_TRACE_EXPRESS_SESSION_ENABLED": ["A"],
294
- "DD_TRACE_FASTIFY_ENABLED": ["A"],
295
- "DD_TRACE_FETCH_ENABLED": ["A"],
296
- "DD_TRACE_FIND_MY_WAY_ENABLED": ["A"],
297
- "DD_TRACE_FLUSH_INTERVAL": ["A"],
298
- "DD_TRACE_FS_ENABLED": ["A"],
299
- "DD_TRACE_GENERIC_POOL_ENABLED": ["A"],
300
- "DD_TRACE_GIT_METADATA_ENABLED": ["A"],
301
- "DD_TRACE_GLOBAL_TAGS": ["A"],
302
- "DD_TRACE_GOOGLE_CLOUD_PUBSUB_ENABLED": ["A"],
303
- "DD_TRACE_GOOGLE_CLOUD_VERTEXAI_ENABLED": ["A"],
304
- "DD_TRACE_GOOGLE_GAX_ENABLED": ["A"],
305
- "DD_TRACE_GOOGLE_GENAI_ENABLED": ["A"],
306
- "DD_TRACE_GRAPHQL_ENABLED": ["A"],
307
- "DD_TRACE_GRAPHQL_ERROR_EXTENSIONS": ["A"],
308
- "DD_TRACE_GRAPHQL_TAG_ENABLED": ["A"],
309
- "DD_TRACE_GRAPHQL_TOOLS_ENABLED": ["A"],
310
- "DD_TRACE_GRAPHQL_TOOLS_EXECUTOR_ENABLED": ["A"],
311
- "DD_TRACE_GRAPHQL_YOGA_ENABLED": ["A"],
312
- "DD_TRACE_GRPC_ENABLED": ["A"],
313
- "DD_TRACE_GRPC_GRPC_JS_ENABLED": ["A"],
314
- "DD_TRACE_GRPC_PROTO_LOADER_ENABLED": ["A"],
315
- "DD_TRACE_HANDLEBARS_ENABLED": ["A"],
316
- "DD_TRACE_HAPI_BOOM_ENABLED": ["A"],
317
- "DD_TRACE_HAPI_ENABLED": ["A"],
318
- "DD_TRACE_HAPI_HAPI_ENABLED": ["A"],
319
- "DD_TRACE_HEADER_TAGS": ["A"],
320
- "DD_TRACE_HONO_ENABLED": ["A"],
321
- "DD_TRACE_HTTP_ENABLED": ["A"],
322
- "DD_TRACE_HTTP2_ENABLED": ["A"],
323
- "DD_TRACE_HTTPS_ENABLED": ["A"],
324
- "DD_TRACE_INFERRED_PROXY_SERVICES_ENABLED": ["A"],
325
- "DD_TRACE_IOREDIS_ENABLED": ["A"],
326
- "DD_TRACE_IOVALKEY_ENABLED": ["A"],
327
- "DD_TRACE_JEST_CIRCUS_ENABLED": ["A"],
328
- "DD_TRACE_JEST_CONFIG_ENABLED": ["A"],
329
- "DD_TRACE_JEST_CORE_ENABLED": ["A"],
330
- "DD_TRACE_JEST_ENABLED": ["A"],
331
- "DD_TRACE_JEST_ENVIRONMENT_JSDOM_ENABLED": ["A"],
332
- "DD_TRACE_JEST_ENVIRONMENT_NODE_ENABLED": ["A"],
333
- "DD_TRACE_JEST_GLOBALS_ENABLED": ["A"],
334
- "DD_TRACE_JEST_REPORTERS_ENABLED": ["A"],
335
- "DD_TRACE_JEST_RUNTIME_ENABLED": ["A"],
336
- "DD_TRACE_JEST_TEST_SEQUENCER_ENABLED": ["A"],
337
- "DD_TRACE_JEST_TRANSFORM_ENABLED": ["A"],
338
- "DD_TRACE_JEST_WORKER_ENABLED": ["A"],
339
- "DD_TRACE_KAFKAJS_ENABLED": ["A"],
340
- "DD_TRACE_KNEX_ENABLED": ["A"],
341
- "DD_TRACE_KOA_ENABLED": ["A"],
342
- "DD_TRACE_KOA_ROUTE_ENABLED": ["A"],
343
- "DD_TRACE_KOA_ROUTER_ENABLED": ["A"],
344
- "DD_TRACE_KOA_WEBSOCKET_ENABLED": ["A"],
345
- "DD_TRACE_LANGCHAIN_ANTHROPIC_ENABLED": ["A"],
346
- "DD_TRACE_LANGCHAIN_COHERE_ENABLED": ["A"],
347
- "DD_TRACE_LANGCHAIN_CORE_ENABLED": ["A"],
348
- "DD_TRACE_LANGCHAIN_ENABLED": ["A"],
349
- "DD_TRACE_LANGCHAIN_GOOGLE_GENAI_ENABLED": ["A"],
350
- "DD_TRACE_LANGCHAIN_OPENAI_ENABLED": ["A"],
351
- "DD_TRACE_LDAPJS_ENABLED": ["A"],
352
- "DD_TRACE_LDAPJS_PROMISE_ENABLED": ["A"],
353
- "DD_TRACE_LEGACY_BAGGAGE_ENABLED": ["A"],
354
- "DD_TRACE_LIMITD_CLIENT_ENABLED": ["A"],
355
- "DD_TRACE_LODASH_ENABLED": ["A"],
356
- "DD_TRACE_LOG_LEVEL": ["A"],
357
- "DD_TRACE_LOOPBACK_ENABLED": ["A"],
358
- "DD_TRACE_MARIADB_ENABLED": ["A"],
359
- "DD_TRACE_MEMCACHED_COMMAND_ENABLED": ["A"],
360
- "DD_TRACE_MEMCACHED_ENABLED": ["A"],
361
- "DD_TRACE_MICROGATEWAY_CORE_ENABLED": ["A"],
362
- "DD_TRACE_MIDDIE_ENABLED": ["A"],
363
- "DD_TRACE_MIDDLEWARE_TRACING_ENABLED": ["A"],
364
- "DD_TRACE_MOCHA_EACH_ENABLED": ["A"],
365
- "DD_TRACE_MOCHA_ENABLED": ["A"],
366
- "DD_TRACE_MOLECULER_ENABLED": ["A"],
367
- "DD_TRACE_MONGODB_CORE_ENABLED": ["A"],
368
- "DD_TRACE_MONGODB_ENABLED": ["A"],
369
- "DD_TRACE_MONGODB_HEARTBEAT_ENABLED": ["A"],
370
- "DD_TRACE_MONGOOSE_ENABLED": ["A"],
371
- "DD_TRACE_MQUERY_ENABLED": ["A"],
372
- "DD_TRACE_MULTER_ENABLED": ["A"],
373
- "DD_TRACE_MYSQL_ENABLED": ["A"],
374
- "DD_TRACE_MYSQL2_ENABLED": ["A"],
375
- "DD_TRACE_NATIVE_SPAN_EVENTS": ["A"],
376
- "DD_TRACE_NET_ENABLED": ["A"],
377
- "DD_TRACE_NEXT_ENABLED": ["A"],
378
- "DD_TRACE_NODE_CHILD_PROCESS_ENABLED": ["A"],
379
- "DD_TRACE_NODE_REDIS_CLIENT_ENABLED": ["A"],
380
- "DD_TRACE_NODE_SERIALIZE_ENABLED": ["A"],
381
- "DD_TRACE_NYC_ENABLED": ["A"],
382
- "DD_TRACE_OBFUSCATION_QUERY_STRING_REGEXP": ["A"],
383
- "DD_TRACE_OPENAI_ENABLED": ["A"],
384
- "DD_TRACE_OPENSEARCH_ENABLED": ["A"],
385
- "DD_TRACE_OPENSEARCH_PROJECT_OPENSEARCH_ENABLED": ["A"],
386
- "DD_TRACE_OPENTELEMETRY_SDK_TRACE_NODE_ENABLED": ["A"],
387
- "DD_TRACE_ORACLEDB_ENABLED": ["A"],
388
- "DD_TRACE_OTEL_ENABLED": ["A"],
389
- "DD_TRACE_PARTIAL_FLUSH_MIN_SPANS": ["A"],
390
- "DD_TRACE_PASSPORT_ENABLED": ["A"],
391
- "DD_TRACE_PASSPORT_HTTP_ENABLED": ["A"],
392
- "DD_TRACE_PASSPORT_LOCAL_ENABLED": ["A"],
393
- "DD_TRACE_PEER_SERVICE_DEFAULTS_ENABLED": ["A"],
394
- "DD_TRACE_PEER_SERVICE_MAPPING": ["A"],
395
- "DD_TRACE_PG_CURSOR_ENABLED": ["A"],
396
- "DD_TRACE_PG_ENABLED": ["A"],
397
- "DD_TRACE_PG_NATIVE_ENABLED": ["A"],
398
- "DD_TRACE_PG_QUERY_STREAM_ENABLED": ["A"],
399
- "DD_TRACE_PINO_ENABLED": ["A"],
400
- "DD_TRACE_PINO_PRETTY_ENABLED": ["A"],
401
- "DD_TRACE_PLAYWRIGHT_CORE_ENABLED": ["A"],
402
- "DD_TRACE_PLAYWRIGHT_ENABLED": ["A"],
403
- "DD_TRACE_PLAYWRIGHT_TEST_ENABLED": ["A"],
404
- "DD_TRACE_PRISMA_ENABLED": ["A"],
405
- "DD_TRACE_PROCESS_ENABLED": ["A"],
406
- "DD_TRACE_PROMISE_ENABLED": ["A"],
407
- "DD_TRACE_PROMISE_JS_ENABLED": ["A"],
408
- "DD_TRACE_PROPAGATION_BEHAVIOR_EXTRACT": ["A"],
409
- "DD_TRACE_PROPAGATION_EXTRACT_FIRST": ["A"],
410
- "DD_TRACE_PROPAGATION_STYLE_EXTRACT": ["A"],
411
- "DD_TRACE_PROPAGATION_STYLE_INJECT": ["A"],
412
- "DD_TRACE_PROPAGATION_STYLE": ["A"],
413
- "DD_TRACE_PROTOBUFJS_ENABLED": ["A"],
414
- "DD_TRACE_PUG_ENABLED": ["A"],
415
- "DD_TRACE_Q_ENABLED": ["A"],
416
- "DD_TRACE_RATE_LIMIT": ["A"],
417
- "DD_TRACE_REACT_DOM_ENABLED": ["A"],
418
- "DD_TRACE_REACT_ENABLED": ["A"],
419
- "DD_TRACE_REDIS_CLIENT_ENABLED": ["A"],
420
- "DD_TRACE_REDIS_ENABLED": ["A"],
421
- "DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED": ["A"],
422
- "DD_TRACE_REPORT_HOSTNAME": ["A"],
423
- "DD_TRACE_REQUEST_ENABLED": ["A"],
424
- "DD_TRACE_RESOURCE_RENAMING_ENABLED": ["A"],
425
- "DD_TRACE_RESTIFY_ENABLED": ["A"],
426
- "DD_TRACE_RHEA_ENABLED": ["A"],
427
- "DD_TRACE_ROUTER_ENABLED": ["A"],
428
- "DD_TRACE_SAMPLE_RATE": ["A"],
429
- "DD_TRACE_SAMPLING_RULES": ["A"],
430
- "DD_TRACE_SCOPE": ["A"],
431
- "DD_TRACE_SELENIUM_ENABLED": ["A"],
432
- "DD_TRACE_SELENIUM_WEBDRIVER_ENABLED": ["A"],
433
- "DD_TRACE_SEQUELIZE_ENABLED": ["A"],
434
- "DD_TRACE_SHAREDB_ENABLED": ["A"],
435
- "DD_TRACE_SMITHY_SMITHY_CLIENT_ENABLED": ["A"],
436
- "DD_TRACE_SPAN_ATTRIBUTE_SCHEMA": ["A"],
437
- "DD_TRACE_SPAN_LEAK_DEBUG": ["A"],
438
- "DD_TRACE_SQLITE3_ENABLED": ["A"],
439
- "DD_TRACE_STARTUP_LOGS": ["A"],
440
- "DD_TRACE_STATS_COMPUTATION_ENABLED": ["A"],
441
- "DD_TRACE_SUFFIXPLUGIN_ENABLED": ["A"],
442
- "DD_TRACE_TAGS": ["A"],
443
- "DD_TRACE_TEDIOUS_ENABLED": ["A"],
444
- "DD_TRACE_UNDICI_ENABLED": ["A"],
445
- "DD_TRACE_URL_ENABLED": ["A"],
446
- "DD_TRACE_VITEST_ENABLED": ["A"],
447
- "DD_TRACE_VITEST_RUNNER_ENABLED": ["A"],
448
- "DD_TRACE_VM_ENABLED": ["A"],
449
- "DD_TRACE_WEBSOCKET_MESSAGES_ENABLED":["A"],
450
- "DD_TRACE_WEBSOCKET_MESSAGES_INHERIT_SAMPLING": ["A"],
451
- "DD_TRACE_WEBSOCKET_MESSAGES_SEPARATE_TRACES":["A"],
452
- "DD_TRACE_WHEN_ENABLED": ["A"],
453
- "DD_TRACE_WINSTON_ENABLED": ["A"],
454
- "DD_TRACE_WORKERPOOL_ENABLED": ["A"],
455
- "DD_TRACE_WS_ENABLED": ["A"],
456
- "DD_TRACE_X_DATADOG_TAGS_MAX_LENGTH": ["A"],
457
- "DD_TRACING_ENABLED": ["A"],
458
- "DD_VERSION": ["A"],
459
- "DD_VERTEXAI_SPAN_CHAR_LIMIT": ["A"],
460
- "DD_VERTEXAI_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": ["A"],
461
- "DD_VITEST_WORKER": ["A"],
462
- "OTEL_LOG_LEVEL": ["A"],
463
- "OTEL_LOGS_EXPORTER": ["A"],
464
- "OTEL_EXPORTER_OTLP_LOGS_ENDPOINT": ["A"],
465
- "OTEL_EXPORTER_OTLP_LOGS_HEADERS": ["A"],
466
- "OTEL_EXPORTER_OTLP_LOGS_PROTOCOL": ["A"],
467
- "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT": ["A"],
468
- "OTEL_EXPORTER_OTLP_ENDPOINT": ["A"],
469
- "OTEL_EXPORTER_OTLP_HEADERS": ["A"],
470
- "OTEL_EXPORTER_OTLP_PROTOCOL": ["A"],
471
- "OTEL_EXPORTER_OTLP_TIMEOUT": ["A"],
472
- "OTEL_BSP_SCHEDULE_DELAY": ["A"],
473
- "OTEL_BSP_MAX_EXPORT_BATCH_SIZE": ["A"],
474
- "OTEL_BSP_MAX_QUEUE_SIZE": ["A"],
475
- "OTEL_EXPORTER_OTLP_METRICS_ENDPOINT": ["A"],
476
- "OTEL_EXPORTER_OTLP_METRICS_HEADERS": ["A"],
477
- "OTEL_EXPORTER_OTLP_METRICS_PROTOCOL": ["A"],
478
- "OTEL_EXPORTER_OTLP_METRICS_TIMEOUT": ["A"],
479
- "OTEL_METRIC_EXPORT_INTERVAL": ["A"],
480
- "OTEL_METRIC_EXPORT_TIMEOUT": ["A"],
481
- "OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE": ["A"],
482
- "OTEL_METRICS_EXPORTER": ["A"],
483
- "OTEL_PROPAGATORS": ["A"],
484
- "OTEL_RESOURCE_ATTRIBUTES": ["A"],
485
- "OTEL_SDK_DISABLED": ["A"],
486
- "OTEL_SERVICE_NAME": ["A"],
487
- "OTEL_TRACES_EXPORTER": ["A"],
488
- "OTEL_TRACES_SAMPLER_ARG": ["A"],
489
- "OTEL_TRACES_SAMPLER": ["A"]
490
- },
491
- "aliases": {
492
- "DD_AGENT_HOST": ["DD_TRACE_AGENT_HOSTNAME"],
493
- "DD_API_KEY": ["DATADOG_API_KEY"],
494
- "DD_API_SECURITY_ENABLED": ["DD_EXPERIMENTAL_API_SECURITY_ENABLED"],
495
- "DD_APPSEC_AUTO_USER_INSTRUMENTATION_MODE": ["DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"],
496
- "DD_DOGSTATSD_HOST": ["DD_DOGSTATSD_HOSTNAME"],
497
- "DD_INSTRUMENTATION_TELEMETRY_ENABLED": ["DD_TRACE_TELEMETRY_ENABLED"],
498
- "DD_PROFILING_CODEHOTSPOTS_ENABLED": ["DD_PROFILING_EXPERIMENTAL_CODEHOTSPOTS_ENABLED"],
499
- "DD_PROFILING_CPU_ENABLED": ["DD_PROFILING_EXPERIMENTAL_CPU_ENABLED"],
500
- "DD_PROFILING_ENABLED": ["DD_EXPERIMENTAL_PROFILING_ENABLED"],
501
- "DD_PROFILING_ENDPOINT_COLLECTION_ENABLED": ["DD_PROFILING_EXPERIMENTAL_ENDPOINT_COLLECTION_ENABLED"],
502
- "DD_PROFILING_TIMELINE_ENABLED": ["DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED"],
503
- "DD_REMOTE_CONFIGURATION_ENABLED": ["DD_REMOTE_CONFIG_ENABLED" ],
504
- "DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED": ["DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED"],
505
- "DD_SERVICE": ["DD_SERVICE_NAME"],
506
- "DD_TRACE_AGENT_URL": ["DD_TRACE_URL"]
507
- },
508
- "deprecations": {
509
- "DD_PROFILING_EXPERIMENTAL_ENDPOINT_COLLECTION_ENABLED": "DD_PROFILING_ENDPOINT_COLLECTION_ENABLED",
510
- "DD_PROFILING_EXPERIMENTAL_CPU_ENABLED": "DD_PROFILING_CPU_ENABLED",
511
- "DD_EXPERIMENTAL_PROFILING_ENABLED": "DD_PROFILING_ENABLED",
512
- "DD_PROFILING_EXPERIMENTAL_CODEHOTSPOTS_ENABLED": "DD_PROFILING_CODEHOTSPOTS_ENABLED",
513
- "DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED": "DD_PROFILING_TIMELINE_ENABLED",
514
- "DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED": "DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED"
4
+ "DD_ACTION_EXECUTION_ID": [
5
+ {
6
+ "implementation": "A",
7
+ "type": "string",
8
+ "default": null
9
+ }
10
+ ],
11
+ "DD_AGENTLESS_LOG_SUBMISSION_ENABLED": [
12
+ {
13
+ "implementation": "A",
14
+ "type": "boolean",
15
+ "default": "false",
16
+ "configurationNames": [
17
+ "ciVisAgentlessLogSubmissionEnabled"
18
+ ]
19
+ }
20
+ ],
21
+ "DD_AGENTLESS_LOG_SUBMISSION_URL": [
22
+ {
23
+ "implementation": "A",
24
+ "type": "string",
25
+ "default": null
26
+ }
27
+ ],
28
+ "_DD_APM_TRACING_AGENTLESS_ENABLED": [
29
+ {
30
+ "implementation": "A",
31
+ "type": "boolean",
32
+ "default": "false",
33
+ "description": "Experimental: Enable agentless APM span intake. When enabled, spans are sent directly to Datadog intake without an agent."
34
+ }
35
+ ],
36
+ "DD_AGENT_HOST": [
37
+ {
38
+ "implementation": "E",
39
+ "type": "string",
40
+ "configurationNames": [
41
+ "hostname"
42
+ ],
43
+ "default": "127.0.0.1",
44
+ "aliases": [
45
+ "DD_TRACE_AGENT_HOSTNAME"
46
+ ]
47
+ }
48
+ ],
49
+ "DD_AI_GUARD_ENABLED": [
50
+ {
51
+ "implementation": "A",
52
+ "type": "boolean",
53
+ "configurationNames": [
54
+ "experimental.aiguard.enabled"
55
+ ],
56
+ "default": "false"
57
+ }
58
+ ],
59
+ "DD_AI_GUARD_ENDPOINT": [
60
+ {
61
+ "implementation": "A",
62
+ "type": "string",
63
+ "configurationNames": [
64
+ "experimental.aiguard.endpoint"
65
+ ],
66
+ "default": null
67
+ }
68
+ ],
69
+ "DD_AI_GUARD_MAX_CONTENT_SIZE": [
70
+ {
71
+ "implementation": "A",
72
+ "type": "int",
73
+ "configurationNames": [
74
+ "experimental.aiguard.maxContentSize"
75
+ ],
76
+ "default": "524288"
77
+ }
78
+ ],
79
+ "DD_AI_GUARD_MAX_MESSAGES_LENGTH": [
80
+ {
81
+ "implementation": "A",
82
+ "type": "int",
83
+ "configurationNames": [
84
+ "experimental.aiguard.maxMessagesLength"
85
+ ],
86
+ "default": "16"
87
+ }
88
+ ],
89
+ "DD_AI_GUARD_TIMEOUT": [
90
+ {
91
+ "implementation": "A",
92
+ "type": "int",
93
+ "configurationNames": [
94
+ "experimental.aiguard.timeout"
95
+ ],
96
+ "default": "10000"
97
+ }
98
+ ],
99
+ "DD_API_KEY": [
100
+ {
101
+ "implementation": "A",
102
+ "type": "string",
103
+ "default": null,
104
+ "aliases": [
105
+ "DATADOG_API_KEY"
106
+ ],
107
+ "configurationNames": [
108
+ "apiKey"
109
+ ]
110
+ }
111
+ ],
112
+ "DD_API_SECURITY_ENABLED": [
113
+ {
114
+ "implementation": "A",
115
+ "type": "boolean",
116
+ "configurationNames": [
117
+ "appsec.apiSecurity.enabled"
118
+ ],
119
+ "default": "true",
120
+ "aliases": [
121
+ "DD_EXPERIMENTAL_API_SECURITY_ENABLED"
122
+ ]
123
+ }
124
+ ],
125
+ "DD_API_SECURITY_ENDPOINT_COLLECTION_ENABLED": [
126
+ {
127
+ "implementation": "A",
128
+ "type": "boolean",
129
+ "configurationNames": [
130
+ "appsec.apiSecurity.endpointCollectionEnabled"
131
+ ],
132
+ "default": "true"
133
+ }
134
+ ],
135
+ "DD_API_SECURITY_ENDPOINT_COLLECTION_MESSAGE_LIMIT": [
136
+ {
137
+ "implementation": "A",
138
+ "type": "int",
139
+ "configurationNames": [
140
+ "appsec.apiSecurity.endpointCollectionMessageLimit"
141
+ ],
142
+ "default": "300"
143
+ }
144
+ ],
145
+ "DD_API_SECURITY_DOWNSTREAM_BODY_ANALYSIS_SAMPLE_RATE": [
146
+ {
147
+ "implementation": "A",
148
+ "type": "decimal",
149
+ "configurationNames": [
150
+ "appsec.apiSecurity.downstreamBodyAnalysisSampleRate"
151
+ ],
152
+ "default": "0.5"
153
+ }
154
+ ],
155
+ "DD_API_SECURITY_MAX_DOWNSTREAM_REQUEST_BODY_ANALYSIS": [
156
+ {
157
+ "implementation": "A",
158
+ "type": "int",
159
+ "configurationNames": [
160
+ "appsec.apiSecurity.maxDownstreamRequestBodyAnalysis"
161
+ ],
162
+ "default": "1"
163
+ }
164
+ ],
165
+ "DD_API_SECURITY_SAMPLE_DELAY": [
166
+ {
167
+ "implementation": "A",
168
+ "type": "decimal",
169
+ "default": "30",
170
+ "configurationNames": [
171
+ "appsec.apiSecurity.sampleDelay"
172
+ ]
173
+ }
174
+ ],
175
+ "DD_APM_FLUSH_DEADLINE_MILLISECONDS": [
176
+ {
177
+ "implementation": "A",
178
+ "type": "int",
179
+ "default": "100"
180
+ }
181
+ ],
182
+ "DD_APM_TRACING_ENABLED": [
183
+ {
184
+ "implementation": "A",
185
+ "type": "boolean",
186
+ "configurationNames": [
187
+ "apmTracingEnabled"
188
+ ],
189
+ "default": "true"
190
+ }
191
+ ],
192
+ "DD_APPSEC_AUTO_USER_INSTRUMENTATION_MODE": [
193
+ {
194
+ "implementation": "E",
195
+ "type": "string",
196
+ "configurationNames": [
197
+ "appsec.eventTracking.mode"
198
+ ],
199
+ "default": "identification",
200
+ "aliases": [
201
+ "DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"
202
+ ]
203
+ }
204
+ ],
205
+ "DD_APPSEC_COLLECT_ALL_HEADERS": [
206
+ {
207
+ "implementation": "A",
208
+ "type": "boolean",
209
+ "configurationNames": [
210
+ "appsec.extendedHeadersCollection.enabled"
211
+ ],
212
+ "default": "false",
213
+ "deprecated": true
214
+ }
215
+ ],
216
+ "DD_APPSEC_ENABLED": [
217
+ {
218
+ "implementation": "C",
219
+ "type": "boolean",
220
+ "configurationNames": [
221
+ "appsec.enabled"
222
+ ],
223
+ "default": null
224
+ }
225
+ ],
226
+ "DD_APPSEC_GRAPHQL_BLOCKED_TEMPLATE_JSON": [
227
+ {
228
+ "implementation": "A",
229
+ "type": "string",
230
+ "configurationNames": [
231
+ "appsec.blockedTemplateGraphql"
232
+ ],
233
+ "default": null
234
+ }
235
+ ],
236
+ "DD_APPSEC_HEADER_COLLECTION_REDACTION_ENABLED": [
237
+ {
238
+ "implementation": "A",
239
+ "type": "boolean",
240
+ "configurationNames": [
241
+ "appsec.extendedHeadersCollection.redaction"
242
+ ],
243
+ "default": "true"
244
+ }
245
+ ],
246
+ "DD_APPSEC_HTTP_BLOCKED_TEMPLATE_HTML": [
247
+ {
248
+ "implementation": "B",
249
+ "type": "string",
250
+ "configurationNames": [
251
+ "appsec.blockedTemplateHtml"
252
+ ],
253
+ "default": null
254
+ }
255
+ ],
256
+ "DD_APPSEC_HTTP_BLOCKED_TEMPLATE_JSON": [
257
+ {
258
+ "implementation": "B",
259
+ "type": "string",
260
+ "configurationNames": [
261
+ "appsec.blockedTemplateJson"
262
+ ],
263
+ "default": null
264
+ }
265
+ ],
266
+ "DD_APPSEC_MAX_COLLECTED_HEADERS": [
267
+ {
268
+ "implementation": "A",
269
+ "type": "int",
270
+ "configurationNames": [
271
+ "appsec.extendedHeadersCollection.maxHeaders"
272
+ ],
273
+ "default": "50"
274
+ }
275
+ ],
276
+ "DD_APPSEC_MAX_STACK_TRACES": [
277
+ {
278
+ "implementation": "A",
279
+ "type": "int",
280
+ "configurationNames": [
281
+ "appsec.stackTrace.maxStackTraces"
282
+ ],
283
+ "default": "2"
284
+ }
285
+ ],
286
+ "DD_APPSEC_MAX_STACK_TRACE_DEPTH": [
287
+ {
288
+ "implementation": "A",
289
+ "type": "int",
290
+ "configurationNames": [
291
+ "appsec.stackTrace.maxDepth"
292
+ ],
293
+ "default": "32"
294
+ }
295
+ ],
296
+ "DD_APPSEC_OBFUSCATION_PARAMETER_KEY_REGEXP": [
297
+ {
298
+ "implementation": "B",
299
+ "type": "string",
300
+ "configurationNames": [
301
+ "appsec.obfuscatorKeyRegex"
302
+ ],
303
+ "default": "(?i)pass|pw(?:or)?d|secret|(?:api|private|public|access)[_-]?key|token|consumer[_-]?(?:id|key|secret)|sign(?:ed|ature)|bearer|authorization|jsessionid|phpsessid|asp\\.net[_-]sessionid|sid|jwt"
304
+ }
305
+ ],
306
+ "DD_APPSEC_OBFUSCATION_PARAMETER_VALUE_REGEXP": [
307
+ {
308
+ "implementation": "G",
309
+ "type": "string",
310
+ "configurationNames": [
311
+ "appsec.obfuscatorValueRegex"
312
+ ],
313
+ "default": "(?i)(?:p(?:ass)?w(?:or)?d|pass(?:[_-]?phrase)?|secret(?:[_-]?key)?|(?:(?:api|private|public|access)[_-]?)key(?:[_-]?id)?|(?:(?:auth|access|id|refresh)[_-]?)?token|consumer[_-]?(?:id|key|secret)|sign(?:ed|ature)?|auth(?:entication|orization)?|jsessionid|phpsessid|asp\\.net(?:[_-]|-)sessionid|sid|jwt)(?:\\s*=([^;&]+)|\"\\s*:\\s*(\"[^\"]+\"|\\d+))|bearer\\s+([a-z0-9\\._\\-]+)|token\\s*:\\s*([a-z0-9]{13})|gh[opsu]_([0-9a-zA-Z]{36})|ey[I-L][\\w=-]+\\.(ey[I-L][\\w=-]+(?:\\.[\\w.+\\/=-]+)?)|[\\-]{5}BEGIN[a-z\\s]+PRIVATE\\sKEY[\\-]{5}([^\\-]+)[\\-]{5}END[a-z\\s]+PRIVATE\\sKEY|ssh-rsa\\s*([a-z0-9\\/\\.+]{100,})"
314
+ }
315
+ ],
316
+ "DD_APPSEC_RASP_COLLECT_REQUEST_BODY": [
317
+ {
318
+ "implementation": "A",
319
+ "type": "boolean",
320
+ "configurationNames": [
321
+ "appsec.rasp.bodyCollection"
322
+ ],
323
+ "default": "false",
324
+ "deprecated": true
325
+ }
326
+ ],
327
+ "DD_APPSEC_RASP_ENABLED": [
328
+ {
329
+ "implementation": "A",
330
+ "type": "boolean",
331
+ "configurationNames": [
332
+ "appsec.rasp.enabled"
333
+ ],
334
+ "default": "true"
335
+ }
336
+ ],
337
+ "DD_APPSEC_RULES": [
338
+ {
339
+ "implementation": "B",
340
+ "type": "string",
341
+ "configurationNames": [
342
+ "appsec.rules"
343
+ ],
344
+ "default": null
345
+ }
346
+ ],
347
+ "DD_APPSEC_SCA_ENABLED": [
348
+ {
349
+ "implementation": "B",
350
+ "type": "boolean",
351
+ "default": null,
352
+ "configurationNames": [
353
+ "appsec.sca.enabled"
354
+ ]
355
+ }
356
+ ],
357
+ "DD_APPSEC_STACK_TRACE_ENABLED": [
358
+ {
359
+ "implementation": "A",
360
+ "type": "boolean",
361
+ "configurationNames": [
362
+ "appsec.stackTrace.enabled"
363
+ ],
364
+ "default": "true"
365
+ }
366
+ ],
367
+ "DD_APPSEC_TRACE_RATE_LIMIT": [
368
+ {
369
+ "implementation": "A",
370
+ "type": "int",
371
+ "configurationNames": [
372
+ "appsec.rateLimit"
373
+ ],
374
+ "default": "100"
375
+ }
376
+ ],
377
+ "DD_APPSEC_WAF_TIMEOUT": [
378
+ {
379
+ "implementation": "E",
380
+ "type": "int",
381
+ "configurationNames": [
382
+ "appsec.wafTimeout"
383
+ ],
384
+ "default": "5000"
385
+ }
386
+ ],
387
+ "DD_APP_KEY": [
388
+ {
389
+ "implementation": "A",
390
+ "type": "string",
391
+ "default": null,
392
+ "configurationNames": [
393
+ "appKey"
394
+ ]
395
+ }
396
+ ],
397
+ "DD_AZURE_RESOURCE_GROUP": [
398
+ {
399
+ "implementation": "A",
400
+ "type": "string",
401
+ "default": null
402
+ }
403
+ ],
404
+ "DD_CIVISIBILITY_AGENTLESS_ENABLED": [
405
+ {
406
+ "implementation": "A",
407
+ "type": "boolean",
408
+ "default": "false"
409
+ }
410
+ ],
411
+ "DD_CIVISIBILITY_AGENTLESS_URL": [
412
+ {
413
+ "implementation": "A",
414
+ "type": "string",
415
+ "default": null
416
+ }
417
+ ],
418
+ "DD_CIVISIBILITY_AUTO_INSTRUMENTATION_PROVIDER": [
419
+ {
420
+ "implementation": "B",
421
+ "type": "boolean",
422
+ "default": "false"
423
+ }
424
+ ],
425
+ "DD_CIVISIBILITY_DANGEROUSLY_FORCE_COVERAGE": [
426
+ {
427
+ "implementation": "A",
428
+ "type": "boolean",
429
+ "default": "false"
430
+ }
431
+ ],
432
+ "DD_CIVISIBILITY_DANGEROUSLY_FORCE_TEST_SKIPPING": [
433
+ {
434
+ "implementation": "A",
435
+ "type": "boolean",
436
+ "default": "false"
437
+ }
438
+ ],
439
+ "DD_CIVISIBILITY_EARLY_FLAKE_DETECTION_ENABLED": [
440
+ {
441
+ "implementation": "B",
442
+ "type": "boolean",
443
+ "default": "true",
444
+ "configurationNames": [
445
+ "isEarlyFlakeDetectionEnabled"
446
+ ]
447
+ }
448
+ ],
449
+ "DD_CIVISIBILITY_ENABLED": [
450
+ {
451
+ "implementation": "A",
452
+ "type": "boolean",
453
+ "default": "false"
454
+ }
455
+ ],
456
+ "DD_CIVISIBILITY_FLAKY_RETRY_COUNT": [
457
+ {
458
+ "implementation": "A",
459
+ "type": "int",
460
+ "default": "5",
461
+ "configurationNames": [
462
+ "flakyTestRetriesCount"
463
+ ]
464
+ }
465
+ ],
466
+ "DD_CIVISIBILITY_FLAKY_RETRY_ENABLED": [
467
+ {
468
+ "implementation": "A",
469
+ "type": "boolean",
470
+ "default": "true",
471
+ "configurationNames": [
472
+ "isFlakyTestRetriesEnabled"
473
+ ]
474
+ }
475
+ ],
476
+ "DD_CIVISIBILITY_GIT_UNSHALLOW_ENABLED": [
477
+ {
478
+ "implementation": "A",
479
+ "type": "boolean",
480
+ "default": "true"
481
+ }
482
+ ],
483
+ "DD_CIVISIBILITY_GIT_UPLOAD_ENABLED": [
484
+ {
485
+ "implementation": "A",
486
+ "type": "boolean",
487
+ "default": "true",
488
+ "configurationNames": [
489
+ "isGitUploadEnabled"
490
+ ]
491
+ }
492
+ ],
493
+ "DD_CIVISIBILITY_IMPACTED_TESTS_DETECTION_ENABLED": [
494
+ {
495
+ "implementation": "A",
496
+ "type": "boolean",
497
+ "default": "true",
498
+ "configurationNames": [
499
+ "isImpactedTestsEnabled"
500
+ ]
501
+ }
502
+ ],
503
+ "DD_CIVISIBILITY_ITR_ENABLED": [
504
+ {
505
+ "implementation": "A",
506
+ "type": "boolean",
507
+ "default": "true",
508
+ "configurationNames": [
509
+ "isIntelligentTestRunnerEnabled"
510
+ ]
511
+ }
512
+ ],
513
+ "DD_CIVISIBILITY_MANUAL_API_ENABLED": [
514
+ {
515
+ "implementation": "A",
516
+ "type": "boolean",
517
+ "default": "true",
518
+ "configurationNames": [
519
+ "isManualApiEnabled"
520
+ ]
521
+ }
522
+ ],
523
+ "DD_CIVISIBILITY_RUM_FLUSH_WAIT_MILLIS": [
524
+ {
525
+ "implementation": "A",
526
+ "type": "int",
527
+ "default": "500"
528
+ }
529
+ ],
530
+ "DD_CIVISIBILITY_TEST_COMMAND": [
531
+ {
532
+ "implementation": "A",
533
+ "type": "string",
534
+ "default": null
535
+ }
536
+ ],
537
+ "DD_CIVISIBILITY_TEST_MODULE_ID": [
538
+ {
539
+ "implementation": "A",
540
+ "type": "string",
541
+ "default": null
542
+ }
543
+ ],
544
+ "DD_CIVISIBILITY_TEST_SESSION_ID": [
545
+ {
546
+ "implementation": "A",
547
+ "type": "string",
548
+ "default": null
549
+ }
550
+ ],
551
+ "DD_CODE_ORIGIN_FOR_SPANS_ENABLED": [
552
+ {
553
+ "implementation": "A",
554
+ "type": "boolean",
555
+ "configurationNames": [
556
+ "codeOriginForSpans.enabled"
557
+ ],
558
+ "default": "true"
559
+ }
560
+ ],
561
+ "DD_CODE_ORIGIN_FOR_SPANS_EXPERIMENTAL_EXIT_SPANS_ENABLED": [
562
+ {
563
+ "implementation": "A",
564
+ "type": "boolean",
565
+ "default": "false",
566
+ "configurationNames": [
567
+ "codeOriginForSpans.experimental.exit_spans.enabled"
568
+ ]
569
+ }
570
+ ],
571
+ "DD_CRASHTRACKING_ENABLED": [
572
+ {
573
+ "implementation": "A",
574
+ "type": "boolean",
575
+ "default": "true",
576
+ "configurationNames": [
577
+ "crashtracking.enabled"
578
+ ]
579
+ }
580
+ ],
581
+ "DD_CUSTOM_TRACE_ID": [
582
+ {
583
+ "implementation": "A",
584
+ "type": "string",
585
+ "default": null
586
+ }
587
+ ],
588
+ "DD_DATA_STREAMS_ENABLED": [
589
+ {
590
+ "implementation": "A",
591
+ "type": "boolean",
592
+ "default": "false",
593
+ "configurationNames": [
594
+ "dsmEnabled"
595
+ ]
596
+ }
597
+ ],
598
+ "DD_DBM_INJECT_SQL_BASEHASH": [
599
+ {
600
+ "implementation": "A",
601
+ "type": "boolean",
602
+ "configurationNames": [
603
+ "dbm.injectSqlBaseHash"
604
+ ],
605
+ "default": "false"
606
+ }
607
+ ],
608
+ "DD_DBM_PROPAGATION_MODE": [
609
+ {
610
+ "implementation": "A",
611
+ "type": "string",
612
+ "configurationNames": [
613
+ "dbmPropagationMode"
614
+ ],
615
+ "default": "disabled"
616
+ }
617
+ ],
618
+ "DD_DOGSTATSD_HOST": [
619
+ {
620
+ "implementation": "A",
621
+ "type": "string",
622
+ "configurationNames": [
623
+ "dogstatsd.hostname"
624
+ ],
625
+ "default": "localhost",
626
+ "aliases": [
627
+ "DD_DOGSTATSD_HOSTNAME"
628
+ ]
629
+ }
630
+ ],
631
+ "DD_DOGSTATSD_PORT": [
632
+ {
633
+ "implementation": "A",
634
+ "type": "int",
635
+ "configurationNames": [
636
+ "dogstatsd.port"
637
+ ],
638
+ "default": "8125"
639
+ }
640
+ ],
641
+ "DD_DYNAMIC_INSTRUMENTATION_CAPTURE_TIMEOUT_MS": [
642
+ {
643
+ "implementation": "A",
644
+ "type": "int",
645
+ "configurationNames": [
646
+ "dynamicInstrumentation.captureTimeoutMs"
647
+ ],
648
+ "default": "15"
649
+ }
650
+ ],
651
+ "DD_DYNAMIC_INSTRUMENTATION_ENABLED": [
652
+ {
653
+ "implementation": "A",
654
+ "type": "boolean",
655
+ "configurationNames": [
656
+ "dynamicInstrumentation.enabled"
657
+ ],
658
+ "default": "false"
659
+ }
660
+ ],
661
+ "DD_DYNAMIC_INSTRUMENTATION_PROBE_FILE": [
662
+ {
663
+ "implementation": "B",
664
+ "type": "string",
665
+ "configurationNames": [
666
+ "dynamicInstrumentation.probeFile"
667
+ ],
668
+ "default": null
669
+ }
670
+ ],
671
+ "DD_DYNAMIC_INSTRUMENTATION_REDACTED_IDENTIFIERS": [
672
+ {
673
+ "implementation": "A",
674
+ "type": "array",
675
+ "configurationNames": [
676
+ "dynamicInstrumentation.redactedIdentifiers"
677
+ ],
678
+ "default": ""
679
+ }
680
+ ],
681
+ "DD_DYNAMIC_INSTRUMENTATION_REDACTION_EXCLUDED_IDENTIFIERS": [
682
+ {
683
+ "implementation": "C",
684
+ "type": "array",
685
+ "configurationNames": [
686
+ "dynamicInstrumentation.redactionExcludedIdentifiers"
687
+ ],
688
+ "default": ""
689
+ }
690
+ ],
691
+ "DD_DYNAMIC_INSTRUMENTATION_UPLOAD_INTERVAL_SECONDS": [
692
+ {
693
+ "implementation": "A",
694
+ "type": "int",
695
+ "configurationNames": [
696
+ "dynamicInstrumentation.uploadIntervalSeconds"
697
+ ],
698
+ "default": "1"
699
+ }
700
+ ],
701
+ "DD_ENABLE_NX_SERVICE_NAME": [
702
+ {
703
+ "implementation": "A",
704
+ "type": "string",
705
+ "default": null
706
+ }
707
+ ],
708
+ "DD_ENV": [
709
+ {
710
+ "implementation": "B",
711
+ "type": "string",
712
+ "configurationNames": [
713
+ "env"
714
+ ],
715
+ "default": null
716
+ }
717
+ ],
718
+ "DD_EXPERIMENTAL_APPSEC_STANDALONE_ENABLED": [
719
+ {
720
+ "implementation": "A",
721
+ "type": "boolean",
722
+ "default": "true"
723
+ }
724
+ ],
725
+ "DD_EXPERIMENTAL_FLAGGING_PROVIDER_INITIALIZATION_TIMEOUT_MS": [
726
+ {
727
+ "implementation": "A",
728
+ "type": "int",
729
+ "configurationNames": [
730
+ "experimental.flaggingProvider.initializationTimeoutMs"
731
+ ],
732
+ "default": "30000"
733
+ }
734
+ ],
735
+ "DD_EXPERIMENTAL_FLAGGING_PROVIDER_ENABLED": [
736
+ {
737
+ "implementation": "A",
738
+ "type": "boolean",
739
+ "configurationNames": [
740
+ "experimental.flaggingProvider.enabled"
741
+ ],
742
+ "default": "false"
743
+ }
744
+ ],
745
+ "DD_EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED": [
746
+ {
747
+ "implementation": "A",
748
+ "type": "boolean",
749
+ "default": "false",
750
+ "configurationNames": [
751
+ "propagateProcessTags.enabled"
752
+ ]
753
+ }
754
+ ],
755
+ "DD_EXPERIMENTAL_TEST_OPT_SETTINGS_CACHE": [
756
+ {
757
+ "implementation": "A",
758
+ "type": "string",
759
+ "default": ""
760
+ }
761
+ ],
762
+ "DD_EXPERIMENTAL_TEST_OPT_GIT_CACHE_DIR": [
763
+ {
764
+ "implementation": "A",
765
+ "type": "string",
766
+ "default": "${os.tmpdir()}/dd-trace-git-cache"
767
+ }
768
+ ],
769
+ "DD_EXPERIMENTAL_TEST_OPT_GIT_CACHE_ENABLED": [
770
+ {
771
+ "implementation": "A",
772
+ "type": "boolean",
773
+ "default": "false"
774
+ }
775
+ ],
776
+ "DD_EXTERNAL_ENV": [
777
+ {
778
+ "implementation": "A",
779
+ "type": "string",
780
+ "default": null
781
+ }
782
+ ],
783
+ "DD_GIT_BRANCH": [
784
+ {
785
+ "implementation": "A",
786
+ "type": "string",
787
+ "default": null
788
+ }
789
+ ],
790
+ "DD_GIT_COMMIT_AUTHOR_DATE": [
791
+ {
792
+ "implementation": "A",
793
+ "type": "string",
794
+ "default": null
795
+ }
796
+ ],
797
+ "DD_GIT_COMMIT_AUTHOR_EMAIL": [
798
+ {
799
+ "implementation": "A",
800
+ "type": "string",
801
+ "default": null
802
+ }
803
+ ],
804
+ "DD_GIT_COMMIT_AUTHOR_NAME": [
805
+ {
806
+ "implementation": "A",
807
+ "type": "string",
808
+ "default": null
809
+ }
810
+ ],
811
+ "DD_GIT_COMMIT_COMMITTER_DATE": [
812
+ {
813
+ "implementation": "A",
814
+ "type": "string",
815
+ "default": null
816
+ }
817
+ ],
818
+ "DD_GIT_COMMIT_COMMITTER_EMAIL": [
819
+ {
820
+ "implementation": "A",
821
+ "type": "string",
822
+ "default": null
823
+ }
824
+ ],
825
+ "DD_GIT_COMMIT_COMMITTER_NAME": [
826
+ {
827
+ "implementation": "A",
828
+ "type": "string",
829
+ "default": null
830
+ }
831
+ ],
832
+ "DD_GIT_COMMIT_HEAD_SHA": [
833
+ {
834
+ "implementation": "A",
835
+ "type": "string",
836
+ "default": null
837
+ }
838
+ ],
839
+ "DD_GIT_COMMIT_MESSAGE": [
840
+ {
841
+ "implementation": "A",
842
+ "type": "string",
843
+ "default": null
844
+ }
845
+ ],
846
+ "DD_GIT_COMMIT_SHA": [
847
+ {
848
+ "implementation": "A",
849
+ "type": "string",
850
+ "default": null
851
+ }
852
+ ],
853
+ "DD_GIT_FOLDER_PATH": [
854
+ {
855
+ "implementation": "A",
856
+ "type": "string",
857
+ "default": null
858
+ }
859
+ ],
860
+ "DD_GIT_PROPERTIES_FILE": [
861
+ {
862
+ "implementation": "A",
863
+ "type": "string",
864
+ "default": null
865
+ }
866
+ ],
867
+ "DD_GIT_PULL_REQUEST_BASE_BRANCH": [
868
+ {
869
+ "implementation": "A",
870
+ "type": "string",
871
+ "default": null
872
+ }
873
+ ],
874
+ "DD_GIT_PULL_REQUEST_BASE_BRANCH_SHA": [
875
+ {
876
+ "implementation": "A",
877
+ "type": "string",
878
+ "default": null
879
+ }
880
+ ],
881
+ "DD_GIT_REPOSITORY_URL": [
882
+ {
883
+ "implementation": "A",
884
+ "type": "string",
885
+ "default": null
886
+ }
887
+ ],
888
+ "DD_GIT_TAG": [
889
+ {
890
+ "implementation": "A",
891
+ "type": "string",
892
+ "default": null
893
+ }
894
+ ],
895
+ "DD_GRPC_CLIENT_ERROR_STATUSES": [
896
+ {
897
+ "implementation": "A",
898
+ "type": "array",
899
+ "default": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16",
900
+ "configurationNames": [
901
+ "grpc.client.error.statuses"
902
+ ],
903
+ "handler": "GRPC_HANDLER"
904
+ }
905
+ ],
906
+ "DD_GRPC_SERVER_ERROR_STATUSES": [
907
+ {
908
+ "implementation": "A",
909
+ "type": "array",
910
+ "default": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16",
911
+ "configurationNames": [
912
+ "grpc.server.error.statuses"
913
+ ]
914
+ }
915
+ ],
916
+ "DD_HEAP_SNAPSHOT_COUNT": [
917
+ {
918
+ "implementation": "A",
919
+ "type": "int",
920
+ "default": "0",
921
+ "configurationNames": [
922
+ "heapSnapshot.count"
923
+ ]
924
+ }
925
+ ],
926
+ "DD_HEAP_SNAPSHOT_DESTINATION": [
927
+ {
928
+ "implementation": "A",
929
+ "type": "string",
930
+ "default": "",
931
+ "configurationNames": [
932
+ "heapSnapshot.destination"
933
+ ]
934
+ }
935
+ ],
936
+ "DD_HEAP_SNAPSHOT_INTERVAL": [
937
+ {
938
+ "implementation": "A",
939
+ "type": "int",
940
+ "default": "3600",
941
+ "configurationNames": [
942
+ "heapSnapshot.interval"
943
+ ]
944
+ }
945
+ ],
946
+ "DD_IAST_DB_ROWS_TO_TAINT": [
947
+ {
948
+ "implementation": "A",
949
+ "type": "int",
950
+ "configurationNames": [
951
+ "iast.dbRowsToTaint"
952
+ ],
953
+ "default": "1"
954
+ }
955
+ ],
956
+ "DD_IAST_DEDUPLICATION_ENABLED": [
957
+ {
958
+ "implementation": "A",
959
+ "type": "boolean",
960
+ "configurationNames": [
961
+ "iast.deduplicationEnabled"
962
+ ],
963
+ "default": "true"
964
+ }
965
+ ],
966
+ "DD_IAST_ENABLED": [
967
+ {
968
+ "implementation": "B",
969
+ "type": "boolean",
970
+ "configurationNames": [
971
+ "iast.enabled"
972
+ ],
973
+ "default": "false"
974
+ }
975
+ ],
976
+ "DD_IAST_MAX_CONCURRENT_REQUESTS": [
977
+ {
978
+ "implementation": "A",
979
+ "type": "int",
980
+ "configurationNames": [
981
+ "iast.maxConcurrentRequests"
982
+ ],
983
+ "default": "2"
984
+ }
985
+ ],
986
+ "DD_IAST_MAX_CONTEXT_OPERATIONS": [
987
+ {
988
+ "implementation": "A",
989
+ "type": "int",
990
+ "configurationNames": [
991
+ "iast.maxContextOperations"
992
+ ],
993
+ "default": "2"
994
+ }
995
+ ],
996
+ "DD_IAST_REDACTION_ENABLED": [
997
+ {
998
+ "implementation": "A",
999
+ "type": "boolean",
1000
+ "configurationNames": [
1001
+ "iast.redactionEnabled"
1002
+ ],
1003
+ "default": "true"
1004
+ }
1005
+ ],
1006
+ "DD_IAST_REDACTION_NAME_PATTERN": [
1007
+ {
1008
+ "implementation": "A",
1009
+ "type": "string",
1010
+ "configurationNames": [
1011
+ "iast.redactionNamePattern"
1012
+ ],
1013
+ "default": "(?:p(?:ass)?w(?:or)?d|pass(?:_?phrase)?|secret|(?:api_?|private_?|public_?|access_?|secret_?)key(?:_?id)?|token|consumer_?(?:id|key|secret)|sign(?:ed|ature)?|auth(?:entication|orization)?|(?:sur|last)name|user(?:name)?|address|e?mail)"
1014
+ }
1015
+ ],
1016
+ "DD_IAST_REDACTION_VALUE_PATTERN": [
1017
+ {
1018
+ "implementation": "A",
1019
+ "type": "string",
1020
+ "configurationNames": [
1021
+ "iast.redactionValuePattern"
1022
+ ],
1023
+ "default": "(?:bearer\\s+[a-z0-9\\._\\-]+|glpat-[\\w\\-]{20}|gh[opsu]_[0-9a-zA-Z]{36}|ey[I-L][\\w=\\-]+\\.ey[I-L][\\w=\\-]+(?:\\.[\\w.+/=\\-]+)?|(?:[\\-]{5}BEGIN[a-z\\s]+PRIVATE\\sKEY[\\-]{5}[^\\-]+[\\-]{5}END[a-z\\s]+PRIVATE\\sKEY[\\-]{5}|ssh-rsa\\s*[a-z0-9/\\.+]{100,})|[\\w\\.-]+@[a-zA-Z\\d\\.-]+\\.[a-zA-Z]{2,})"
1024
+ }
1025
+ ],
1026
+ "DD_IAST_REQUEST_SAMPLING": [
1027
+ {
1028
+ "implementation": "A",
1029
+ "type": "int",
1030
+ "configurationNames": [
1031
+ "iast.requestSampling"
1032
+ ],
1033
+ "default": "30"
1034
+ }
1035
+ ],
1036
+ "DD_IAST_SECURITY_CONTROLS_CONFIGURATION": [
1037
+ {
1038
+ "implementation": "B",
1039
+ "type": "string",
1040
+ "configurationNames": [
1041
+ "iast.securityControlsConfiguration"
1042
+ ],
1043
+ "default": null
1044
+ }
1045
+ ],
1046
+ "DD_IAST_STACK_TRACE_ENABLED": [
1047
+ {
1048
+ "implementation": "B",
1049
+ "type": "boolean",
1050
+ "configurationNames": [
1051
+ "iast.stackTrace.enabled"
1052
+ ],
1053
+ "default": "true"
1054
+ }
1055
+ ],
1056
+ "DD_IAST_TELEMETRY_VERBOSITY": [
1057
+ {
1058
+ "implementation": "B",
1059
+ "type": "string",
1060
+ "configurationNames": [
1061
+ "iast.telemetryVerbosity"
1062
+ ],
1063
+ "default": "INFORMATION"
1064
+ }
1065
+ ],
1066
+ "DD_INJECTION_ENABLED": [
1067
+ {
1068
+ "implementation": "A",
1069
+ "type": "array",
1070
+ "default": "",
1071
+ "configurationNames": [
1072
+ "injectionEnabled"
1073
+ ]
1074
+ }
1075
+ ],
1076
+ "DD_INJECT_FORCE": [
1077
+ {
1078
+ "implementation": "A",
1079
+ "type": "boolean",
1080
+ "default": "false",
1081
+ "configurationNames": [
1082
+ "injectForce"
1083
+ ]
1084
+ }
1085
+ ],
1086
+ "DD_INSTRUMENTATION_CONFIG_ID": [
1087
+ {
1088
+ "implementation": "A",
1089
+ "type": "string",
1090
+ "default": null,
1091
+ "configurationNames": [
1092
+ "instrumentation_config_id"
1093
+ ]
1094
+ }
1095
+ ],
1096
+ "DD_INSTRUMENTATION_INSTALL_ID": [
1097
+ {
1098
+ "implementation": "A",
1099
+ "type": "string",
1100
+ "default": null,
1101
+ "configurationNames": [
1102
+ "installSignature.id"
1103
+ ]
1104
+ }
1105
+ ],
1106
+ "DD_INSTRUMENTATION_INSTALL_TIME": [
1107
+ {
1108
+ "implementation": "A",
1109
+ "type": "string",
1110
+ "default": null,
1111
+ "configurationNames": [
1112
+ "installSignature.time"
1113
+ ]
1114
+ }
1115
+ ],
1116
+ "DD_INSTRUMENTATION_INSTALL_TYPE": [
1117
+ {
1118
+ "implementation": "A",
1119
+ "type": "string",
1120
+ "default": null,
1121
+ "configurationNames": [
1122
+ "installSignature.type"
1123
+ ]
1124
+ }
1125
+ ],
1126
+ "DD_INSTRUMENTATION_TELEMETRY_ENABLED": [
1127
+ {
1128
+ "implementation": "B",
1129
+ "type": "boolean",
1130
+ "default": "true",
1131
+ "aliases": [
1132
+ "DD_TRACE_TELEMETRY_ENABLED"
1133
+ ],
1134
+ "configurationNames": [
1135
+ "telemetry.enabled"
1136
+ ]
1137
+ }
1138
+ ],
1139
+ "DD_INTERNAL_PROFILING_LONG_LIVED_THRESHOLD": [
1140
+ {
1141
+ "implementation": "A",
1142
+ "type": "int",
1143
+ "default": "30000",
1144
+ "configurationNames": [
1145
+ "profiling.longLivedThreshold"
1146
+ ]
1147
+ }
1148
+ ],
1149
+ "DD_INTERNAL_PROFILING_TIMELINE_SAMPLING_ENABLED": [
1150
+ {
1151
+ "implementation": "A",
1152
+ "type": "boolean",
1153
+ "default": "true"
1154
+ }
1155
+ ],
1156
+ "DD_LAMBDA_HANDLER": [
1157
+ {
1158
+ "implementation": "A",
1159
+ "type": "string",
1160
+ "default": null
1161
+ }
1162
+ ],
1163
+ "DD_LANGCHAIN_SPAN_CHAR_LIMIT": [
1164
+ {
1165
+ "implementation": "A",
1166
+ "type": "int",
1167
+ "default": "128",
1168
+ "configurationNames": [
1169
+ "langchain.spanCharLimit"
1170
+ ]
1171
+ }
1172
+ ],
1173
+ "DD_LANGCHAIN_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
1174
+ {
1175
+ "implementation": "A",
1176
+ "type": "decimal",
1177
+ "default": "1",
1178
+ "configurationNames": [
1179
+ "langchain.spanPromptCompletionSampleRate"
1180
+ ]
1181
+ }
1182
+ ],
1183
+ "DD_LLMOBS_AGENTLESS_ENABLED": [
1184
+ {
1185
+ "implementation": "A",
1186
+ "type": "boolean",
1187
+ "configurationNames": [
1188
+ "llmobs.agentlessEnabled"
1189
+ ],
1190
+ "default": null
1191
+ }
1192
+ ],
1193
+ "DD_LLMOBS_ENABLED": [
1194
+ {
1195
+ "implementation": "A",
1196
+ "type": "boolean",
1197
+ "default": "false",
1198
+ "configurationNames": [
1199
+ "llmobs.enabled"
1200
+ ]
1201
+ }
1202
+ ],
1203
+ "DD_LLMOBS_ML_APP": [
1204
+ {
1205
+ "implementation": "B",
1206
+ "type": "string",
1207
+ "configurationNames": [
1208
+ "llmobs.mlApp"
1209
+ ],
1210
+ "default": null
1211
+ }
1212
+ ],
1213
+ "DD_LOGS_INJECTION": [
1214
+ {
1215
+ "implementation": "B",
1216
+ "type": "boolean",
1217
+ "configurationNames": [
1218
+ "logInjection"
1219
+ ],
1220
+ "default": "true"
1221
+ }
1222
+ ],
1223
+ "DD_LOGS_OTEL_ENABLED": [
1224
+ {
1225
+ "implementation": "A",
1226
+ "type": "boolean",
1227
+ "default": "false",
1228
+ "configurationNames": [
1229
+ "otelLogsEnabled"
1230
+ ]
1231
+ }
1232
+ ],
1233
+ "DD_LOG_LEVEL": [
1234
+ {
1235
+ "implementation": "B",
1236
+ "type": "string",
1237
+ "default": null
1238
+ }
1239
+ ],
1240
+ "DD_METRICS_OTEL_ENABLED": [
1241
+ {
1242
+ "implementation": "A",
1243
+ "type": "boolean",
1244
+ "default": "false",
1245
+ "configurationNames": [
1246
+ "otelMetricsEnabled"
1247
+ ]
1248
+ }
1249
+ ],
1250
+ "DD_MINI_AGENT_PATH": [
1251
+ {
1252
+ "implementation": "A",
1253
+ "type": "string",
1254
+ "default": null
1255
+ }
1256
+ ],
1257
+ "DD_OPENAI_LOGS_ENABLED": [
1258
+ {
1259
+ "implementation": "A",
1260
+ "type": "boolean",
1261
+ "default": "false",
1262
+ "configurationNames": [
1263
+ "openAiLogsEnabled"
1264
+ ]
1265
+ }
1266
+ ],
1267
+ "DD_OPENAI_SPAN_CHAR_LIMIT": [
1268
+ {
1269
+ "implementation": "A",
1270
+ "type": "int",
1271
+ "default": "128",
1272
+ "configurationNames": [
1273
+ "openai.spanCharLimit"
1274
+ ]
1275
+ }
1276
+ ],
1277
+ "DD_PIPELINE_EXECUTION_ID": [
1278
+ {
1279
+ "implementation": "A",
1280
+ "type": "string",
1281
+ "default": null
1282
+ }
1283
+ ],
1284
+ "DD_PLAYWRIGHT_WORKER": [
1285
+ {
1286
+ "implementation": "A",
1287
+ "type": "string",
1288
+ "default": null
1289
+ }
1290
+ ],
1291
+ "DD_PROFILING_ASYNC_CONTEXT_FRAME_ENABLED": [
1292
+ {
1293
+ "implementation": "A",
1294
+ "type": "boolean",
1295
+ "default": "true"
1296
+ }
1297
+ ],
1298
+ "DD_PROFILING_CODEHOTSPOTS_ENABLED": [
1299
+ {
1300
+ "implementation": "A",
1301
+ "type": "boolean",
1302
+ "default": "true",
1303
+ "aliases": [
1304
+ "DD_PROFILING_EXPERIMENTAL_CODEHOTSPOTS_ENABLED"
1305
+ ]
1306
+ }
1307
+ ],
1308
+ "DD_PROFILING_EXPERIMENTAL_CODEHOTSPOTS_ENABLED": [
1309
+ {
1310
+ "implementation": "A",
1311
+ "type": "boolean",
1312
+ "default": "true",
1313
+ "aliases": [
1314
+ "DD_PROFILING_CODEHOTSPOTS_ENABLED"
1315
+ ],
1316
+ "deprecated": true
1317
+ }
1318
+ ],
1319
+ "DD_PROFILING_CPU_ENABLED": [
1320
+ {
1321
+ "implementation": "A",
1322
+ "type": "boolean",
1323
+ "default": "true",
1324
+ "aliases": [
1325
+ "DD_PROFILING_EXPERIMENTAL_CPU_ENABLED"
1326
+ ]
1327
+ }
1328
+ ],
1329
+ "DD_PROFILING_EXPERIMENTAL_CPU_ENABLED": [
1330
+ {
1331
+ "implementation": "A",
1332
+ "type": "boolean",
1333
+ "default": "true",
1334
+ "aliases": [
1335
+ "DD_PROFILING_CPU_ENABLED"
1336
+ ],
1337
+ "deprecated": true
1338
+ }
1339
+ ],
1340
+ "DD_PROFILING_DEBUG_SOURCE_MAPS": [
1341
+ {
1342
+ "implementation": "A",
1343
+ "type": "boolean",
1344
+ "default": "false"
1345
+ }
1346
+ ],
1347
+ "DD_PROFILING_DEBUG_UPLOAD_COMPRESSION": [
1348
+ {
1349
+ "implementation": "A",
1350
+ "type": "string",
1351
+ "default": "zstd"
1352
+ }
1353
+ ],
1354
+ "DD_PROFILING_ENABLED": [
1355
+ {
1356
+ "implementation": "A",
1357
+ "type": "boolean",
1358
+ "configurationNames": [
1359
+ "profiling.enabled"
1360
+ ],
1361
+ "default": "false",
1362
+ "aliases": [
1363
+ "DD_EXPERIMENTAL_PROFILING_ENABLED"
1364
+ ]
1365
+ }
1366
+ ],
1367
+ "DD_EXPERIMENTAL_PROFILING_ENABLED": [
1368
+ {
1369
+ "implementation": "A",
1370
+ "type": "boolean",
1371
+ "configurationNames": [
1372
+ "profiling.enabled"
1373
+ ],
1374
+ "default": "false",
1375
+ "aliases": [
1376
+ "DD_PROFILING_ENABLED"
1377
+ ],
1378
+ "deprecated": true
1379
+ }
1380
+ ],
1381
+ "DD_PROFILING_ENDPOINT_COLLECTION_ENABLED": [
1382
+ {
1383
+ "implementation": "A",
1384
+ "type": "boolean",
1385
+ "default": "true",
1386
+ "aliases": [
1387
+ "DD_PROFILING_EXPERIMENTAL_ENDPOINT_COLLECTION_ENABLED"
1388
+ ]
1389
+ }
1390
+ ],
1391
+ "DD_PROFILING_EXPERIMENTAL_ENDPOINT_COLLECTION_ENABLED": [
1392
+ {
1393
+ "implementation": "A",
1394
+ "type": "boolean",
1395
+ "default": "true",
1396
+ "aliases": [
1397
+ "DD_PROFILING_ENDPOINT_COLLECTION_ENABLED"
1398
+ ],
1399
+ "deprecated": true
1400
+ }
1401
+ ],
1402
+ "DD_PROFILING_EXPERIMENTAL_OOM_EXPORT_STRATEGIES": [
1403
+ {
1404
+ "implementation": "A",
1405
+ "type": "string",
1406
+ "default": "process"
1407
+ }
1408
+ ],
1409
+ "DD_PROFILING_EXPERIMENTAL_OOM_HEAP_LIMIT_EXTENSION_SIZE": [
1410
+ {
1411
+ "implementation": "A",
1412
+ "type": "int",
1413
+ "default": "0"
1414
+ }
1415
+ ],
1416
+ "DD_PROFILING_EXPERIMENTAL_OOM_MAX_HEAP_EXTENSION_COUNT": [
1417
+ {
1418
+ "implementation": "A",
1419
+ "type": "int",
1420
+ "default": "0"
1421
+ }
1422
+ ],
1423
+ "DD_PROFILING_EXPERIMENTAL_OOM_MONITORING_ENABLED": [
1424
+ {
1425
+ "implementation": "A",
1426
+ "type": "boolean",
1427
+ "default": "true"
1428
+ }
1429
+ ],
1430
+ "DD_PROFILING_EXPORTERS": [
1431
+ {
1432
+ "implementation": "A",
1433
+ "type": "string",
1434
+ "default": "agent",
1435
+ "configurationNames": [
1436
+ "profiling.exporters"
1437
+ ]
1438
+ }
1439
+ ],
1440
+ "DD_PROFILING_HEAP_ENABLED": [
1441
+ {
1442
+ "implementation": "A",
1443
+ "type": "boolean",
1444
+ "default": "false"
1445
+ }
1446
+ ],
1447
+ "DD_PROFILING_HEAP_SAMPLING_INTERVAL": [
1448
+ {
1449
+ "implementation": "A",
1450
+ "type": "int",
1451
+ "default": "524288"
1452
+ }
1453
+ ],
1454
+ "DD_PROFILING_PPROF_PREFIX": [
1455
+ {
1456
+ "implementation": "A",
1457
+ "type": "string",
1458
+ "default": ""
1459
+ }
1460
+ ],
1461
+ "DD_PROFILING_PROFILERS": [
1462
+ {
1463
+ "implementation": "A",
1464
+ "type": "string",
1465
+ "default": "space,wall"
1466
+ }
1467
+ ],
1468
+ "DD_PROFILING_SOURCE_MAP": [
1469
+ {
1470
+ "implementation": "A",
1471
+ "type": "boolean",
1472
+ "default": "true",
1473
+ "configurationNames": [
1474
+ "profiling.sourceMap"
1475
+ ]
1476
+ }
1477
+ ],
1478
+ "DD_PROFILING_TIMELINE_ENABLED": [
1479
+ {
1480
+ "implementation": "A",
1481
+ "type": "boolean",
1482
+ "default": "true",
1483
+ "aliases": [
1484
+ "DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED"
1485
+ ]
1486
+ }
1487
+ ],
1488
+ "DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED": [
1489
+ {
1490
+ "implementation": "A",
1491
+ "type": "boolean",
1492
+ "default": "true",
1493
+ "aliases": [
1494
+ "DD_PROFILING_TIMELINE_ENABLED"
1495
+ ],
1496
+ "deprecated": true
1497
+ }
1498
+ ],
1499
+ "DD_PROFILING_UPLOAD_PERIOD": [
1500
+ {
1501
+ "implementation": "B",
1502
+ "type": "int",
1503
+ "default": "65"
1504
+ }
1505
+ ],
1506
+ "DD_PROFILING_UPLOAD_TIMEOUT": [
1507
+ {
1508
+ "implementation": "D",
1509
+ "type": "int",
1510
+ "default": "60000"
1511
+ }
1512
+ ],
1513
+ "DD_PROFILING_V8_PROFILER_BUG_WORKAROUND": [
1514
+ {
1515
+ "implementation": "A",
1516
+ "type": "boolean",
1517
+ "default": "true"
1518
+ }
1519
+ ],
1520
+ "DD_PROFILING_WALLTIME_ENABLED": [
1521
+ {
1522
+ "implementation": "B",
1523
+ "type": "boolean",
1524
+ "default": "true"
1525
+ }
1526
+ ],
1527
+ "DD_REMOTE_CONFIGURATION_ENABLED": [
1528
+ {
1529
+ "implementation": "A",
1530
+ "type": "boolean",
1531
+ "default": "true",
1532
+ "aliases": [
1533
+ "DD_REMOTE_CONFIG_ENABLED"
1534
+ ],
1535
+ "configurationNames": [
1536
+ "remoteConfig.enabled"
1537
+ ]
1538
+ }
1539
+ ],
1540
+ "DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": [
1541
+ {
1542
+ "implementation": "A",
1543
+ "type": "decimal",
1544
+ "configurationNames": [
1545
+ "remoteConfig.pollInterval"
1546
+ ],
1547
+ "default": "5.0"
1548
+ }
1549
+ ],
1550
+ "DD_RUNTIME_METRICS_ENABLED": [
1551
+ {
1552
+ "implementation": "A",
1553
+ "type": "boolean",
1554
+ "configurationNames": [
1555
+ "runtimeMetrics.enabled"
1556
+ ],
1557
+ "default": "false"
1558
+ }
1559
+ ],
1560
+ "DD_RUNTIME_METRICS_EVENT_LOOP_ENABLED": [
1561
+ {
1562
+ "implementation": "A",
1563
+ "type": "boolean",
1564
+ "configurationNames": [
1565
+ "runtimeMetrics.eventLoop"
1566
+ ],
1567
+ "default": "true"
1568
+ }
1569
+ ],
1570
+ "DD_RUNTIME_METRICS_FLUSH_INTERVAL": [
1571
+ {
1572
+ "implementation": "A",
1573
+ "type": "int",
1574
+ "default": "10000"
1575
+ }
1576
+ ],
1577
+ "DD_RUNTIME_METRICS_GC_ENABLED": [
1578
+ {
1579
+ "implementation": "A",
1580
+ "type": "boolean",
1581
+ "configurationNames": [
1582
+ "runtimeMetrics.gc"
1583
+ ],
1584
+ "default": "true"
1585
+ }
1586
+ ],
1587
+ "DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED": [
1588
+ {
1589
+ "implementation": "A",
1590
+ "type": "boolean",
1591
+ "configurationNames": [
1592
+ "runtimeMetricsRuntimeId"
1593
+ ],
1594
+ "default": "false",
1595
+ "aliases": [
1596
+ "DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED"
1597
+ ]
1598
+ }
1599
+ ],
1600
+ "DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED": [
1601
+ {
1602
+ "implementation": "B",
1603
+ "type": "boolean",
1604
+ "default": "false",
1605
+ "aliases": [
1606
+ "DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED"
1607
+ ],
1608
+ "deprecated": true
1609
+ }
1610
+ ],
1611
+ "DD_SERVICE": [
1612
+ {
1613
+ "implementation": "D",
1614
+ "type": "string",
1615
+ "configurationNames": [
1616
+ "service"
1617
+ ],
1618
+ "default": null,
1619
+ "aliases": [
1620
+ "DD_SERVICE_NAME"
1621
+ ]
1622
+ }
1623
+ ],
1624
+ "DD_SERVICE_MAPPING": [
1625
+ {
1626
+ "implementation": "C",
1627
+ "type": "map",
1628
+ "configurationNames": [
1629
+ "serviceMapping"
1630
+ ],
1631
+ "default": ""
1632
+ }
1633
+ ],
1634
+ "DD_SITE": [
1635
+ {
1636
+ "implementation": "C",
1637
+ "type": "string",
1638
+ "default": "datadoghq.com",
1639
+ "configurationNames": [
1640
+ "site"
1641
+ ]
1642
+ }
1643
+ ],
1644
+ "DD_SPAN_SAMPLING_RULES": [
1645
+ {
1646
+ "implementation": "C",
1647
+ "type": "array",
1648
+ "configurationNames": [
1649
+ "spanSamplingRules",
1650
+ "sampler.spanSamplingRules"
1651
+ ],
1652
+ "default": null
1653
+ }
1654
+ ],
1655
+ "DD_SPAN_SAMPLING_RULES_FILE": [
1656
+ {
1657
+ "implementation": "B",
1658
+ "type": "string",
1659
+ "default": ""
1660
+ }
1661
+ ],
1662
+ "DD_TAGS": [
1663
+ {
1664
+ "implementation": "A",
1665
+ "type": "map",
1666
+ "default": "",
1667
+ "configurationNames": [
1668
+ "tags"
1669
+ ]
1670
+ }
1671
+ ],
1672
+ "DD_TELEMETRY_DEBUG": [
1673
+ {
1674
+ "implementation": "A",
1675
+ "type": "boolean",
1676
+ "default": "false",
1677
+ "configurationNames": [
1678
+ "telemetry.debug"
1679
+ ]
1680
+ }
1681
+ ],
1682
+ "DD_TELEMETRY_DEPENDENCY_COLLECTION_ENABLED": [
1683
+ {
1684
+ "implementation": "A",
1685
+ "type": "boolean",
1686
+ "default": "true",
1687
+ "configurationNames": [
1688
+ "telemetry.dependencyCollection"
1689
+ ]
1690
+ }
1691
+ ],
1692
+ "DD_TELEMETRY_FORWARDER_PATH": [
1693
+ {
1694
+ "implementation": "A",
1695
+ "type": "string",
1696
+ "default": null
1697
+ }
1698
+ ],
1699
+ "DD_TELEMETRY_HEARTBEAT_INTERVAL": [
1700
+ {
1701
+ "implementation": "B",
1702
+ "type": "decimal",
1703
+ "default": "60.0",
1704
+ "configurationNames": [
1705
+ "telemetry.heartbeatInterval"
1706
+ ]
1707
+ }
1708
+ ],
1709
+ "DD_TELEMETRY_LOG_COLLECTION_ENABLED": [
1710
+ {
1711
+ "implementation": "A",
1712
+ "type": "boolean",
1713
+ "default": "true",
1714
+ "configurationNames": [
1715
+ "telemetry.logCollection"
1716
+ ]
1717
+ }
1718
+ ],
1719
+ "DD_TELEMETRY_METRICS_ENABLED": [
1720
+ {
1721
+ "implementation": "A",
1722
+ "type": "boolean",
1723
+ "default": "true",
1724
+ "configurationNames": [
1725
+ "telemetry.metrics"
1726
+ ]
1727
+ }
1728
+ ],
1729
+ "DD_TEST_FAILED_TEST_REPLAY_ENABLED": [
1730
+ {
1731
+ "implementation": "A",
1732
+ "type": "boolean",
1733
+ "default": "true",
1734
+ "configurationNames": [
1735
+ "isTestDynamicInstrumentationEnabled"
1736
+ ]
1737
+ }
1738
+ ],
1739
+ "DD_TEST_FLEET_CONFIG_PATH": [
1740
+ {
1741
+ "implementation": "A",
1742
+ "type": "string",
1743
+ "default": null
1744
+ }
1745
+ ],
1746
+ "DD_TEST_LOCAL_CONFIG_PATH": [
1747
+ {
1748
+ "implementation": "A",
1749
+ "type": "string",
1750
+ "default": null
1751
+ }
1752
+ ],
1753
+ "DD_TEST_MANAGEMENT_ATTEMPT_TO_FIX_RETRIES": [
1754
+ {
1755
+ "implementation": "C",
1756
+ "type": "int",
1757
+ "default": "20",
1758
+ "configurationNames": [
1759
+ "testManagementAttemptToFixRetries"
1760
+ ]
1761
+ }
1762
+ ],
1763
+ "DD_TEST_MANAGEMENT_ENABLED": [
1764
+ {
1765
+ "implementation": "A",
1766
+ "type": "boolean",
1767
+ "default": "true",
1768
+ "configurationNames": [
1769
+ "isTestManagementEnabled"
1770
+ ]
1771
+ }
1772
+ ],
1773
+ "DD_TEST_TIA_KEEP_COV_CONFIG": [
1774
+ {
1775
+ "implementation": "A",
1776
+ "type": "boolean",
1777
+ "default": "false",
1778
+ "configurationNames": [
1779
+ "isKeepingCoverageConfiguration"
1780
+ ]
1781
+ }
1782
+ ],
1783
+ "DD_TEST_SESSION_NAME": [
1784
+ {
1785
+ "implementation": "A",
1786
+ "type": "string",
1787
+ "default": null,
1788
+ "configurationNames": [
1789
+ "ciVisibilityTestSessionName"
1790
+ ]
1791
+ }
1792
+ ],
1793
+ "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": [
1794
+ {
1795
+ "implementation": "A",
1796
+ "type": "boolean",
1797
+ "default": "true",
1798
+ "configurationNames": [
1799
+ "traceId128BitGenerationEnabled"
1800
+ ]
1801
+ }
1802
+ ],
1803
+ "DD_TRACE_128_BIT_TRACEID_LOGGING_ENABLED": [
1804
+ {
1805
+ "implementation": "A",
1806
+ "type": "boolean",
1807
+ "default": "true",
1808
+ "configurationNames": [
1809
+ "traceId128BitLoggingEnabled"
1810
+ ]
1811
+ }
1812
+ ],
1813
+ "DD_TRACE_AEROSPIKE_ENABLED": [
1814
+ {
1815
+ "implementation": "B",
1816
+ "type": "boolean",
1817
+ "default": "true"
1818
+ }
1819
+ ],
1820
+ "DD_TRACE_AGENT_PORT": [
1821
+ {
1822
+ "implementation": "A",
1823
+ "type": "int",
1824
+ "configurationNames": [
1825
+ "port"
1826
+ ],
1827
+ "default": "8126"
1828
+ }
1829
+ ],
1830
+ "DD_TRACE_AGENT_PROTOCOL_VERSION": [
1831
+ {
1832
+ "implementation": "A",
1833
+ "type": "string",
1834
+ "configurationNames": [
1835
+ "protocolVersion"
1836
+ ],
1837
+ "default": "0.4"
1838
+ }
1839
+ ],
1840
+ "DD_TRACE_AGENT_URL": [
1841
+ {
1842
+ "implementation": "A",
1843
+ "type": "string",
1844
+ "configurationNames": [
1845
+ "url"
1846
+ ],
1847
+ "default": "",
1848
+ "aliases": [
1849
+ "DD_TRACE_URL"
1850
+ ]
1851
+ }
1852
+ ],
1853
+ "DD_TRACE_AI_ENABLED": [
1854
+ {
1855
+ "implementation": "A",
1856
+ "type": "boolean",
1857
+ "default": "true"
1858
+ }
1859
+ ],
1860
+ "DD_TRACE_AMQP10_ENABLED": [
1861
+ {
1862
+ "implementation": "A",
1863
+ "type": "boolean",
1864
+ "default": "true"
1865
+ }
1866
+ ],
1867
+ "DD_TRACE_AMQPLIB_ENABLED": [
1868
+ {
1869
+ "implementation": "A",
1870
+ "type": "boolean",
1871
+ "default": "true"
1872
+ }
1873
+ ],
1874
+ "DD_TRACE_ANTHROPIC_ENABLED": [
1875
+ {
1876
+ "implementation": "A",
1877
+ "type": "boolean",
1878
+ "default": "true"
1879
+ }
1880
+ ],
1881
+ "DD_TRACE_APOLLO_ENABLED": [
1882
+ {
1883
+ "implementation": "A",
1884
+ "type": "boolean",
1885
+ "default": "true"
1886
+ }
1887
+ ],
1888
+ "DD_TRACE_APOLLO_GATEWAY_ENABLED": [
1889
+ {
1890
+ "implementation": "A",
1891
+ "type": "boolean",
1892
+ "default": "true"
1893
+ }
1894
+ ],
1895
+ "DD_TRACE_APOLLO_SERVER_CORE_ENABLED": [
1896
+ {
1897
+ "implementation": "A",
1898
+ "type": "boolean",
1899
+ "default": "true"
1900
+ }
1901
+ ],
1902
+ "DD_TRACE_APOLLO_SERVER_ENABLED": [
1903
+ {
1904
+ "implementation": "A",
1905
+ "type": "boolean",
1906
+ "default": "true"
1907
+ }
1908
+ ],
1909
+ "DD_TRACE_APOLLO_SERVER_EXPRESS_ENABLED": [
1910
+ {
1911
+ "implementation": "A",
1912
+ "type": "boolean",
1913
+ "default": "true"
1914
+ }
1915
+ ],
1916
+ "DD_TRACE_APOLLO_SERVER_FASTIFY_ENABLED": [
1917
+ {
1918
+ "implementation": "A",
1919
+ "type": "boolean",
1920
+ "default": "true"
1921
+ }
1922
+ ],
1923
+ "DD_TRACE_APOLLO_SUBGRAPH_ENABLED": [
1924
+ {
1925
+ "implementation": "A",
1926
+ "type": "boolean",
1927
+ "default": "true"
1928
+ }
1929
+ ],
1930
+ "DD_TRACE_AVSC_ENABLED": [
1931
+ {
1932
+ "implementation": "A",
1933
+ "type": "boolean",
1934
+ "default": "true"
1935
+ }
1936
+ ],
1937
+ "DD_TRACE_AWS_ADD_SPAN_POINTERS": [
1938
+ {
1939
+ "implementation": "A",
1940
+ "type": "boolean",
1941
+ "default": "true",
1942
+ "configurationNames": [
1943
+ "trace.aws.addSpanPointers"
1944
+ ]
1945
+ }
1946
+ ],
1947
+ "DD_TRACE_AWS_SDK_AWS_BATCH_PROPAGATION_ENABLED": [
1948
+ {
1949
+ "implementation": "A",
1950
+ "type": "boolean",
1951
+ "default": "true"
1952
+ }
1953
+ ],
1954
+ "DD_TRACE_AWS_SDK_AWS_ENABLED": [
1955
+ {
1956
+ "implementation": "A",
1957
+ "type": "boolean",
1958
+ "default": "true"
1959
+ }
1960
+ ],
1961
+ "DD_TRACE_AWS_SDK_BATCH_PROPAGATION_ENABLED": [
1962
+ {
1963
+ "implementation": "A",
1964
+ "type": "boolean",
1965
+ "default": "true"
1966
+ }
1967
+ ],
1968
+ "DD_TRACE_AWS_SDK_BEDROCKRUNTIME_BATCH_PROPAGATION_ENABLED": [
1969
+ {
1970
+ "implementation": "A",
1971
+ "type": "boolean",
1972
+ "default": "true"
1973
+ }
1974
+ ],
1975
+ "DD_TRACE_AWS_SDK_BEDROCKRUNTIME_ENABLED": [
1976
+ {
1977
+ "implementation": "A",
1978
+ "type": "boolean",
1979
+ "default": "true"
1980
+ }
1981
+ ],
1982
+ "DD_TRACE_AWS_SDK_CLOUDWATCHLOGS_BATCH_PROPAGATION_ENABLED": [
1983
+ {
1984
+ "implementation": "A",
1985
+ "type": "boolean",
1986
+ "default": "true"
1987
+ }
1988
+ ],
1989
+ "DD_TRACE_AWS_SDK_CLOUDWATCHLOGS_ENABLED": [
1990
+ {
1991
+ "implementation": "A",
1992
+ "type": "boolean",
1993
+ "default": "true"
1994
+ }
1995
+ ],
1996
+ "DD_TRACE_AWS_SDK_DYNAMODB_BATCH_PROPAGATION_ENABLED": [
1997
+ {
1998
+ "implementation": "A",
1999
+ "type": "boolean",
2000
+ "default": "true"
2001
+ }
2002
+ ],
2003
+ "DD_TRACE_AWS_SDK_DYNAMODB_ENABLED": [
2004
+ {
2005
+ "implementation": "A",
2006
+ "type": "boolean",
2007
+ "default": "true"
2008
+ }
2009
+ ],
2010
+ "DD_TRACE_AWS_SDK_ENABLED": [
2011
+ {
2012
+ "implementation": "B",
2013
+ "type": "boolean",
2014
+ "default": "true"
2015
+ }
2016
+ ],
2017
+ "DD_TRACE_AWS_SDK_EVENTBRIDGE_BATCH_PROPAGATION_ENABLED": [
2018
+ {
2019
+ "implementation": "A",
2020
+ "type": "boolean",
2021
+ "default": "true"
2022
+ }
2023
+ ],
2024
+ "DD_TRACE_AWS_SDK_EVENTBRIDGE_ENABLED": [
2025
+ {
2026
+ "implementation": "A",
2027
+ "type": "boolean",
2028
+ "default": "true"
2029
+ }
2030
+ ],
2031
+ "DD_TRACE_AWS_SDK_KINESIS_BATCH_PROPAGATION_ENABLED": [
2032
+ {
2033
+ "implementation": "A",
2034
+ "type": "boolean",
2035
+ "default": "true"
2036
+ }
2037
+ ],
2038
+ "DD_TRACE_AWS_SDK_KINESIS_ENABLED": [
2039
+ {
2040
+ "implementation": "A",
2041
+ "type": "boolean",
2042
+ "default": "true"
2043
+ }
2044
+ ],
2045
+ "DD_TRACE_AWS_SDK_LAMBDA_BATCH_PROPAGATION_ENABLED": [
2046
+ {
2047
+ "implementation": "A",
2048
+ "type": "boolean",
2049
+ "default": "true"
2050
+ }
2051
+ ],
2052
+ "DD_TRACE_AWS_SDK_LAMBDA_ENABLED": [
2053
+ {
2054
+ "implementation": "A",
2055
+ "type": "boolean",
2056
+ "default": "true"
2057
+ }
2058
+ ],
2059
+ "DD_TRACE_AWS_SDK_NODE_HTTP_HANDLER_ENABLED": [
2060
+ {
2061
+ "implementation": "A",
2062
+ "type": "boolean",
2063
+ "default": "true"
2064
+ }
2065
+ ],
2066
+ "DD_TRACE_AWS_SDK_REDSHIFT_BATCH_PROPAGATION_ENABLED": [
2067
+ {
2068
+ "implementation": "A",
2069
+ "type": "boolean",
2070
+ "default": "true"
2071
+ }
2072
+ ],
2073
+ "DD_TRACE_AWS_SDK_REDSHIFT_ENABLED": [
2074
+ {
2075
+ "implementation": "A",
2076
+ "type": "boolean",
2077
+ "default": "true"
2078
+ }
2079
+ ],
2080
+ "DD_TRACE_AWS_SDK_S3_BATCH_PROPAGATION_ENABLED": [
2081
+ {
2082
+ "implementation": "A",
2083
+ "type": "boolean",
2084
+ "default": "true"
2085
+ }
2086
+ ],
2087
+ "DD_TRACE_AWS_SDK_S3_ENABLED": [
2088
+ {
2089
+ "implementation": "A",
2090
+ "type": "boolean",
2091
+ "default": "true"
2092
+ }
2093
+ ],
2094
+ "DD_TRACE_AWS_SDK_SFN_BATCH_PROPAGATION_ENABLED": [
2095
+ {
2096
+ "implementation": "A",
2097
+ "type": "boolean",
2098
+ "default": "true"
2099
+ }
2100
+ ],
2101
+ "DD_TRACE_AWS_SDK_SFN_CLIENT_ENABLED": [
2102
+ {
2103
+ "implementation": "A",
2104
+ "type": "boolean",
2105
+ "default": "true"
2106
+ }
2107
+ ],
2108
+ "DD_TRACE_AWS_SDK_SFN_ENABLED": [
2109
+ {
2110
+ "implementation": "A",
2111
+ "type": "boolean",
2112
+ "default": "true"
2113
+ }
2114
+ ],
2115
+ "DD_TRACE_AWS_SDK_SMITHY_CLIENT_ENABLED": [
2116
+ {
2117
+ "implementation": "A",
2118
+ "type": "boolean",
2119
+ "default": "true"
2120
+ }
2121
+ ],
2122
+ "DD_TRACE_AWS_SDK_SNS_BATCH_PROPAGATION_ENABLED": [
2123
+ {
2124
+ "implementation": "A",
2125
+ "type": "boolean",
2126
+ "default": "true"
2127
+ }
2128
+ ],
2129
+ "DD_TRACE_AWS_SDK_SNS_ENABLED": [
2130
+ {
2131
+ "implementation": "A",
2132
+ "type": "boolean",
2133
+ "default": "true"
2134
+ }
2135
+ ],
2136
+ "DD_TRACE_AWS_SDK_SQS_BATCH_PROPAGATION_ENABLED": [
2137
+ {
2138
+ "implementation": "A",
2139
+ "type": "boolean",
2140
+ "default": "true"
2141
+ }
2142
+ ],
2143
+ "DD_TRACE_AWS_SDK_SQS_ENABLED": [
2144
+ {
2145
+ "implementation": "A",
2146
+ "type": "boolean",
2147
+ "default": "true"
2148
+ }
2149
+ ],
2150
+ "DD_TRACE_AWS_SDK_STATES_BATCH_PROPAGATION_ENABLED": [
2151
+ {
2152
+ "implementation": "A",
2153
+ "type": "boolean",
2154
+ "default": "true"
2155
+ }
2156
+ ],
2157
+ "DD_TRACE_AWS_SDK_STATES_ENABLED": [
2158
+ {
2159
+ "implementation": "A",
2160
+ "type": "boolean",
2161
+ "default": "true"
2162
+ }
2163
+ ],
2164
+ "DD_TRACE_AWS_SDK_STEPFUNCTIONS_BATCH_PROPAGATION_ENABLED": [
2165
+ {
2166
+ "implementation": "A",
2167
+ "type": "boolean",
2168
+ "default": "true"
2169
+ }
2170
+ ],
2171
+ "DD_TRACE_AWS_SDK_STEPFUNCTIONS_ENABLED": [
2172
+ {
2173
+ "implementation": "A",
2174
+ "type": "boolean",
2175
+ "default": "true"
2176
+ }
2177
+ ],
2178
+ "DD_TRACE_AXIOS_ENABLED": [
2179
+ {
2180
+ "implementation": "A",
2181
+ "type": "boolean",
2182
+ "default": "true"
2183
+ }
2184
+ ],
2185
+ "DD_TRACE_AZURE_EVENTHUBS_BATCH_LINKS_ENABLED": [
2186
+ {
2187
+ "implementation": "A",
2188
+ "type": "boolean",
2189
+ "default": "true"
2190
+ }
2191
+ ],
2192
+ "DD_TRACE_AZURE_EVENT_HUBS_ENABLED": [
2193
+ {
2194
+ "implementation": "A",
2195
+ "type": "boolean",
2196
+ "default": "true"
2197
+ }
2198
+ ],
2199
+ "DD_TRACE_AZURE_FUNCTIONS_ENABLED": [
2200
+ {
2201
+ "implementation": "B",
2202
+ "type": "boolean",
2203
+ "default": "true"
2204
+ }
2205
+ ],
2206
+ "DD_TRACE_AZURE_SERVICEBUS_BATCH_LINKS_ENABLED": [
2207
+ {
2208
+ "implementation": "A",
2209
+ "type": "boolean",
2210
+ "default": "true"
2211
+ }
2212
+ ],
2213
+ "DD_TRACE_AZURE_SERVICE_BUS_ENABLED": [
2214
+ {
2215
+ "implementation": "A",
2216
+ "type": "boolean",
2217
+ "default": "true"
2218
+ }
2219
+ ],
2220
+ "DD_TRACE_BAGGAGE_MAX_BYTES": [
2221
+ {
2222
+ "implementation": "A",
2223
+ "type": "int",
2224
+ "default": "8192",
2225
+ "configurationNames": [
2226
+ "baggageMaxBytes"
2227
+ ]
2228
+ }
2229
+ ],
2230
+ "DD_TRACE_BAGGAGE_MAX_ITEMS": [
2231
+ {
2232
+ "implementation": "A",
2233
+ "type": "int",
2234
+ "default": "64",
2235
+ "configurationNames": [
2236
+ "baggageMaxItems"
2237
+ ]
2238
+ }
2239
+ ],
2240
+ "DD_TRACE_BAGGAGE_TAG_KEYS": [
2241
+ {
2242
+ "implementation": "A",
2243
+ "type": "array",
2244
+ "default": "user.id, session.id, account.id",
2245
+ "configurationNames": [
2246
+ "baggageTagKeys"
2247
+ ]
2248
+ }
2249
+ ],
2250
+ "DD_TRACE_BEAUTIFUL_LOGS": [
2251
+ {
2252
+ "implementation": "A",
2253
+ "type": "boolean",
2254
+ "default": "false"
2255
+ }
2256
+ ],
2257
+ "DD_TRACE_BLUEBIRD_ENABLED": [
2258
+ {
2259
+ "implementation": "A",
2260
+ "type": "boolean",
2261
+ "default": "true"
2262
+ }
2263
+ ],
2264
+ "DD_TRACE_BODY_PARSER_ENABLED": [
2265
+ {
2266
+ "implementation": "A",
2267
+ "type": "boolean",
2268
+ "default": "true"
2269
+ }
2270
+ ],
2271
+ "DD_TRACE_BSON_ENABLED": [
2272
+ {
2273
+ "implementation": "A",
2274
+ "type": "boolean",
2275
+ "default": "true"
2276
+ }
2277
+ ],
2278
+ "DD_TRACE_BULLMQ_ENABLED": [
2279
+ {
2280
+ "implementation": "A",
2281
+ "type": "boolean",
2282
+ "default": "true"
2283
+ }
2284
+ ],
2285
+ "DD_TRACE_BUNYAN_ENABLED": [
2286
+ {
2287
+ "implementation": "A",
2288
+ "type": "boolean",
2289
+ "default": "true"
2290
+ }
2291
+ ],
2292
+ "DD_TRACE_CASSANDRA_DRIVER_ENABLED": [
2293
+ {
2294
+ "implementation": "A",
2295
+ "type": "boolean",
2296
+ "default": "true"
2297
+ }
2298
+ ],
2299
+ "DD_TRACE_CHILD_PROCESS_ENABLED": [
2300
+ {
2301
+ "implementation": "A",
2302
+ "type": "boolean",
2303
+ "default": "true"
2304
+ }
2305
+ ],
2306
+ "DD_TRACE_CLIENT_IP_ENABLED": [
2307
+ {
2308
+ "implementation": "A",
2309
+ "type": "boolean",
2310
+ "configurationNames": [
2311
+ "clientIpEnabled"
2312
+ ],
2313
+ "default": "false"
2314
+ }
2315
+ ],
2316
+ "DD_TRACE_CLIENT_IP_HEADER": [
2317
+ {
2318
+ "implementation": "B",
2319
+ "type": "string",
2320
+ "configurationNames": [
2321
+ "clientIpHeader"
2322
+ ],
2323
+ "default": null
2324
+ }
2325
+ ],
2326
+ "DD_TRACE_CLOUD_PAYLOAD_TAGGING_MAX_DEPTH": [
2327
+ {
2328
+ "implementation": "A",
2329
+ "type": "int",
2330
+ "configurationNames": [
2331
+ "cloudPayloadTagging.maxDepth"
2332
+ ],
2333
+ "default": "10"
2334
+ }
2335
+ ],
2336
+ "DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": [
2337
+ {
2338
+ "implementation": "A",
2339
+ "type": "array",
2340
+ "configurationNames": [
2341
+ "cloudPayloadTagging.request"
2342
+ ],
2343
+ "default": null
2344
+ }
2345
+ ],
2346
+ "DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": [
2347
+ {
2348
+ "implementation": "A",
2349
+ "type": "array",
2350
+ "configurationNames": [
2351
+ "cloudPayloadTagging.response"
2352
+ ],
2353
+ "default": null
2354
+ }
2355
+ ],
2356
+ "DD_TRACE_COLLECTIONS_ENABLED": [
2357
+ {
2358
+ "implementation": "A",
2359
+ "type": "boolean",
2360
+ "default": "true"
2361
+ }
2362
+ ],
2363
+ "DD_TRACE_COMMONPLUGIN_ENABLED": [
2364
+ {
2365
+ "implementation": "A",
2366
+ "type": "boolean",
2367
+ "default": "true"
2368
+ }
2369
+ ],
2370
+ "DD_TRACE_CONFLUENTINC_KAFKA_JAVASCRIPT_ENABLED": [
2371
+ {
2372
+ "implementation": "A",
2373
+ "type": "boolean",
2374
+ "default": "true"
2375
+ }
2376
+ ],
2377
+ "DD_TRACE_CONNECT_ENABLED": [
2378
+ {
2379
+ "implementation": "A",
2380
+ "type": "boolean",
2381
+ "default": "true"
2382
+ }
2383
+ ],
2384
+ "DD_TRACE_COOKIE_ENABLED": [
2385
+ {
2386
+ "implementation": "A",
2387
+ "type": "boolean",
2388
+ "default": "true"
2389
+ }
2390
+ ],
2391
+ "DD_TRACE_COOKIE_PARSER_ENABLED": [
2392
+ {
2393
+ "implementation": "A",
2394
+ "type": "boolean",
2395
+ "default": "true"
2396
+ }
2397
+ ],
2398
+ "DD_TRACE_COUCHBASE_ENABLED": [
2399
+ {
2400
+ "implementation": "B",
2401
+ "type": "boolean",
2402
+ "default": "true"
2403
+ }
2404
+ ],
2405
+ "DD_TRACE_CRYPTO_ENABLED": [
2406
+ {
2407
+ "implementation": "A",
2408
+ "type": "boolean",
2409
+ "default": "true"
2410
+ }
2411
+ ],
2412
+ "DD_TRACE_CUCUMBER_CUCUMBER_ENABLED": [
2413
+ {
2414
+ "implementation": "A",
2415
+ "type": "boolean",
2416
+ "default": "true"
2417
+ }
2418
+ ],
2419
+ "DD_TRACE_CUCUMBER_ENABLED": [
2420
+ {
2421
+ "implementation": "B",
2422
+ "type": "boolean",
2423
+ "default": "true"
2424
+ }
2425
+ ],
2426
+ "DD_TRACE_CYPRESS_ENABLED": [
2427
+ {
2428
+ "implementation": "A",
2429
+ "type": "boolean",
2430
+ "default": "true"
2431
+ }
2432
+ ],
2433
+ "DD_TRACE_DEBUG": [
2434
+ {
2435
+ "implementation": "B",
2436
+ "type": "boolean",
2437
+ "default": "false"
2438
+ }
2439
+ ],
2440
+ "DD_TRACE_DISABLED_INSTRUMENTATIONS": [
2441
+ {
2442
+ "implementation": "A",
2443
+ "type": "string",
2444
+ "default": ""
2445
+ }
2446
+ ],
2447
+ "DD_TRACE_DISABLED_PLUGINS": [
2448
+ {
2449
+ "implementation": "A",
2450
+ "type": "string",
2451
+ "default": null
2452
+ }
2453
+ ],
2454
+ "DD_TRACE_DNS_ENABLED": [
2455
+ {
2456
+ "implementation": "A",
2457
+ "type": "boolean",
2458
+ "default": "true"
2459
+ }
2460
+ ],
2461
+ "DD_TRACE_DYNAMODB_TABLE_PRIMARY_KEYS": [
2462
+ {
2463
+ "implementation": "A",
2464
+ "type": "string",
2465
+ "default": null,
2466
+ "configurationNames": [
2467
+ "trace.dynamoDb.tablePrimaryKeys"
2468
+ ]
2469
+ }
2470
+ ],
2471
+ "DD_TRACE_ELASTICSEARCH_ENABLED": [
2472
+ {
2473
+ "implementation": "A",
2474
+ "type": "boolean",
2475
+ "default": "true"
2476
+ }
2477
+ ],
2478
+ "DD_TRACE_ELASTIC_ELASTICSEARCH_ENABLED": [
2479
+ {
2480
+ "implementation": "A",
2481
+ "type": "boolean",
2482
+ "default": "true"
2483
+ }
2484
+ ],
2485
+ "DD_TRACE_ELASTIC_TRANSPORT_ENABLED": [
2486
+ {
2487
+ "implementation": "A",
2488
+ "type": "boolean",
2489
+ "default": "true"
2490
+ }
2491
+ ],
2492
+ "DD_TRACE_ENABLED": [
2493
+ {
2494
+ "implementation": "A",
2495
+ "type": "boolean",
2496
+ "default": "true",
2497
+ "configurationNames": [
2498
+ "traceEnabled"
2499
+ ]
2500
+ }
2501
+ ],
2502
+ "DD_TRACE_ENCODING_DEBUG": [
2503
+ {
2504
+ "implementation": "A",
2505
+ "type": "boolean",
2506
+ "default": "false"
2507
+ }
2508
+ ],
2509
+ "DD_TRACE_EXPERIMENTAL_B3_ENABLED": [
2510
+ {
2511
+ "implementation": "A",
2512
+ "type": "boolean",
2513
+ "configurationNames": [
2514
+ "experimental.b3"
2515
+ ],
2516
+ "default": "false"
2517
+ }
2518
+ ],
2519
+ "DD_TRACE_EXPERIMENTAL_EXPORTER": [
2520
+ {
2521
+ "implementation": "A",
2522
+ "type": "string",
2523
+ "configurationNames": [
2524
+ "experimental.exporter"
2525
+ ],
2526
+ "default": ""
2527
+ }
2528
+ ],
2529
+ "DD_TRACE_EXPERIMENTAL_GET_RUM_DATA_ENABLED": [
2530
+ {
2531
+ "implementation": "A",
2532
+ "type": "boolean",
2533
+ "configurationNames": [
2534
+ "experimental.enableGetRumData"
2535
+ ],
2536
+ "default": "false"
2537
+ }
2538
+ ],
2539
+ "DD_TRACE_EXPERIMENTAL_SPAN_COUNTS": [
2540
+ {
2541
+ "implementation": "A",
2542
+ "type": "boolean",
2543
+ "default": "false"
2544
+ }
2545
+ ],
2546
+ "DD_TRACE_EXPERIMENTAL_STATE_TRACKING": [
2547
+ {
2548
+ "implementation": "A",
2549
+ "type": "boolean",
2550
+ "default": "false"
2551
+ }
2552
+ ],
2553
+ "DD_TRACE_EXPRESS_ENABLED": [
2554
+ {
2555
+ "implementation": "A",
2556
+ "type": "boolean",
2557
+ "default": "true"
2558
+ }
2559
+ ],
2560
+ "DD_TRACE_EXPRESS_MONGO_SANITIZE_ENABLED": [
2561
+ {
2562
+ "implementation": "A",
2563
+ "type": "boolean",
2564
+ "default": "true"
2565
+ }
2566
+ ],
2567
+ "DD_TRACE_EXPRESS_SESSION_ENABLED": [
2568
+ {
2569
+ "implementation": "A",
2570
+ "type": "boolean",
2571
+ "default": "true"
2572
+ }
2573
+ ],
2574
+ "DD_TRACE_FASTIFY_ENABLED": [
2575
+ {
2576
+ "implementation": "A",
2577
+ "type": "boolean",
2578
+ "default": "true"
2579
+ }
2580
+ ],
2581
+ "DD_TRACE_FETCH_ENABLED": [
2582
+ {
2583
+ "implementation": "A",
2584
+ "type": "boolean",
2585
+ "default": "true"
2586
+ }
2587
+ ],
2588
+ "DD_TRACE_FIND_MY_WAY_ENABLED": [
2589
+ {
2590
+ "implementation": "A",
2591
+ "type": "boolean",
2592
+ "default": "true"
2593
+ }
2594
+ ],
2595
+ "DD_TRACE_FLUSH_INTERVAL": [
2596
+ {
2597
+ "implementation": "B",
2598
+ "type": "int",
2599
+ "configurationNames": [
2600
+ "flushInterval"
2601
+ ],
2602
+ "default": "2000"
2603
+ }
2604
+ ],
2605
+ "DD_TRACE_FS_ENABLED": [
2606
+ {
2607
+ "implementation": "A",
2608
+ "type": "boolean",
2609
+ "default": "true"
2610
+ }
2611
+ ],
2612
+ "DD_TRACE_GCP_PUBSUB_PUSH_ENABLED": [
2613
+ {
2614
+ "implementation": "A",
2615
+ "type": "boolean",
2616
+ "default": "true",
2617
+ "configurationNames": [
2618
+ "isGCPPubSubPushSubscriptionEnabled"
2619
+ ]
2620
+ }
2621
+ ],
2622
+ "DD_TRACE_GENERIC_POOL_ENABLED": [
2623
+ {
2624
+ "implementation": "A",
2625
+ "type": "boolean",
2626
+ "default": "true"
2627
+ }
2628
+ ],
2629
+ "DD_TRACE_GIT_METADATA_ENABLED": [
2630
+ {
2631
+ "implementation": "A",
2632
+ "type": "boolean",
2633
+ "default": "true",
2634
+ "configurationNames": [
2635
+ "gitMetadataEnabled"
2636
+ ]
2637
+ }
2638
+ ],
2639
+ "DD_TRACE_GOOGLE_CLOUD_PUBSUB_ENABLED": [
2640
+ {
2641
+ "implementation": "A",
2642
+ "type": "boolean",
2643
+ "default": "true"
2644
+ }
2645
+ ],
2646
+ "DD_TRACE_GOOGLE_CLOUD_VERTEXAI_ENABLED": [
2647
+ {
2648
+ "implementation": "A",
2649
+ "type": "boolean",
2650
+ "default": "true"
2651
+ }
2652
+ ],
2653
+ "DD_TRACE_GOOGLE_GAX_ENABLED": [
2654
+ {
2655
+ "implementation": "A",
2656
+ "type": "boolean",
2657
+ "default": "true"
2658
+ }
2659
+ ],
2660
+ "DD_TRACE_GOOGLE_GENAI_ENABLED": [
2661
+ {
2662
+ "implementation": "A",
2663
+ "type": "boolean",
2664
+ "default": "true"
2665
+ }
2666
+ ],
2667
+ "DD_TRACE_GRAPHQL_ENABLED": [
2668
+ {
2669
+ "implementation": "A",
2670
+ "type": "boolean",
2671
+ "default": "true"
2672
+ }
2673
+ ],
2674
+ "DD_TRACE_GRAPHQL_ERROR_EXTENSIONS": [
2675
+ {
2676
+ "implementation": "A",
2677
+ "type": "array",
2678
+ "default": "",
2679
+ "configurationNames": [
2680
+ "graphqlErrorExtensions"
2681
+ ]
2682
+ }
2683
+ ],
2684
+ "DD_TRACE_GRAPHQL_TAG_ENABLED": [
2685
+ {
2686
+ "implementation": "A",
2687
+ "type": "boolean",
2688
+ "default": "true"
2689
+ }
2690
+ ],
2691
+ "DD_TRACE_GRAPHQL_TOOLS_ENABLED": [
2692
+ {
2693
+ "implementation": "A",
2694
+ "type": "boolean",
2695
+ "default": "true"
2696
+ }
2697
+ ],
2698
+ "DD_TRACE_GRAPHQL_TOOLS_EXECUTOR_ENABLED": [
2699
+ {
2700
+ "implementation": "A",
2701
+ "type": "boolean",
2702
+ "default": "true"
2703
+ }
2704
+ ],
2705
+ "DD_TRACE_GRAPHQL_YOGA_ENABLED": [
2706
+ {
2707
+ "implementation": "A",
2708
+ "type": "boolean",
2709
+ "default": "true"
2710
+ }
2711
+ ],
2712
+ "DD_TRACE_GRPC_ENABLED": [
2713
+ {
2714
+ "implementation": "A",
2715
+ "type": "boolean",
2716
+ "default": "true"
2717
+ }
2718
+ ],
2719
+ "DD_TRACE_GRPC_GRPC_JS_ENABLED": [
2720
+ {
2721
+ "implementation": "A",
2722
+ "type": "boolean",
2723
+ "default": "true"
2724
+ }
2725
+ ],
2726
+ "DD_TRACE_GRPC_PROTO_LOADER_ENABLED": [
2727
+ {
2728
+ "implementation": "A",
2729
+ "type": "boolean",
2730
+ "default": "true"
2731
+ }
2732
+ ],
2733
+ "DD_TRACE_HANDLEBARS_ENABLED": [
2734
+ {
2735
+ "implementation": "A",
2736
+ "type": "boolean",
2737
+ "default": "true"
2738
+ }
2739
+ ],
2740
+ "DD_TRACE_HAPI_BOOM_ENABLED": [
2741
+ {
2742
+ "implementation": "A",
2743
+ "type": "boolean",
2744
+ "default": "true"
2745
+ }
2746
+ ],
2747
+ "DD_TRACE_HAPI_ENABLED": [
2748
+ {
2749
+ "implementation": "A",
2750
+ "type": "boolean",
2751
+ "default": "true"
2752
+ }
2753
+ ],
2754
+ "DD_TRACE_HAPI_HAPI_ENABLED": [
2755
+ {
2756
+ "implementation": "A",
2757
+ "type": "boolean",
2758
+ "default": "true"
2759
+ }
2760
+ ],
2761
+ "DD_TRACE_HEADER_TAGS": [
2762
+ {
2763
+ "implementation": "A",
2764
+ "type": "array",
2765
+ "default": "",
2766
+ "configurationNames": [
2767
+ "headerTags"
2768
+ ]
2769
+ }
2770
+ ],
2771
+ "DD_TRACE_HONO_ENABLED": [
2772
+ {
2773
+ "implementation": "A",
2774
+ "type": "boolean",
2775
+ "default": "true"
2776
+ }
2777
+ ],
2778
+ "DD_TRACE_HTTP2_ENABLED": [
2779
+ {
2780
+ "implementation": "A",
2781
+ "type": "boolean",
2782
+ "default": "true"
2783
+ }
2784
+ ],
2785
+ "DD_TRACE_HTTPS_ENABLED": [
2786
+ {
2787
+ "implementation": "A",
2788
+ "type": "boolean",
2789
+ "default": "true"
2790
+ }
2791
+ ],
2792
+ "DD_TRACE_HTTP_ENABLED": [
2793
+ {
2794
+ "implementation": "A",
2795
+ "type": "boolean",
2796
+ "default": "true"
2797
+ }
2798
+ ],
2799
+ "DD_TRACE_INFERRED_PROXY_SERVICES_ENABLED": [
2800
+ {
2801
+ "implementation": "A",
2802
+ "type": "boolean",
2803
+ "default": "false",
2804
+ "configurationNames": [
2805
+ "inferredProxyServicesEnabled"
2806
+ ]
2807
+ }
2808
+ ],
2809
+ "DD_TRACE_IOREDIS_ENABLED": [
2810
+ {
2811
+ "implementation": "A",
2812
+ "type": "boolean",
2813
+ "default": "true"
2814
+ }
2815
+ ],
2816
+ "DD_TRACE_IOVALKEY_ENABLED": [
2817
+ {
2818
+ "implementation": "A",
2819
+ "type": "boolean",
2820
+ "default": "true"
2821
+ }
2822
+ ],
2823
+ "DD_TRACE_JEST_CIRCUS_ENABLED": [
2824
+ {
2825
+ "implementation": "A",
2826
+ "type": "boolean",
2827
+ "default": "true"
2828
+ }
2829
+ ],
2830
+ "DD_TRACE_JEST_CONFIG_ENABLED": [
2831
+ {
2832
+ "implementation": "A",
2833
+ "type": "boolean",
2834
+ "default": "true"
2835
+ }
2836
+ ],
2837
+ "DD_TRACE_JEST_CORE_ENABLED": [
2838
+ {
2839
+ "implementation": "A",
2840
+ "type": "boolean",
2841
+ "default": "true"
2842
+ }
2843
+ ],
2844
+ "DD_TRACE_JEST_ENABLED": [
2845
+ {
2846
+ "implementation": "A",
2847
+ "type": "boolean",
2848
+ "default": "true"
2849
+ }
2850
+ ],
2851
+ "DD_TRACE_JEST_ENVIRONMENT_JSDOM_ENABLED": [
2852
+ {
2853
+ "implementation": "A",
2854
+ "type": "boolean",
2855
+ "default": "true"
2856
+ }
2857
+ ],
2858
+ "DD_TRACE_JEST_ENVIRONMENT_NODE_ENABLED": [
2859
+ {
2860
+ "implementation": "A",
2861
+ "type": "boolean",
2862
+ "default": "true"
2863
+ }
2864
+ ],
2865
+ "DD_TRACE_JEST_GLOBALS_ENABLED": [
2866
+ {
2867
+ "implementation": "A",
2868
+ "type": "boolean",
2869
+ "default": "true"
2870
+ }
2871
+ ],
2872
+ "DD_TRACE_JEST_REPORTERS_ENABLED": [
2873
+ {
2874
+ "implementation": "A",
2875
+ "type": "boolean",
2876
+ "default": "true"
2877
+ }
2878
+ ],
2879
+ "DD_TRACE_JEST_RUNTIME_ENABLED": [
2880
+ {
2881
+ "implementation": "A",
2882
+ "type": "boolean",
2883
+ "default": "true"
2884
+ }
2885
+ ],
2886
+ "DD_TRACE_JEST_TEST_SEQUENCER_ENABLED": [
2887
+ {
2888
+ "implementation": "A",
2889
+ "type": "boolean",
2890
+ "default": "true"
2891
+ }
2892
+ ],
2893
+ "DD_TRACE_JEST_TRANSFORM_ENABLED": [
2894
+ {
2895
+ "implementation": "A",
2896
+ "type": "boolean",
2897
+ "default": "true"
2898
+ }
2899
+ ],
2900
+ "DD_TRACE_JEST_WORKER_ENABLED": [
2901
+ {
2902
+ "implementation": "A",
2903
+ "type": "boolean",
2904
+ "default": "true"
2905
+ }
2906
+ ],
2907
+ "DD_TRACE_KAFKAJS_ENABLED": [
2908
+ {
2909
+ "implementation": "A",
2910
+ "type": "boolean",
2911
+ "default": "true"
2912
+ }
2913
+ ],
2914
+ "DD_TRACE_KNEX_ENABLED": [
2915
+ {
2916
+ "implementation": "A",
2917
+ "type": "boolean",
2918
+ "default": "true"
2919
+ }
2920
+ ],
2921
+ "DD_TRACE_KOA_ENABLED": [
2922
+ {
2923
+ "implementation": "A",
2924
+ "type": "boolean",
2925
+ "default": "true"
2926
+ }
2927
+ ],
2928
+ "DD_TRACE_KOA_ROUTER_ENABLED": [
2929
+ {
2930
+ "implementation": "A",
2931
+ "type": "boolean",
2932
+ "default": "true"
2933
+ }
2934
+ ],
2935
+ "DD_TRACE_KOA_ROUTE_ENABLED": [
2936
+ {
2937
+ "implementation": "A",
2938
+ "type": "boolean",
2939
+ "default": "true"
2940
+ }
2941
+ ],
2942
+ "DD_TRACE_KOA_WEBSOCKET_ENABLED": [
2943
+ {
2944
+ "implementation": "A",
2945
+ "type": "boolean",
2946
+ "default": "true"
2947
+ }
2948
+ ],
2949
+ "DD_TRACE_LANGCHAIN_ANTHROPIC_ENABLED": [
2950
+ {
2951
+ "implementation": "A",
2952
+ "type": "boolean",
2953
+ "default": "true"
2954
+ }
2955
+ ],
2956
+ "DD_TRACE_LANGCHAIN_COHERE_ENABLED": [
2957
+ {
2958
+ "implementation": "A",
2959
+ "type": "boolean",
2960
+ "default": "true"
2961
+ }
2962
+ ],
2963
+ "DD_TRACE_LANGCHAIN_CORE_ENABLED": [
2964
+ {
2965
+ "implementation": "A",
2966
+ "type": "boolean",
2967
+ "default": "true"
2968
+ }
2969
+ ],
2970
+ "DD_TRACE_LANGCHAIN_ENABLED": [
2971
+ {
2972
+ "implementation": "A",
2973
+ "type": "boolean",
2974
+ "default": "true"
2975
+ }
2976
+ ],
2977
+ "DD_TRACE_LANGCHAIN_GOOGLE_GENAI_ENABLED": [
2978
+ {
2979
+ "implementation": "A",
2980
+ "type": "boolean",
2981
+ "default": "true"
2982
+ }
2983
+ ],
2984
+ "DD_TRACE_LANGCHAIN_OPENAI_ENABLED": [
2985
+ {
2986
+ "implementation": "A",
2987
+ "type": "boolean",
2988
+ "default": "true"
2989
+ }
2990
+ ],
2991
+ "DD_TRACE_LDAPJS_ENABLED": [
2992
+ {
2993
+ "implementation": "A",
2994
+ "type": "boolean",
2995
+ "default": "true"
2996
+ }
2997
+ ],
2998
+ "DD_TRACE_LDAPJS_PROMISE_ENABLED": [
2999
+ {
3000
+ "implementation": "A",
3001
+ "type": "boolean",
3002
+ "default": "true"
3003
+ }
3004
+ ],
3005
+ "DD_TRACE_LEGACY_BAGGAGE_ENABLED": [
3006
+ {
3007
+ "implementation": "A",
3008
+ "type": "boolean",
3009
+ "default": "true",
3010
+ "configurationNames": [
3011
+ "legacyBaggageEnabled"
3012
+ ]
3013
+ }
3014
+ ],
3015
+ "DD_TRACE_LIMITD_CLIENT_ENABLED": [
3016
+ {
3017
+ "implementation": "A",
3018
+ "type": "boolean",
3019
+ "default": "true"
3020
+ }
3021
+ ],
3022
+ "DD_TRACE_LODASH_ENABLED": [
3023
+ {
3024
+ "implementation": "A",
3025
+ "type": "boolean",
3026
+ "default": "true"
3027
+ }
3028
+ ],
3029
+ "DD_TRACE_LOG_LEVEL": [
3030
+ {
3031
+ "implementation": "C",
3032
+ "type": "string",
3033
+ "default": "debug"
3034
+ }
3035
+ ],
3036
+ "DD_TRACE_LOOPBACK_ENABLED": [
3037
+ {
3038
+ "implementation": "A",
3039
+ "type": "boolean",
3040
+ "default": "true"
3041
+ }
3042
+ ],
3043
+ "DD_TRACE_MARIADB_ENABLED": [
3044
+ {
3045
+ "implementation": "A",
3046
+ "type": "boolean",
3047
+ "default": "true"
3048
+ }
3049
+ ],
3050
+ "DD_TRACE_MEMCACHED_COMMAND_ENABLED": [
3051
+ {
3052
+ "implementation": "A",
3053
+ "type": "boolean",
3054
+ "default": "false",
3055
+ "configurationNames": [
3056
+ "memcachedCommandEnabled"
3057
+ ]
3058
+ }
3059
+ ],
3060
+ "DD_TRACE_MEMCACHED_ENABLED": [
3061
+ {
3062
+ "implementation": "A",
3063
+ "type": "boolean",
3064
+ "default": "true"
3065
+ }
3066
+ ],
3067
+ "DD_TRACE_MICROGATEWAY_CORE_ENABLED": [
3068
+ {
3069
+ "implementation": "A",
3070
+ "type": "boolean",
3071
+ "default": "true"
3072
+ }
3073
+ ],
3074
+ "DD_TRACE_MIDDIE_ENABLED": [
3075
+ {
3076
+ "implementation": "A",
3077
+ "type": "boolean",
3078
+ "default": "true"
3079
+ }
3080
+ ],
3081
+ "DD_TRACE_MIDDLEWARE_TRACING_ENABLED": [
3082
+ {
3083
+ "implementation": "A",
3084
+ "type": "boolean",
3085
+ "default": "true",
3086
+ "configurationNames": [
3087
+ "middlewareTracingEnabled"
3088
+ ]
3089
+ }
3090
+ ],
3091
+ "DD_TRACE_MOCHA_EACH_ENABLED": [
3092
+ {
3093
+ "implementation": "A",
3094
+ "type": "boolean",
3095
+ "default": "true"
3096
+ }
3097
+ ],
3098
+ "DD_TRACE_MOCHA_ENABLED": [
3099
+ {
3100
+ "implementation": "A",
3101
+ "type": "boolean",
3102
+ "default": "true"
3103
+ }
3104
+ ],
3105
+ "DD_TRACE_MOLECULER_ENABLED": [
3106
+ {
3107
+ "implementation": "A",
3108
+ "type": "boolean",
3109
+ "default": "true"
3110
+ }
3111
+ ],
3112
+ "DD_TRACE_MONGODB_CORE_ENABLED": [
3113
+ {
3114
+ "implementation": "A",
3115
+ "type": "boolean",
3116
+ "default": "true"
3117
+ }
3118
+ ],
3119
+ "DD_TRACE_MONGODB_ENABLED": [
3120
+ {
3121
+ "implementation": "A",
3122
+ "type": "boolean",
3123
+ "default": "true"
3124
+ }
3125
+ ],
3126
+ "DD_TRACE_MONGODB_HEARTBEAT_ENABLED": [
3127
+ {
3128
+ "implementation": "A",
3129
+ "type": "boolean",
3130
+ "default": "true"
3131
+ }
3132
+ ],
3133
+ "DD_TRACE_MONGOOSE_ENABLED": [
3134
+ {
3135
+ "implementation": "A",
3136
+ "type": "boolean",
3137
+ "default": "true"
3138
+ }
3139
+ ],
3140
+ "DD_TRACE_MQUERY_ENABLED": [
3141
+ {
3142
+ "implementation": "A",
3143
+ "type": "boolean",
3144
+ "default": "true"
3145
+ }
3146
+ ],
3147
+ "DD_TRACE_MULTER_ENABLED": [
3148
+ {
3149
+ "implementation": "A",
3150
+ "type": "boolean",
3151
+ "default": "true"
3152
+ }
3153
+ ],
3154
+ "DD_TRACE_MYSQL2_ENABLED": [
3155
+ {
3156
+ "implementation": "A",
3157
+ "type": "boolean",
3158
+ "default": "true"
3159
+ }
3160
+ ],
3161
+ "DD_TRACE_MYSQL_ENABLED": [
3162
+ {
3163
+ "implementation": "A",
3164
+ "type": "boolean",
3165
+ "default": "true"
3166
+ }
3167
+ ],
3168
+ "DD_TRACE_NATIVE_SPAN_EVENTS": [
3169
+ {
3170
+ "implementation": "A",
3171
+ "type": "boolean",
3172
+ "default": "false",
3173
+ "configurationNames": [
3174
+ "trace.nativeSpanEvents"
3175
+ ]
3176
+ }
3177
+ ],
3178
+ "DD_TRACE_NET_ENABLED": [
3179
+ {
3180
+ "implementation": "A",
3181
+ "type": "boolean",
3182
+ "default": "true"
3183
+ }
3184
+ ],
3185
+ "DD_TRACE_NEXT_ENABLED": [
3186
+ {
3187
+ "implementation": "A",
3188
+ "type": "boolean",
3189
+ "default": "true"
3190
+ }
3191
+ ],
3192
+ "DD_TRACE_NODE_CHILD_PROCESS_ENABLED": [
3193
+ {
3194
+ "implementation": "A",
3195
+ "type": "boolean",
3196
+ "default": "true"
3197
+ }
3198
+ ],
3199
+ "DD_TRACE_NODE_REDIS_CLIENT_ENABLED": [
3200
+ {
3201
+ "implementation": "A",
3202
+ "type": "boolean",
3203
+ "default": "true"
3204
+ }
3205
+ ],
3206
+ "DD_TRACE_NODE_SERIALIZE_ENABLED": [
3207
+ {
3208
+ "implementation": "A",
3209
+ "type": "boolean",
3210
+ "default": "true"
3211
+ }
3212
+ ],
3213
+ "DD_TRACE_NYC_ENABLED": [
3214
+ {
3215
+ "implementation": "A",
3216
+ "type": "boolean",
3217
+ "default": "true"
3218
+ }
3219
+ ],
3220
+ "DD_TRACE_OBFUSCATION_QUERY_STRING_REGEXP": [
3221
+ {
3222
+ "implementation": "F",
3223
+ "type": "string",
3224
+ "default": "(?:p(?:ass)?w(?:or)?d|pass(?:_?phrase)?|secret|(?:api_?|private_?|public_?|access_?|secret_?)key(?:_?id)?|token|consumer_?(?:id|key|secret)|sign(?:ed|ature)?|auth(?:entication|orization)?)(?:(?:\\s|%20)*(?:=|%3D)[^&]+|(?:\"|%22)(?:\\s|%20)*(?::|%3A)(?:\\s|%20)*(?:\"|%22)(?:%2[^2]|%[^2]|[^\"%])+(?:\"|%22))|bearer(?:\\s|%20)+[a-z0-9\\._\\-]+|token(?::|%3A)[a-z0-9]{13}|gh[opsu]_[0-9a-zA-Z]{36}|ey[I-L](?:[\\w=-]|%3D)+\\.ey[I-L](?:[\\w=-]|%3D)+(?:\\.(?:[\\w.+\\/=-]|%3D|%2F|%2B)+)?|[\\-]{5}BEGIN(?:[a-z\\s]|%20)+PRIVATE(?:\\s|%20)KEY[\\-]{5}[^\\-]+[\\-]{5}END(?:[a-z\\s]|%20)+PRIVATE(?:\\s|%20)KEY|ssh-rsa(?:\\s|%20)*(?:[a-z0-9\\/\\.+]|%2F|%5C|%2B){100,}",
3225
+ "configurationNames": [
3226
+ "queryStringObfuscation"
3227
+ ]
3228
+ }
3229
+ ],
3230
+ "DD_TRACE_OPENAI_ENABLED": [
3231
+ {
3232
+ "implementation": "A",
3233
+ "type": "boolean",
3234
+ "default": "true"
3235
+ }
3236
+ ],
3237
+ "DD_TRACE_OPENSEARCH_ENABLED": [
3238
+ {
3239
+ "implementation": "A",
3240
+ "type": "boolean",
3241
+ "default": "true"
3242
+ }
3243
+ ],
3244
+ "DD_TRACE_OPENSEARCH_PROJECT_OPENSEARCH_ENABLED": [
3245
+ {
3246
+ "implementation": "A",
3247
+ "type": "boolean",
3248
+ "default": "true"
3249
+ }
3250
+ ],
3251
+ "DD_TRACE_OPENTELEMETRY_SDK_TRACE_NODE_ENABLED": [
3252
+ {
3253
+ "implementation": "A",
3254
+ "type": "boolean",
3255
+ "default": "true"
3256
+ }
3257
+ ],
3258
+ "DD_TRACE_ORACLEDB_ENABLED": [
3259
+ {
3260
+ "implementation": "A",
3261
+ "type": "boolean",
3262
+ "default": "true"
3263
+ }
3264
+ ],
3265
+ "DD_TRACE_OTEL_ENABLED": [
3266
+ {
3267
+ "implementation": "A",
3268
+ "type": "boolean",
3269
+ "default": "false"
3270
+ }
3271
+ ],
3272
+ "DD_TRACE_PARTIAL_FLUSH_MIN_SPANS": [
3273
+ {
3274
+ "implementation": "B",
3275
+ "type": "int",
3276
+ "configurationNames": [
3277
+ "flushMinSpans"
3278
+ ],
3279
+ "default": "1000"
3280
+ }
3281
+ ],
3282
+ "DD_TRACE_PASSPORT_ENABLED": [
3283
+ {
3284
+ "implementation": "A",
3285
+ "type": "boolean",
3286
+ "default": "true"
3287
+ }
3288
+ ],
3289
+ "DD_TRACE_PASSPORT_HTTP_ENABLED": [
3290
+ {
3291
+ "implementation": "A",
3292
+ "type": "boolean",
3293
+ "default": "true"
3294
+ }
3295
+ ],
3296
+ "DD_TRACE_PASSPORT_LOCAL_ENABLED": [
3297
+ {
3298
+ "implementation": "A",
3299
+ "type": "boolean",
3300
+ "default": "true"
3301
+ }
3302
+ ],
3303
+ "DD_TRACE_PEER_SERVICE_DEFAULTS_ENABLED": [
3304
+ {
3305
+ "implementation": "A",
3306
+ "type": "boolean",
3307
+ "configurationNames": [
3308
+ "spanComputePeerService"
3309
+ ],
3310
+ "default": "false"
3311
+ }
3312
+ ],
3313
+ "DD_TRACE_PEER_SERVICE_MAPPING": [
3314
+ {
3315
+ "implementation": "A",
3316
+ "type": "map",
3317
+ "configurationNames": [
3318
+ "peerServiceMapping"
3319
+ ],
3320
+ "default": ""
3321
+ }
3322
+ ],
3323
+ "DD_TRACE_PG_CURSOR_ENABLED": [
3324
+ {
3325
+ "implementation": "A",
3326
+ "type": "boolean",
3327
+ "default": "true"
3328
+ }
3329
+ ],
3330
+ "DD_TRACE_PG_ENABLED": [
3331
+ {
3332
+ "implementation": "A",
3333
+ "type": "boolean",
3334
+ "default": "true"
3335
+ }
3336
+ ],
3337
+ "DD_TRACE_PG_NATIVE_ENABLED": [
3338
+ {
3339
+ "implementation": "A",
3340
+ "type": "boolean",
3341
+ "default": "true"
3342
+ }
3343
+ ],
3344
+ "DD_TRACE_PG_QUERY_STREAM_ENABLED": [
3345
+ {
3346
+ "implementation": "A",
3347
+ "type": "boolean",
3348
+ "default": "true"
3349
+ }
3350
+ ],
3351
+ "DD_TRACE_PINO_ENABLED": [
3352
+ {
3353
+ "implementation": "A",
3354
+ "type": "boolean",
3355
+ "default": "true"
3356
+ }
3357
+ ],
3358
+ "DD_TRACE_PINO_PRETTY_ENABLED": [
3359
+ {
3360
+ "implementation": "A",
3361
+ "type": "boolean",
3362
+ "default": "true"
3363
+ }
3364
+ ],
3365
+ "DD_TRACE_PLAYWRIGHT_CORE_ENABLED": [
3366
+ {
3367
+ "implementation": "A",
3368
+ "type": "boolean",
3369
+ "default": "true"
3370
+ }
3371
+ ],
3372
+ "DD_TRACE_PLAYWRIGHT_ENABLED": [
3373
+ {
3374
+ "implementation": "A",
3375
+ "type": "boolean",
3376
+ "default": "true"
3377
+ }
3378
+ ],
3379
+ "DD_TRACE_PLAYWRIGHT_TEST_ENABLED": [
3380
+ {
3381
+ "implementation": "A",
3382
+ "type": "boolean",
3383
+ "default": "true"
3384
+ }
3385
+ ],
3386
+ "DD_TRACE_PRISMA_ENABLED": [
3387
+ {
3388
+ "implementation": "A",
3389
+ "type": "boolean",
3390
+ "default": "true"
3391
+ }
3392
+ ],
3393
+ "DD_TRACE_PROCESS_ENABLED": [
3394
+ {
3395
+ "implementation": "A",
3396
+ "type": "boolean",
3397
+ "default": "true"
3398
+ }
3399
+ ],
3400
+ "DD_TRACE_PROMISE_ENABLED": [
3401
+ {
3402
+ "implementation": "A",
3403
+ "type": "boolean",
3404
+ "default": "true"
3405
+ }
3406
+ ],
3407
+ "DD_TRACE_PROMISE_JS_ENABLED": [
3408
+ {
3409
+ "implementation": "A",
3410
+ "type": "boolean",
3411
+ "default": "true"
3412
+ }
3413
+ ],
3414
+ "DD_TRACE_PROPAGATION_BEHAVIOR_EXTRACT": [
3415
+ {
3416
+ "implementation": "B",
3417
+ "type": "string",
3418
+ "default": "continue",
3419
+ "configurationNames": [
3420
+ "tracePropagationBehaviorExtract"
3421
+ ]
3422
+ }
3423
+ ],
3424
+ "DD_TRACE_PROPAGATION_EXTRACT_FIRST": [
3425
+ {
3426
+ "implementation": "A",
3427
+ "type": "boolean",
3428
+ "default": "false",
3429
+ "configurationNames": [
3430
+ "tracePropagationExtractFirst"
3431
+ ]
3432
+ }
3433
+ ],
3434
+ "DD_TRACE_PROPAGATION_STYLE": [
3435
+ {
3436
+ "implementation": "D",
3437
+ "type": "array",
3438
+ "configurationNames": [
3439
+ "tracePropagationStyle"
3440
+ ],
3441
+ "default": "datadog,tracecontext,baggage"
3442
+ }
3443
+ ],
3444
+ "DD_TRACE_PROPAGATION_STYLE_EXTRACT": [
3445
+ {
3446
+ "implementation": "B",
3447
+ "type": "array",
3448
+ "configurationNames": [
3449
+ "tracePropagationStyle.extract"
3450
+ ],
3451
+ "default": "datadog, tracecontext, baggage"
3452
+ }
3453
+ ],
3454
+ "DD_TRACE_PROPAGATION_STYLE_INJECT": [
3455
+ {
3456
+ "implementation": "B",
3457
+ "type": "array",
3458
+ "configurationNames": [
3459
+ "tracePropagationStyle.inject"
3460
+ ],
3461
+ "default": "datadog, tracecontext, baggage"
3462
+ }
3463
+ ],
3464
+ "DD_TRACE_PROTOBUFJS_ENABLED": [
3465
+ {
3466
+ "implementation": "A",
3467
+ "type": "boolean",
3468
+ "default": "true"
3469
+ }
3470
+ ],
3471
+ "DD_TRACE_PUG_ENABLED": [
3472
+ {
3473
+ "implementation": "A",
3474
+ "type": "boolean",
3475
+ "default": "true"
3476
+ }
3477
+ ],
3478
+ "DD_TRACE_Q_ENABLED": [
3479
+ {
3480
+ "implementation": "A",
3481
+ "type": "boolean",
3482
+ "default": "true"
3483
+ }
3484
+ ],
3485
+ "DD_TRACE_RATE_LIMIT": [
3486
+ {
3487
+ "implementation": "A",
3488
+ "type": "int",
3489
+ "configurationNames": [
3490
+ "ingestion.rateLimit",
3491
+ "sampler.rateLimit"
3492
+ ],
3493
+ "default": "100"
3494
+ }
3495
+ ],
3496
+ "DD_TRACE_REACT_DOM_ENABLED": [
3497
+ {
3498
+ "implementation": "A",
3499
+ "type": "boolean",
3500
+ "default": "true"
3501
+ }
3502
+ ],
3503
+ "DD_TRACE_REACT_ENABLED": [
3504
+ {
3505
+ "implementation": "A",
3506
+ "type": "boolean",
3507
+ "default": "true"
3508
+ }
3509
+ ],
3510
+ "DD_TRACE_REDIS_CLIENT_ENABLED": [
3511
+ {
3512
+ "implementation": "A",
3513
+ "type": "boolean",
3514
+ "default": "true"
3515
+ }
3516
+ ],
3517
+ "DD_TRACE_REDIS_ENABLED": [
3518
+ {
3519
+ "implementation": "A",
3520
+ "type": "boolean",
3521
+ "default": "true"
3522
+ }
3523
+ ],
3524
+ "DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED": [
3525
+ {
3526
+ "implementation": "A",
3527
+ "type": "boolean",
3528
+ "default": "false",
3529
+ "configurationNames": [
3530
+ "spanRemoveIntegrationFromService"
3531
+ ]
3532
+ }
3533
+ ],
3534
+ "DD_TRACE_REPORT_HOSTNAME": [
3535
+ {
3536
+ "implementation": "A",
3537
+ "type": "boolean",
3538
+ "configurationNames": [
3539
+ "reportHostname"
3540
+ ],
3541
+ "default": "false"
3542
+ }
3543
+ ],
3544
+ "DD_TRACE_REQUEST_ENABLED": [
3545
+ {
3546
+ "implementation": "A",
3547
+ "type": "boolean",
3548
+ "default": "true"
3549
+ }
3550
+ ],
3551
+ "DD_TRACE_RESOURCE_RENAMING_ENABLED": [
3552
+ {
3553
+ "implementation": "A",
3554
+ "type": "boolean",
3555
+ "default": "false",
3556
+ "configurationNames": [
3557
+ "resourceRenamingEnabled"
3558
+ ]
3559
+ }
3560
+ ],
3561
+ "DD_TRACE_RESTIFY_ENABLED": [
3562
+ {
3563
+ "implementation": "A",
3564
+ "type": "boolean",
3565
+ "default": "true"
3566
+ }
3567
+ ],
3568
+ "DD_TRACE_RHEA_ENABLED": [
3569
+ {
3570
+ "implementation": "A",
3571
+ "type": "boolean",
3572
+ "default": "true"
3573
+ }
3574
+ ],
3575
+ "DD_TRACE_ROUTER_ENABLED": [
3576
+ {
3577
+ "implementation": "A",
3578
+ "type": "boolean",
3579
+ "default": "true"
3580
+ }
3581
+ ],
3582
+ "DD_TRACE_SAMPLE_RATE": [
3583
+ {
3584
+ "implementation": "B",
3585
+ "type": "decimal",
3586
+ "configurationNames": [
3587
+ "ingestion.sampleRate"
3588
+ ],
3589
+ "default": null
3590
+ }
3591
+ ],
3592
+ "DD_TRACE_SAMPLING_RULES": [
3593
+ {
3594
+ "implementation": "A",
3595
+ "type": "array",
3596
+ "configurationNames": [
3597
+ "samplingRules",
3598
+ "sampler.rules"
3599
+ ],
3600
+ "default": ""
3601
+ }
3602
+ ],
3603
+ "DD_TRACE_SCOPE": [
3604
+ {
3605
+ "implementation": "A",
3606
+ "type": "string",
3607
+ "default": null,
3608
+ "configurationNames": [
3609
+ "scope"
3610
+ ]
3611
+ }
3612
+ ],
3613
+ "DD_TRACE_SELENIUM_ENABLED": [
3614
+ {
3615
+ "implementation": "B",
3616
+ "type": "boolean",
3617
+ "default": "true"
3618
+ }
3619
+ ],
3620
+ "DD_TRACE_SELENIUM_WEBDRIVER_ENABLED": [
3621
+ {
3622
+ "implementation": "A",
3623
+ "type": "boolean",
3624
+ "default": "true"
3625
+ }
3626
+ ],
3627
+ "DD_TRACE_SEQUELIZE_ENABLED": [
3628
+ {
3629
+ "implementation": "A",
3630
+ "type": "boolean",
3631
+ "default": "true"
3632
+ }
3633
+ ],
3634
+ "DD_TRACE_SHAREDB_ENABLED": [
3635
+ {
3636
+ "implementation": "A",
3637
+ "type": "boolean",
3638
+ "default": "true"
3639
+ }
3640
+ ],
3641
+ "DD_TRACE_SMITHY_SMITHY_CLIENT_ENABLED": [
3642
+ {
3643
+ "implementation": "A",
3644
+ "type": "boolean",
3645
+ "default": "true"
3646
+ }
3647
+ ],
3648
+ "DD_TRACE_SPAN_ATTRIBUTE_SCHEMA": [
3649
+ {
3650
+ "implementation": "B",
3651
+ "type": "string",
3652
+ "configurationNames": [
3653
+ "spanAttributeSchema"
3654
+ ],
3655
+ "default": "v0"
3656
+ }
3657
+ ],
3658
+ "DD_TRACE_SPAN_LEAK_DEBUG": [
3659
+ {
3660
+ "implementation": "A",
3661
+ "type": "int",
3662
+ "configurationNames": [
3663
+ "spanLeakDebug"
3664
+ ],
3665
+ "default": "0"
3666
+ }
3667
+ ],
3668
+ "DD_TRACE_SQLITE3_ENABLED": [
3669
+ {
3670
+ "implementation": "A",
3671
+ "type": "boolean",
3672
+ "default": "true"
3673
+ }
3674
+ ],
3675
+ "DD_TRACE_STARTUP_LOGS": [
3676
+ {
3677
+ "implementation": "D",
3678
+ "type": "boolean",
3679
+ "configurationNames": [
3680
+ "startupLogs"
3681
+ ],
3682
+ "default": "false"
3683
+ }
3684
+ ],
3685
+ "DD_TRACE_STATS_COMPUTATION_ENABLED": [
3686
+ {
3687
+ "implementation": "A",
3688
+ "type": "boolean",
3689
+ "configurationNames": [
3690
+ "stats.enabled"
3691
+ ],
3692
+ "default": "false"
3693
+ }
3694
+ ],
3695
+ "DD_TRACE_SUFFIXPLUGIN_ENABLED": [
3696
+ {
3697
+ "implementation": "A",
3698
+ "type": "boolean",
3699
+ "default": "true"
3700
+ }
3701
+ ],
3702
+ "DD_TRACE_TAGS": [
3703
+ {
3704
+ "implementation": "B",
3705
+ "type": "map",
3706
+ "default": null,
3707
+ "aliases": [
3708
+ "DD_TRACE_GLOBAL_TAGS"
3709
+ ]
3710
+ }
3711
+ ],
3712
+ "DD_TRACE_TEDIOUS_ENABLED": [
3713
+ {
3714
+ "implementation": "A",
3715
+ "type": "boolean",
3716
+ "default": "true"
3717
+ }
3718
+ ],
3719
+ "DD_TRACE_UNDICI_ENABLED": [
3720
+ {
3721
+ "implementation": "A",
3722
+ "type": "boolean",
3723
+ "default": "true"
3724
+ }
3725
+ ],
3726
+ "DD_TRACE_URL_ENABLED": [
3727
+ {
3728
+ "implementation": "A",
3729
+ "type": "boolean",
3730
+ "default": "true"
3731
+ }
3732
+ ],
3733
+ "DD_TRACE_VITEST_ENABLED": [
3734
+ {
3735
+ "implementation": "A",
3736
+ "type": "boolean",
3737
+ "default": "true"
3738
+ }
3739
+ ],
3740
+ "DD_TRACE_VITEST_RUNNER_ENABLED": [
3741
+ {
3742
+ "implementation": "A",
3743
+ "type": "boolean",
3744
+ "default": "true"
3745
+ }
3746
+ ],
3747
+ "DD_TRACE_VM_ENABLED": [
3748
+ {
3749
+ "implementation": "A",
3750
+ "type": "boolean",
3751
+ "default": "true"
3752
+ }
3753
+ ],
3754
+ "DD_TRACE_WEBSOCKET_MESSAGES_ENABLED": [
3755
+ {
3756
+ "implementation": "A",
3757
+ "type": "boolean",
3758
+ "default": "true",
3759
+ "configurationNames": [
3760
+ "traceWebsocketMessagesEnabled"
3761
+ ]
3762
+ }
3763
+ ],
3764
+ "DD_TRACE_WEBSOCKET_MESSAGES_INHERIT_SAMPLING": [
3765
+ {
3766
+ "implementation": "A",
3767
+ "type": "boolean",
3768
+ "default": "true",
3769
+ "configurationNames": [
3770
+ "traceWebsocketMessagesInheritSampling"
3771
+ ]
3772
+ }
3773
+ ],
3774
+ "DD_TRACE_WEBSOCKET_MESSAGES_SEPARATE_TRACES": [
3775
+ {
3776
+ "implementation": "A",
3777
+ "type": "boolean",
3778
+ "default": "true",
3779
+ "configurationNames": [
3780
+ "traceWebsocketMessagesSeparateTraces"
3781
+ ]
3782
+ }
3783
+ ],
3784
+ "DD_TRACE_WHEN_ENABLED": [
3785
+ {
3786
+ "implementation": "A",
3787
+ "type": "boolean",
3788
+ "default": "true"
3789
+ }
3790
+ ],
3791
+ "DD_TRACE_WINSTON_ENABLED": [
3792
+ {
3793
+ "implementation": "A",
3794
+ "type": "boolean",
3795
+ "default": "true"
3796
+ }
3797
+ ],
3798
+ "DD_TRACE_WORKERPOOL_ENABLED": [
3799
+ {
3800
+ "implementation": "A",
3801
+ "type": "boolean",
3802
+ "default": "true"
3803
+ }
3804
+ ],
3805
+ "DD_TRACE_WS_ENABLED": [
3806
+ {
3807
+ "implementation": "A",
3808
+ "type": "boolean",
3809
+ "default": "true"
3810
+ }
3811
+ ],
3812
+ "DD_TRACE_X_DATADOG_TAGS_MAX_LENGTH": [
3813
+ {
3814
+ "implementation": "A",
3815
+ "type": "int",
3816
+ "default": "512",
3817
+ "configurationNames": [
3818
+ "tagsHeaderMaxLength"
3819
+ ]
3820
+ }
3821
+ ],
3822
+ "DD_TRACING_ENABLED": [
3823
+ {
3824
+ "implementation": "A",
3825
+ "type": "boolean",
3826
+ "default": "true",
3827
+ "configurationNames": [
3828
+ "tracing"
3829
+ ]
3830
+ }
3831
+ ],
3832
+ "DD_VERSION": [
3833
+ {
3834
+ "implementation": "B",
3835
+ "type": "string",
3836
+ "configurationNames": [
3837
+ "version"
3838
+ ],
3839
+ "default": null
3840
+ }
3841
+ ],
3842
+ "DD_VERTEXAI_SPAN_CHAR_LIMIT": [
3843
+ {
3844
+ "implementation": "A",
3845
+ "type": "int",
3846
+ "default": "128",
3847
+ "configurationNames": [
3848
+ "vertexai.spanCharLimit"
3849
+ ]
3850
+ }
3851
+ ],
3852
+ "DD_VERTEXAI_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
3853
+ {
3854
+ "implementation": "A",
3855
+ "type": "decimal",
3856
+ "default": "1",
3857
+ "configurationNames": [
3858
+ "vertexai.spanPromptCompletionSampleRate"
3859
+ ]
3860
+ }
3861
+ ],
3862
+ "DD_VITEST_WORKER": [
3863
+ {
3864
+ "implementation": "A",
3865
+ "type": "string",
3866
+ "default": null
3867
+ }
3868
+ ],
3869
+ "OTEL_BSP_MAX_EXPORT_BATCH_SIZE": [
3870
+ {
3871
+ "implementation": "A",
3872
+ "type": "int",
3873
+ "configurationNames": [
3874
+ "otelMaxExportBatchSize"
3875
+ ],
3876
+ "default": "512"
3877
+ }
3878
+ ],
3879
+ "OTEL_BSP_MAX_QUEUE_SIZE": [
3880
+ {
3881
+ "implementation": "A",
3882
+ "type": "int",
3883
+ "configurationNames": [
3884
+ "otelMaxQueueSize"
3885
+ ],
3886
+ "default": "2048"
3887
+ }
3888
+ ],
3889
+ "OTEL_BSP_SCHEDULE_DELAY": [
3890
+ {
3891
+ "implementation": "A",
3892
+ "type": "int",
3893
+ "configurationNames": [
3894
+ "otelBatchTimeout"
3895
+ ],
3896
+ "default": "5000"
3897
+ }
3898
+ ],
3899
+ "OTEL_EXPORTER_OTLP_ENDPOINT": [
3900
+ {
3901
+ "implementation": "A",
3902
+ "type": "string",
3903
+ "default": null,
3904
+ "configurationNames": [
3905
+ "otelUrl"
3906
+ ]
3907
+ }
3908
+ ],
3909
+ "OTEL_EXPORTER_OTLP_HEADERS": [
3910
+ {
3911
+ "implementation": "B",
3912
+ "type": "map",
3913
+ "default": null,
3914
+ "configurationNames": [
3915
+ "otelHeaders"
3916
+ ]
3917
+ }
3918
+ ],
3919
+ "OTEL_EXPORTER_OTLP_LOGS_ENDPOINT": [
3920
+ {
3921
+ "implementation": "A",
3922
+ "type": "string",
3923
+ "default": null,
3924
+ "configurationNames": [
3925
+ "otelLogsUrl"
3926
+ ]
3927
+ }
3928
+ ],
3929
+ "OTEL_EXPORTER_OTLP_LOGS_HEADERS": [
3930
+ {
3931
+ "implementation": "B",
3932
+ "type": "map",
3933
+ "default": null,
3934
+ "configurationNames": [
3935
+ "otelLogsHeaders"
3936
+ ]
3937
+ }
3938
+ ],
3939
+ "OTEL_EXPORTER_OTLP_LOGS_PROTOCOL": [
3940
+ {
3941
+ "implementation": "D",
3942
+ "type": "string",
3943
+ "default": "http/protobuf",
3944
+ "configurationNames": [
3945
+ "otelLogsProtocol"
3946
+ ]
3947
+ }
3948
+ ],
3949
+ "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT": [
3950
+ {
3951
+ "implementation": "A",
3952
+ "type": "int",
3953
+ "configurationNames": [
3954
+ "otelLogsTimeout"
3955
+ ],
3956
+ "default": "10000"
3957
+ }
3958
+ ],
3959
+ "OTEL_EXPORTER_OTLP_METRICS_ENDPOINT": [
3960
+ {
3961
+ "implementation": "A",
3962
+ "type": "string",
3963
+ "default": null,
3964
+ "configurationNames": [
3965
+ "otelMetricsUrl"
3966
+ ]
3967
+ }
3968
+ ],
3969
+ "OTEL_EXPORTER_OTLP_METRICS_HEADERS": [
3970
+ {
3971
+ "implementation": "A",
3972
+ "type": "map",
3973
+ "default": null,
3974
+ "configurationNames": [
3975
+ "otelMetricsHeaders"
3976
+ ]
3977
+ }
3978
+ ],
3979
+ "OTEL_EXPORTER_OTLP_METRICS_PROTOCOL": [
3980
+ {
3981
+ "implementation": "B",
3982
+ "type": "string",
3983
+ "default": "http/protobuf",
3984
+ "configurationNames": [
3985
+ "otelMetricsProtocol"
3986
+ ]
3987
+ }
3988
+ ],
3989
+ "OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE": [
3990
+ {
3991
+ "implementation": "A",
3992
+ "type": "string",
3993
+ "configurationNames": [
3994
+ "otelMetricsTemporalityPreference"
3995
+ ],
3996
+ "default": "delta"
3997
+ }
3998
+ ],
3999
+ "OTEL_EXPORTER_OTLP_METRICS_TIMEOUT": [
4000
+ {
4001
+ "implementation": "B",
4002
+ "type": "int",
4003
+ "configurationNames": [
4004
+ "otelMetricsTimeout"
4005
+ ],
4006
+ "default": "10000"
4007
+ }
4008
+ ],
4009
+ "OTEL_EXPORTER_OTLP_PROTOCOL": [
4010
+ {
4011
+ "implementation": "A",
4012
+ "type": "string",
4013
+ "default": "http/protobuf",
4014
+ "configurationNames": [
4015
+ "otelProtocol"
4016
+ ]
4017
+ }
4018
+ ],
4019
+ "OTEL_EXPORTER_OTLP_TIMEOUT": [
4020
+ {
4021
+ "implementation": "A",
4022
+ "type": "int",
4023
+ "configurationNames": [
4024
+ "otelTimeout"
4025
+ ],
4026
+ "default": "10000"
4027
+ }
4028
+ ],
4029
+ "OTEL_LOGS_EXPORTER": [
4030
+ {
4031
+ "implementation": "A",
4032
+ "type": "string",
4033
+ "default": null
4034
+ }
4035
+ ],
4036
+ "OTEL_LOG_LEVEL": [
4037
+ {
4038
+ "implementation": "C",
4039
+ "type": "string",
4040
+ "default": null
4041
+ }
4042
+ ],
4043
+ "OTEL_METRICS_EXPORTER": [
4044
+ {
4045
+ "implementation": "C",
4046
+ "type": "string",
4047
+ "default": null
4048
+ }
4049
+ ],
4050
+ "OTEL_METRIC_EXPORT_INTERVAL": [
4051
+ {
4052
+ "implementation": "A",
4053
+ "type": "int",
4054
+ "configurationNames": [
4055
+ "otelMetricsExportInterval"
4056
+ ],
4057
+ "default": "10000"
4058
+ }
4059
+ ],
4060
+ "OTEL_METRIC_EXPORT_TIMEOUT": [
4061
+ {
4062
+ "implementation": "A",
4063
+ "type": "int",
4064
+ "configurationNames": [
4065
+ "otelMetricsExportTimeout"
4066
+ ],
4067
+ "default": "7500"
4068
+ }
4069
+ ],
4070
+ "OTEL_PROPAGATORS": [
4071
+ {
4072
+ "implementation": "A",
4073
+ "type": "array",
4074
+ "default": "",
4075
+ "configurationNames": [
4076
+ "tracePropagationStyle.otelPropagators"
4077
+ ]
4078
+ }
4079
+ ],
4080
+ "OTEL_RESOURCE_ATTRIBUTES": [
4081
+ {
4082
+ "implementation": "B",
4083
+ "type": "string",
4084
+ "default": ""
4085
+ }
4086
+ ],
4087
+ "OTEL_SDK_DISABLED": [
4088
+ {
4089
+ "implementation": "C",
4090
+ "type": "boolean",
4091
+ "default": "true"
4092
+ }
4093
+ ],
4094
+ "OTEL_SERVICE_NAME": [
4095
+ {
4096
+ "implementation": "B",
4097
+ "type": "string",
4098
+ "configurationNames": [
4099
+ "service"
4100
+ ],
4101
+ "default": null
4102
+ }
4103
+ ],
4104
+ "OTEL_TRACES_EXPORTER": [
4105
+ {
4106
+ "implementation": "F",
4107
+ "type": "string",
4108
+ "default": "otlp"
4109
+ }
4110
+ ],
4111
+ "OTEL_TRACES_SAMPLER": [
4112
+ {
4113
+ "implementation": "E",
4114
+ "type": "string",
4115
+ "default": "parentbased_always_on"
4116
+ }
4117
+ ],
4118
+ "OTEL_TRACES_SAMPLER_ARG": [
4119
+ {
4120
+ "implementation": "D",
4121
+ "type": "decimal",
4122
+ "configurationNames": [
4123
+ "sampleRate"
4124
+ ],
4125
+ "default": null
4126
+ }
4127
+ ]
515
4128
  }
516
4129
  }