dd-trace 5.87.0 → 5.88.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 (77) 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/index.d.ts +225 -4
  5. package/package.json +9 -6
  6. package/packages/datadog-instrumentations/src/ai.js +54 -90
  7. package/packages/datadog-instrumentations/src/helpers/hook.js +17 -11
  8. package/packages/datadog-instrumentations/src/helpers/rewriter/compiler.js +55 -14
  9. package/packages/datadog-instrumentations/src/helpers/rewriter/index.js +15 -13
  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/transformer.js +21 -0
  14. package/packages/datadog-instrumentations/src/helpers/rewriter/transforms.js +138 -12
  15. package/packages/datadog-instrumentations/src/jest.js +76 -12
  16. package/packages/datadog-instrumentations/src/kafkajs.js +20 -17
  17. package/packages/datadog-instrumentations/src/playwright.js +1 -1
  18. package/packages/datadog-plugin-amqplib/src/consumer.js +14 -10
  19. package/packages/datadog-plugin-amqplib/src/producer.js +23 -19
  20. package/packages/datadog-plugin-bullmq/src/consumer.js +33 -11
  21. package/packages/datadog-plugin-bullmq/src/producer.js +60 -31
  22. package/packages/datadog-plugin-cucumber/src/index.js +9 -6
  23. package/packages/datadog-plugin-cypress/src/cypress-plugin.js +26 -0
  24. package/packages/datadog-plugin-cypress/src/support.js +48 -8
  25. package/packages/datadog-plugin-jest/src/index.js +12 -2
  26. package/packages/datadog-plugin-jest/src/util.js +2 -1
  27. package/packages/datadog-plugin-kafkajs/src/consumer.js +22 -12
  28. package/packages/datadog-plugin-kafkajs/src/producer.js +33 -22
  29. package/packages/datadog-plugin-mocha/src/index.js +9 -6
  30. package/packages/datadog-plugin-playwright/src/index.js +10 -6
  31. package/packages/datadog-plugin-vitest/src/index.js +13 -8
  32. package/packages/dd-trace/src/appsec/iast/analyzers/cookie-analyzer.js +1 -1
  33. package/packages/dd-trace/src/appsec/iast/analyzers/ssrf-analyzer.js +1 -1
  34. package/packages/dd-trace/src/appsec/iast/analyzers/unvalidated-redirect-analyzer.js +1 -1
  35. package/packages/dd-trace/src/appsec/iast/analyzers/vulnerability-analyzer.js +4 -5
  36. package/packages/dd-trace/src/appsec/iast/path-line.js +36 -25
  37. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-analyzers/command-sensitive-analyzer.js +1 -1
  38. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-handler.js +3 -4
  39. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/utils.js +3 -2
  40. package/packages/dd-trace/src/azure_metadata.js +0 -2
  41. package/packages/dd-trace/src/ci-visibility/early-flake-detection/get-known-tests.js +1 -1
  42. package/packages/dd-trace/src/ci-visibility/exporters/ci-visibility-exporter.js +2 -0
  43. package/packages/dd-trace/src/ci-visibility/intelligent-test-runner/get-skippable-suites.js +1 -1
  44. package/packages/dd-trace/src/ci-visibility/requests/get-library-configuration.js +4 -1
  45. package/packages/dd-trace/src/ci-visibility/requests/request.js +236 -0
  46. package/packages/dd-trace/src/ci-visibility/test-management/get-test-management-tests.js +1 -1
  47. package/packages/dd-trace/src/config/defaults.js +148 -197
  48. package/packages/dd-trace/src/config/helper.js +43 -1
  49. package/packages/dd-trace/src/config/index.js +36 -14
  50. package/packages/dd-trace/src/config/supported-configurations.json +4115 -512
  51. package/packages/dd-trace/src/constants.js +0 -2
  52. package/packages/dd-trace/src/crashtracking/crashtracker.js +10 -3
  53. package/packages/dd-trace/src/datastreams/pathway.js +22 -3
  54. package/packages/dd-trace/src/datastreams/processor.js +14 -1
  55. package/packages/dd-trace/src/encode/agentless-json.js +141 -0
  56. package/packages/dd-trace/src/exporter.js +2 -0
  57. package/packages/dd-trace/src/exporters/agent/writer.js +22 -8
  58. package/packages/dd-trace/src/exporters/agentless/index.js +89 -0
  59. package/packages/dd-trace/src/exporters/agentless/writer.js +184 -0
  60. package/packages/dd-trace/src/exporters/common/request.js +4 -4
  61. package/packages/dd-trace/src/llmobs/plugins/ai/index.js +5 -3
  62. package/packages/dd-trace/src/opentelemetry/context_manager.js +19 -46
  63. package/packages/dd-trace/src/opentelemetry/otlp/otlp_http_exporter_base.js +3 -4
  64. package/packages/dd-trace/src/opentracing/propagation/text_map.js +3 -5
  65. package/packages/dd-trace/src/opentracing/span.js +6 -4
  66. package/packages/dd-trace/src/plugins/ci_plugin.js +57 -5
  67. package/packages/dd-trace/src/plugins/database.js +15 -2
  68. package/packages/dd-trace/src/plugins/util/test.js +48 -0
  69. package/packages/dd-trace/src/profiling/exporter_cli.js +1 -0
  70. package/packages/dd-trace/src/propagation-hash/index.js +145 -0
  71. package/packages/dd-trace/src/proxy.js +4 -0
  72. package/packages/dd-trace/src/runtime_metrics/runtime_metrics.js +1 -1
  73. package/packages/dd-trace/src/startup-log.js +1 -1
  74. package/packages/datadog-instrumentations/src/helpers/rewriter/instrumentations/bullmq.json +0 -106
  75. package/packages/dd-trace/src/appsec/iast/analyzers/hardcoded-secrets-rules.js +0 -741
  76. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-regex.js +0 -11
  77. package/packages/dd-trace/src/scope/noop/scope.js +0 -21
@@ -1,516 +1,4119 @@
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_SESSION_NAME": [
1774
+ {
1775
+ "implementation": "A",
1776
+ "type": "string",
1777
+ "default": null,
1778
+ "configurationNames": [
1779
+ "ciVisibilityTestSessionName"
1780
+ ]
1781
+ }
1782
+ ],
1783
+ "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": [
1784
+ {
1785
+ "implementation": "A",
1786
+ "type": "boolean",
1787
+ "default": "true",
1788
+ "configurationNames": [
1789
+ "traceId128BitGenerationEnabled"
1790
+ ]
1791
+ }
1792
+ ],
1793
+ "DD_TRACE_128_BIT_TRACEID_LOGGING_ENABLED": [
1794
+ {
1795
+ "implementation": "A",
1796
+ "type": "boolean",
1797
+ "default": "true",
1798
+ "configurationNames": [
1799
+ "traceId128BitLoggingEnabled"
1800
+ ]
1801
+ }
1802
+ ],
1803
+ "DD_TRACE_AEROSPIKE_ENABLED": [
1804
+ {
1805
+ "implementation": "B",
1806
+ "type": "boolean",
1807
+ "default": "true"
1808
+ }
1809
+ ],
1810
+ "DD_TRACE_AGENT_PORT": [
1811
+ {
1812
+ "implementation": "A",
1813
+ "type": "int",
1814
+ "configurationNames": [
1815
+ "port"
1816
+ ],
1817
+ "default": "8126"
1818
+ }
1819
+ ],
1820
+ "DD_TRACE_AGENT_PROTOCOL_VERSION": [
1821
+ {
1822
+ "implementation": "A",
1823
+ "type": "string",
1824
+ "configurationNames": [
1825
+ "protocolVersion"
1826
+ ],
1827
+ "default": "0.4"
1828
+ }
1829
+ ],
1830
+ "DD_TRACE_AGENT_URL": [
1831
+ {
1832
+ "implementation": "A",
1833
+ "type": "string",
1834
+ "configurationNames": [
1835
+ "url"
1836
+ ],
1837
+ "default": "",
1838
+ "aliases": [
1839
+ "DD_TRACE_URL"
1840
+ ]
1841
+ }
1842
+ ],
1843
+ "DD_TRACE_AI_ENABLED": [
1844
+ {
1845
+ "implementation": "A",
1846
+ "type": "boolean",
1847
+ "default": "true"
1848
+ }
1849
+ ],
1850
+ "DD_TRACE_AMQP10_ENABLED": [
1851
+ {
1852
+ "implementation": "A",
1853
+ "type": "boolean",
1854
+ "default": "true"
1855
+ }
1856
+ ],
1857
+ "DD_TRACE_AMQPLIB_ENABLED": [
1858
+ {
1859
+ "implementation": "A",
1860
+ "type": "boolean",
1861
+ "default": "true"
1862
+ }
1863
+ ],
1864
+ "DD_TRACE_ANTHROPIC_ENABLED": [
1865
+ {
1866
+ "implementation": "A",
1867
+ "type": "boolean",
1868
+ "default": "true"
1869
+ }
1870
+ ],
1871
+ "DD_TRACE_APOLLO_ENABLED": [
1872
+ {
1873
+ "implementation": "A",
1874
+ "type": "boolean",
1875
+ "default": "true"
1876
+ }
1877
+ ],
1878
+ "DD_TRACE_APOLLO_GATEWAY_ENABLED": [
1879
+ {
1880
+ "implementation": "A",
1881
+ "type": "boolean",
1882
+ "default": "true"
1883
+ }
1884
+ ],
1885
+ "DD_TRACE_APOLLO_SERVER_CORE_ENABLED": [
1886
+ {
1887
+ "implementation": "A",
1888
+ "type": "boolean",
1889
+ "default": "true"
1890
+ }
1891
+ ],
1892
+ "DD_TRACE_APOLLO_SERVER_ENABLED": [
1893
+ {
1894
+ "implementation": "A",
1895
+ "type": "boolean",
1896
+ "default": "true"
1897
+ }
1898
+ ],
1899
+ "DD_TRACE_APOLLO_SERVER_EXPRESS_ENABLED": [
1900
+ {
1901
+ "implementation": "A",
1902
+ "type": "boolean",
1903
+ "default": "true"
1904
+ }
1905
+ ],
1906
+ "DD_TRACE_APOLLO_SERVER_FASTIFY_ENABLED": [
1907
+ {
1908
+ "implementation": "A",
1909
+ "type": "boolean",
1910
+ "default": "true"
1911
+ }
1912
+ ],
1913
+ "DD_TRACE_APOLLO_SUBGRAPH_ENABLED": [
1914
+ {
1915
+ "implementation": "A",
1916
+ "type": "boolean",
1917
+ "default": "true"
1918
+ }
1919
+ ],
1920
+ "DD_TRACE_AVSC_ENABLED": [
1921
+ {
1922
+ "implementation": "A",
1923
+ "type": "boolean",
1924
+ "default": "true"
1925
+ }
1926
+ ],
1927
+ "DD_TRACE_AWS_ADD_SPAN_POINTERS": [
1928
+ {
1929
+ "implementation": "A",
1930
+ "type": "boolean",
1931
+ "default": "true",
1932
+ "configurationNames": [
1933
+ "trace.aws.addSpanPointers"
1934
+ ]
1935
+ }
1936
+ ],
1937
+ "DD_TRACE_AWS_SDK_AWS_BATCH_PROPAGATION_ENABLED": [
1938
+ {
1939
+ "implementation": "A",
1940
+ "type": "boolean",
1941
+ "default": "true"
1942
+ }
1943
+ ],
1944
+ "DD_TRACE_AWS_SDK_AWS_ENABLED": [
1945
+ {
1946
+ "implementation": "A",
1947
+ "type": "boolean",
1948
+ "default": "true"
1949
+ }
1950
+ ],
1951
+ "DD_TRACE_AWS_SDK_BATCH_PROPAGATION_ENABLED": [
1952
+ {
1953
+ "implementation": "A",
1954
+ "type": "boolean",
1955
+ "default": "true"
1956
+ }
1957
+ ],
1958
+ "DD_TRACE_AWS_SDK_BEDROCKRUNTIME_BATCH_PROPAGATION_ENABLED": [
1959
+ {
1960
+ "implementation": "A",
1961
+ "type": "boolean",
1962
+ "default": "true"
1963
+ }
1964
+ ],
1965
+ "DD_TRACE_AWS_SDK_BEDROCKRUNTIME_ENABLED": [
1966
+ {
1967
+ "implementation": "A",
1968
+ "type": "boolean",
1969
+ "default": "true"
1970
+ }
1971
+ ],
1972
+ "DD_TRACE_AWS_SDK_CLOUDWATCHLOGS_BATCH_PROPAGATION_ENABLED": [
1973
+ {
1974
+ "implementation": "A",
1975
+ "type": "boolean",
1976
+ "default": "true"
1977
+ }
1978
+ ],
1979
+ "DD_TRACE_AWS_SDK_CLOUDWATCHLOGS_ENABLED": [
1980
+ {
1981
+ "implementation": "A",
1982
+ "type": "boolean",
1983
+ "default": "true"
1984
+ }
1985
+ ],
1986
+ "DD_TRACE_AWS_SDK_DYNAMODB_BATCH_PROPAGATION_ENABLED": [
1987
+ {
1988
+ "implementation": "A",
1989
+ "type": "boolean",
1990
+ "default": "true"
1991
+ }
1992
+ ],
1993
+ "DD_TRACE_AWS_SDK_DYNAMODB_ENABLED": [
1994
+ {
1995
+ "implementation": "A",
1996
+ "type": "boolean",
1997
+ "default": "true"
1998
+ }
1999
+ ],
2000
+ "DD_TRACE_AWS_SDK_ENABLED": [
2001
+ {
2002
+ "implementation": "B",
2003
+ "type": "boolean",
2004
+ "default": "true"
2005
+ }
2006
+ ],
2007
+ "DD_TRACE_AWS_SDK_EVENTBRIDGE_BATCH_PROPAGATION_ENABLED": [
2008
+ {
2009
+ "implementation": "A",
2010
+ "type": "boolean",
2011
+ "default": "true"
2012
+ }
2013
+ ],
2014
+ "DD_TRACE_AWS_SDK_EVENTBRIDGE_ENABLED": [
2015
+ {
2016
+ "implementation": "A",
2017
+ "type": "boolean",
2018
+ "default": "true"
2019
+ }
2020
+ ],
2021
+ "DD_TRACE_AWS_SDK_KINESIS_BATCH_PROPAGATION_ENABLED": [
2022
+ {
2023
+ "implementation": "A",
2024
+ "type": "boolean",
2025
+ "default": "true"
2026
+ }
2027
+ ],
2028
+ "DD_TRACE_AWS_SDK_KINESIS_ENABLED": [
2029
+ {
2030
+ "implementation": "A",
2031
+ "type": "boolean",
2032
+ "default": "true"
2033
+ }
2034
+ ],
2035
+ "DD_TRACE_AWS_SDK_LAMBDA_BATCH_PROPAGATION_ENABLED": [
2036
+ {
2037
+ "implementation": "A",
2038
+ "type": "boolean",
2039
+ "default": "true"
2040
+ }
2041
+ ],
2042
+ "DD_TRACE_AWS_SDK_LAMBDA_ENABLED": [
2043
+ {
2044
+ "implementation": "A",
2045
+ "type": "boolean",
2046
+ "default": "true"
2047
+ }
2048
+ ],
2049
+ "DD_TRACE_AWS_SDK_NODE_HTTP_HANDLER_ENABLED": [
2050
+ {
2051
+ "implementation": "A",
2052
+ "type": "boolean",
2053
+ "default": "true"
2054
+ }
2055
+ ],
2056
+ "DD_TRACE_AWS_SDK_REDSHIFT_BATCH_PROPAGATION_ENABLED": [
2057
+ {
2058
+ "implementation": "A",
2059
+ "type": "boolean",
2060
+ "default": "true"
2061
+ }
2062
+ ],
2063
+ "DD_TRACE_AWS_SDK_REDSHIFT_ENABLED": [
2064
+ {
2065
+ "implementation": "A",
2066
+ "type": "boolean",
2067
+ "default": "true"
2068
+ }
2069
+ ],
2070
+ "DD_TRACE_AWS_SDK_S3_BATCH_PROPAGATION_ENABLED": [
2071
+ {
2072
+ "implementation": "A",
2073
+ "type": "boolean",
2074
+ "default": "true"
2075
+ }
2076
+ ],
2077
+ "DD_TRACE_AWS_SDK_S3_ENABLED": [
2078
+ {
2079
+ "implementation": "A",
2080
+ "type": "boolean",
2081
+ "default": "true"
2082
+ }
2083
+ ],
2084
+ "DD_TRACE_AWS_SDK_SFN_BATCH_PROPAGATION_ENABLED": [
2085
+ {
2086
+ "implementation": "A",
2087
+ "type": "boolean",
2088
+ "default": "true"
2089
+ }
2090
+ ],
2091
+ "DD_TRACE_AWS_SDK_SFN_CLIENT_ENABLED": [
2092
+ {
2093
+ "implementation": "A",
2094
+ "type": "boolean",
2095
+ "default": "true"
2096
+ }
2097
+ ],
2098
+ "DD_TRACE_AWS_SDK_SFN_ENABLED": [
2099
+ {
2100
+ "implementation": "A",
2101
+ "type": "boolean",
2102
+ "default": "true"
2103
+ }
2104
+ ],
2105
+ "DD_TRACE_AWS_SDK_SMITHY_CLIENT_ENABLED": [
2106
+ {
2107
+ "implementation": "A",
2108
+ "type": "boolean",
2109
+ "default": "true"
2110
+ }
2111
+ ],
2112
+ "DD_TRACE_AWS_SDK_SNS_BATCH_PROPAGATION_ENABLED": [
2113
+ {
2114
+ "implementation": "A",
2115
+ "type": "boolean",
2116
+ "default": "true"
2117
+ }
2118
+ ],
2119
+ "DD_TRACE_AWS_SDK_SNS_ENABLED": [
2120
+ {
2121
+ "implementation": "A",
2122
+ "type": "boolean",
2123
+ "default": "true"
2124
+ }
2125
+ ],
2126
+ "DD_TRACE_AWS_SDK_SQS_BATCH_PROPAGATION_ENABLED": [
2127
+ {
2128
+ "implementation": "A",
2129
+ "type": "boolean",
2130
+ "default": "true"
2131
+ }
2132
+ ],
2133
+ "DD_TRACE_AWS_SDK_SQS_ENABLED": [
2134
+ {
2135
+ "implementation": "A",
2136
+ "type": "boolean",
2137
+ "default": "true"
2138
+ }
2139
+ ],
2140
+ "DD_TRACE_AWS_SDK_STATES_BATCH_PROPAGATION_ENABLED": [
2141
+ {
2142
+ "implementation": "A",
2143
+ "type": "boolean",
2144
+ "default": "true"
2145
+ }
2146
+ ],
2147
+ "DD_TRACE_AWS_SDK_STATES_ENABLED": [
2148
+ {
2149
+ "implementation": "A",
2150
+ "type": "boolean",
2151
+ "default": "true"
2152
+ }
2153
+ ],
2154
+ "DD_TRACE_AWS_SDK_STEPFUNCTIONS_BATCH_PROPAGATION_ENABLED": [
2155
+ {
2156
+ "implementation": "A",
2157
+ "type": "boolean",
2158
+ "default": "true"
2159
+ }
2160
+ ],
2161
+ "DD_TRACE_AWS_SDK_STEPFUNCTIONS_ENABLED": [
2162
+ {
2163
+ "implementation": "A",
2164
+ "type": "boolean",
2165
+ "default": "true"
2166
+ }
2167
+ ],
2168
+ "DD_TRACE_AXIOS_ENABLED": [
2169
+ {
2170
+ "implementation": "A",
2171
+ "type": "boolean",
2172
+ "default": "true"
2173
+ }
2174
+ ],
2175
+ "DD_TRACE_AZURE_EVENTHUBS_BATCH_LINKS_ENABLED": [
2176
+ {
2177
+ "implementation": "A",
2178
+ "type": "boolean",
2179
+ "default": "true"
2180
+ }
2181
+ ],
2182
+ "DD_TRACE_AZURE_EVENT_HUBS_ENABLED": [
2183
+ {
2184
+ "implementation": "A",
2185
+ "type": "boolean",
2186
+ "default": "true"
2187
+ }
2188
+ ],
2189
+ "DD_TRACE_AZURE_FUNCTIONS_ENABLED": [
2190
+ {
2191
+ "implementation": "B",
2192
+ "type": "boolean",
2193
+ "default": "true"
2194
+ }
2195
+ ],
2196
+ "DD_TRACE_AZURE_SERVICEBUS_BATCH_LINKS_ENABLED": [
2197
+ {
2198
+ "implementation": "A",
2199
+ "type": "boolean",
2200
+ "default": "true"
2201
+ }
2202
+ ],
2203
+ "DD_TRACE_AZURE_SERVICE_BUS_ENABLED": [
2204
+ {
2205
+ "implementation": "A",
2206
+ "type": "boolean",
2207
+ "default": "true"
2208
+ }
2209
+ ],
2210
+ "DD_TRACE_BAGGAGE_MAX_BYTES": [
2211
+ {
2212
+ "implementation": "A",
2213
+ "type": "int",
2214
+ "default": "8192",
2215
+ "configurationNames": [
2216
+ "baggageMaxBytes"
2217
+ ]
2218
+ }
2219
+ ],
2220
+ "DD_TRACE_BAGGAGE_MAX_ITEMS": [
2221
+ {
2222
+ "implementation": "A",
2223
+ "type": "int",
2224
+ "default": "64",
2225
+ "configurationNames": [
2226
+ "baggageMaxItems"
2227
+ ]
2228
+ }
2229
+ ],
2230
+ "DD_TRACE_BAGGAGE_TAG_KEYS": [
2231
+ {
2232
+ "implementation": "A",
2233
+ "type": "array",
2234
+ "default": "user.id, session.id, account.id",
2235
+ "configurationNames": [
2236
+ "baggageTagKeys"
2237
+ ]
2238
+ }
2239
+ ],
2240
+ "DD_TRACE_BEAUTIFUL_LOGS": [
2241
+ {
2242
+ "implementation": "A",
2243
+ "type": "boolean",
2244
+ "default": "false"
2245
+ }
2246
+ ],
2247
+ "DD_TRACE_BLUEBIRD_ENABLED": [
2248
+ {
2249
+ "implementation": "A",
2250
+ "type": "boolean",
2251
+ "default": "true"
2252
+ }
2253
+ ],
2254
+ "DD_TRACE_BODY_PARSER_ENABLED": [
2255
+ {
2256
+ "implementation": "A",
2257
+ "type": "boolean",
2258
+ "default": "true"
2259
+ }
2260
+ ],
2261
+ "DD_TRACE_BSON_ENABLED": [
2262
+ {
2263
+ "implementation": "A",
2264
+ "type": "boolean",
2265
+ "default": "true"
2266
+ }
2267
+ ],
2268
+ "DD_TRACE_BULLMQ_ENABLED": [
2269
+ {
2270
+ "implementation": "A",
2271
+ "type": "boolean",
2272
+ "default": "true"
2273
+ }
2274
+ ],
2275
+ "DD_TRACE_BUNYAN_ENABLED": [
2276
+ {
2277
+ "implementation": "A",
2278
+ "type": "boolean",
2279
+ "default": "true"
2280
+ }
2281
+ ],
2282
+ "DD_TRACE_CASSANDRA_DRIVER_ENABLED": [
2283
+ {
2284
+ "implementation": "A",
2285
+ "type": "boolean",
2286
+ "default": "true"
2287
+ }
2288
+ ],
2289
+ "DD_TRACE_CHILD_PROCESS_ENABLED": [
2290
+ {
2291
+ "implementation": "A",
2292
+ "type": "boolean",
2293
+ "default": "true"
2294
+ }
2295
+ ],
2296
+ "DD_TRACE_CLIENT_IP_ENABLED": [
2297
+ {
2298
+ "implementation": "A",
2299
+ "type": "boolean",
2300
+ "configurationNames": [
2301
+ "clientIpEnabled"
2302
+ ],
2303
+ "default": "false"
2304
+ }
2305
+ ],
2306
+ "DD_TRACE_CLIENT_IP_HEADER": [
2307
+ {
2308
+ "implementation": "B",
2309
+ "type": "string",
2310
+ "configurationNames": [
2311
+ "clientIpHeader"
2312
+ ],
2313
+ "default": null
2314
+ }
2315
+ ],
2316
+ "DD_TRACE_CLOUD_PAYLOAD_TAGGING_MAX_DEPTH": [
2317
+ {
2318
+ "implementation": "A",
2319
+ "type": "int",
2320
+ "configurationNames": [
2321
+ "cloudPayloadTagging.maxDepth"
2322
+ ],
2323
+ "default": "10"
2324
+ }
2325
+ ],
2326
+ "DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": [
2327
+ {
2328
+ "implementation": "A",
2329
+ "type": "array",
2330
+ "configurationNames": [
2331
+ "cloudPayloadTagging.request"
2332
+ ],
2333
+ "default": null
2334
+ }
2335
+ ],
2336
+ "DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": [
2337
+ {
2338
+ "implementation": "A",
2339
+ "type": "array",
2340
+ "configurationNames": [
2341
+ "cloudPayloadTagging.response"
2342
+ ],
2343
+ "default": null
2344
+ }
2345
+ ],
2346
+ "DD_TRACE_COLLECTIONS_ENABLED": [
2347
+ {
2348
+ "implementation": "A",
2349
+ "type": "boolean",
2350
+ "default": "true"
2351
+ }
2352
+ ],
2353
+ "DD_TRACE_COMMONPLUGIN_ENABLED": [
2354
+ {
2355
+ "implementation": "A",
2356
+ "type": "boolean",
2357
+ "default": "true"
2358
+ }
2359
+ ],
2360
+ "DD_TRACE_CONFLUENTINC_KAFKA_JAVASCRIPT_ENABLED": [
2361
+ {
2362
+ "implementation": "A",
2363
+ "type": "boolean",
2364
+ "default": "true"
2365
+ }
2366
+ ],
2367
+ "DD_TRACE_CONNECT_ENABLED": [
2368
+ {
2369
+ "implementation": "A",
2370
+ "type": "boolean",
2371
+ "default": "true"
2372
+ }
2373
+ ],
2374
+ "DD_TRACE_COOKIE_ENABLED": [
2375
+ {
2376
+ "implementation": "A",
2377
+ "type": "boolean",
2378
+ "default": "true"
2379
+ }
2380
+ ],
2381
+ "DD_TRACE_COOKIE_PARSER_ENABLED": [
2382
+ {
2383
+ "implementation": "A",
2384
+ "type": "boolean",
2385
+ "default": "true"
2386
+ }
2387
+ ],
2388
+ "DD_TRACE_COUCHBASE_ENABLED": [
2389
+ {
2390
+ "implementation": "B",
2391
+ "type": "boolean",
2392
+ "default": "true"
2393
+ }
2394
+ ],
2395
+ "DD_TRACE_CRYPTO_ENABLED": [
2396
+ {
2397
+ "implementation": "A",
2398
+ "type": "boolean",
2399
+ "default": "true"
2400
+ }
2401
+ ],
2402
+ "DD_TRACE_CUCUMBER_CUCUMBER_ENABLED": [
2403
+ {
2404
+ "implementation": "A",
2405
+ "type": "boolean",
2406
+ "default": "true"
2407
+ }
2408
+ ],
2409
+ "DD_TRACE_CUCUMBER_ENABLED": [
2410
+ {
2411
+ "implementation": "B",
2412
+ "type": "boolean",
2413
+ "default": "true"
2414
+ }
2415
+ ],
2416
+ "DD_TRACE_CYPRESS_ENABLED": [
2417
+ {
2418
+ "implementation": "A",
2419
+ "type": "boolean",
2420
+ "default": "true"
2421
+ }
2422
+ ],
2423
+ "DD_TRACE_DEBUG": [
2424
+ {
2425
+ "implementation": "B",
2426
+ "type": "boolean",
2427
+ "default": "false"
2428
+ }
2429
+ ],
2430
+ "DD_TRACE_DISABLED_INSTRUMENTATIONS": [
2431
+ {
2432
+ "implementation": "A",
2433
+ "type": "string",
2434
+ "default": ""
2435
+ }
2436
+ ],
2437
+ "DD_TRACE_DISABLED_PLUGINS": [
2438
+ {
2439
+ "implementation": "A",
2440
+ "type": "string",
2441
+ "default": null
2442
+ }
2443
+ ],
2444
+ "DD_TRACE_DNS_ENABLED": [
2445
+ {
2446
+ "implementation": "A",
2447
+ "type": "boolean",
2448
+ "default": "true"
2449
+ }
2450
+ ],
2451
+ "DD_TRACE_DYNAMODB_TABLE_PRIMARY_KEYS": [
2452
+ {
2453
+ "implementation": "A",
2454
+ "type": "string",
2455
+ "default": null,
2456
+ "configurationNames": [
2457
+ "trace.dynamoDb.tablePrimaryKeys"
2458
+ ]
2459
+ }
2460
+ ],
2461
+ "DD_TRACE_ELASTICSEARCH_ENABLED": [
2462
+ {
2463
+ "implementation": "A",
2464
+ "type": "boolean",
2465
+ "default": "true"
2466
+ }
2467
+ ],
2468
+ "DD_TRACE_ELASTIC_ELASTICSEARCH_ENABLED": [
2469
+ {
2470
+ "implementation": "A",
2471
+ "type": "boolean",
2472
+ "default": "true"
2473
+ }
2474
+ ],
2475
+ "DD_TRACE_ELASTIC_TRANSPORT_ENABLED": [
2476
+ {
2477
+ "implementation": "A",
2478
+ "type": "boolean",
2479
+ "default": "true"
2480
+ }
2481
+ ],
2482
+ "DD_TRACE_ENABLED": [
2483
+ {
2484
+ "implementation": "A",
2485
+ "type": "boolean",
2486
+ "default": "true",
2487
+ "configurationNames": [
2488
+ "traceEnabled"
2489
+ ]
2490
+ }
2491
+ ],
2492
+ "DD_TRACE_ENCODING_DEBUG": [
2493
+ {
2494
+ "implementation": "A",
2495
+ "type": "boolean",
2496
+ "default": "false"
2497
+ }
2498
+ ],
2499
+ "DD_TRACE_EXPERIMENTAL_B3_ENABLED": [
2500
+ {
2501
+ "implementation": "A",
2502
+ "type": "boolean",
2503
+ "configurationNames": [
2504
+ "experimental.b3"
2505
+ ],
2506
+ "default": "false"
2507
+ }
2508
+ ],
2509
+ "DD_TRACE_EXPERIMENTAL_EXPORTER": [
2510
+ {
2511
+ "implementation": "A",
2512
+ "type": "string",
2513
+ "configurationNames": [
2514
+ "experimental.exporter"
2515
+ ],
2516
+ "default": ""
2517
+ }
2518
+ ],
2519
+ "DD_TRACE_EXPERIMENTAL_GET_RUM_DATA_ENABLED": [
2520
+ {
2521
+ "implementation": "A",
2522
+ "type": "boolean",
2523
+ "configurationNames": [
2524
+ "experimental.enableGetRumData"
2525
+ ],
2526
+ "default": "false"
2527
+ }
2528
+ ],
2529
+ "DD_TRACE_EXPERIMENTAL_SPAN_COUNTS": [
2530
+ {
2531
+ "implementation": "A",
2532
+ "type": "boolean",
2533
+ "default": "false"
2534
+ }
2535
+ ],
2536
+ "DD_TRACE_EXPERIMENTAL_STATE_TRACKING": [
2537
+ {
2538
+ "implementation": "A",
2539
+ "type": "boolean",
2540
+ "default": "false"
2541
+ }
2542
+ ],
2543
+ "DD_TRACE_EXPRESS_ENABLED": [
2544
+ {
2545
+ "implementation": "A",
2546
+ "type": "boolean",
2547
+ "default": "true"
2548
+ }
2549
+ ],
2550
+ "DD_TRACE_EXPRESS_MONGO_SANITIZE_ENABLED": [
2551
+ {
2552
+ "implementation": "A",
2553
+ "type": "boolean",
2554
+ "default": "true"
2555
+ }
2556
+ ],
2557
+ "DD_TRACE_EXPRESS_SESSION_ENABLED": [
2558
+ {
2559
+ "implementation": "A",
2560
+ "type": "boolean",
2561
+ "default": "true"
2562
+ }
2563
+ ],
2564
+ "DD_TRACE_FASTIFY_ENABLED": [
2565
+ {
2566
+ "implementation": "A",
2567
+ "type": "boolean",
2568
+ "default": "true"
2569
+ }
2570
+ ],
2571
+ "DD_TRACE_FETCH_ENABLED": [
2572
+ {
2573
+ "implementation": "A",
2574
+ "type": "boolean",
2575
+ "default": "true"
2576
+ }
2577
+ ],
2578
+ "DD_TRACE_FIND_MY_WAY_ENABLED": [
2579
+ {
2580
+ "implementation": "A",
2581
+ "type": "boolean",
2582
+ "default": "true"
2583
+ }
2584
+ ],
2585
+ "DD_TRACE_FLUSH_INTERVAL": [
2586
+ {
2587
+ "implementation": "B",
2588
+ "type": "int",
2589
+ "configurationNames": [
2590
+ "flushInterval"
2591
+ ],
2592
+ "default": "2000"
2593
+ }
2594
+ ],
2595
+ "DD_TRACE_FS_ENABLED": [
2596
+ {
2597
+ "implementation": "A",
2598
+ "type": "boolean",
2599
+ "default": "true"
2600
+ }
2601
+ ],
2602
+ "DD_TRACE_GCP_PUBSUB_PUSH_ENABLED": [
2603
+ {
2604
+ "implementation": "A",
2605
+ "type": "boolean",
2606
+ "default": "true",
2607
+ "configurationNames": [
2608
+ "isGCPPubSubPushSubscriptionEnabled"
2609
+ ]
2610
+ }
2611
+ ],
2612
+ "DD_TRACE_GENERIC_POOL_ENABLED": [
2613
+ {
2614
+ "implementation": "A",
2615
+ "type": "boolean",
2616
+ "default": "true"
2617
+ }
2618
+ ],
2619
+ "DD_TRACE_GIT_METADATA_ENABLED": [
2620
+ {
2621
+ "implementation": "A",
2622
+ "type": "boolean",
2623
+ "default": "true",
2624
+ "configurationNames": [
2625
+ "gitMetadataEnabled"
2626
+ ]
2627
+ }
2628
+ ],
2629
+ "DD_TRACE_GOOGLE_CLOUD_PUBSUB_ENABLED": [
2630
+ {
2631
+ "implementation": "A",
2632
+ "type": "boolean",
2633
+ "default": "true"
2634
+ }
2635
+ ],
2636
+ "DD_TRACE_GOOGLE_CLOUD_VERTEXAI_ENABLED": [
2637
+ {
2638
+ "implementation": "A",
2639
+ "type": "boolean",
2640
+ "default": "true"
2641
+ }
2642
+ ],
2643
+ "DD_TRACE_GOOGLE_GAX_ENABLED": [
2644
+ {
2645
+ "implementation": "A",
2646
+ "type": "boolean",
2647
+ "default": "true"
2648
+ }
2649
+ ],
2650
+ "DD_TRACE_GOOGLE_GENAI_ENABLED": [
2651
+ {
2652
+ "implementation": "A",
2653
+ "type": "boolean",
2654
+ "default": "true"
2655
+ }
2656
+ ],
2657
+ "DD_TRACE_GRAPHQL_ENABLED": [
2658
+ {
2659
+ "implementation": "A",
2660
+ "type": "boolean",
2661
+ "default": "true"
2662
+ }
2663
+ ],
2664
+ "DD_TRACE_GRAPHQL_ERROR_EXTENSIONS": [
2665
+ {
2666
+ "implementation": "A",
2667
+ "type": "array",
2668
+ "default": "",
2669
+ "configurationNames": [
2670
+ "graphqlErrorExtensions"
2671
+ ]
2672
+ }
2673
+ ],
2674
+ "DD_TRACE_GRAPHQL_TAG_ENABLED": [
2675
+ {
2676
+ "implementation": "A",
2677
+ "type": "boolean",
2678
+ "default": "true"
2679
+ }
2680
+ ],
2681
+ "DD_TRACE_GRAPHQL_TOOLS_ENABLED": [
2682
+ {
2683
+ "implementation": "A",
2684
+ "type": "boolean",
2685
+ "default": "true"
2686
+ }
2687
+ ],
2688
+ "DD_TRACE_GRAPHQL_TOOLS_EXECUTOR_ENABLED": [
2689
+ {
2690
+ "implementation": "A",
2691
+ "type": "boolean",
2692
+ "default": "true"
2693
+ }
2694
+ ],
2695
+ "DD_TRACE_GRAPHQL_YOGA_ENABLED": [
2696
+ {
2697
+ "implementation": "A",
2698
+ "type": "boolean",
2699
+ "default": "true"
2700
+ }
2701
+ ],
2702
+ "DD_TRACE_GRPC_ENABLED": [
2703
+ {
2704
+ "implementation": "A",
2705
+ "type": "boolean",
2706
+ "default": "true"
2707
+ }
2708
+ ],
2709
+ "DD_TRACE_GRPC_GRPC_JS_ENABLED": [
2710
+ {
2711
+ "implementation": "A",
2712
+ "type": "boolean",
2713
+ "default": "true"
2714
+ }
2715
+ ],
2716
+ "DD_TRACE_GRPC_PROTO_LOADER_ENABLED": [
2717
+ {
2718
+ "implementation": "A",
2719
+ "type": "boolean",
2720
+ "default": "true"
2721
+ }
2722
+ ],
2723
+ "DD_TRACE_HANDLEBARS_ENABLED": [
2724
+ {
2725
+ "implementation": "A",
2726
+ "type": "boolean",
2727
+ "default": "true"
2728
+ }
2729
+ ],
2730
+ "DD_TRACE_HAPI_BOOM_ENABLED": [
2731
+ {
2732
+ "implementation": "A",
2733
+ "type": "boolean",
2734
+ "default": "true"
2735
+ }
2736
+ ],
2737
+ "DD_TRACE_HAPI_ENABLED": [
2738
+ {
2739
+ "implementation": "A",
2740
+ "type": "boolean",
2741
+ "default": "true"
2742
+ }
2743
+ ],
2744
+ "DD_TRACE_HAPI_HAPI_ENABLED": [
2745
+ {
2746
+ "implementation": "A",
2747
+ "type": "boolean",
2748
+ "default": "true"
2749
+ }
2750
+ ],
2751
+ "DD_TRACE_HEADER_TAGS": [
2752
+ {
2753
+ "implementation": "A",
2754
+ "type": "array",
2755
+ "default": "",
2756
+ "configurationNames": [
2757
+ "headerTags"
2758
+ ]
2759
+ }
2760
+ ],
2761
+ "DD_TRACE_HONO_ENABLED": [
2762
+ {
2763
+ "implementation": "A",
2764
+ "type": "boolean",
2765
+ "default": "true"
2766
+ }
2767
+ ],
2768
+ "DD_TRACE_HTTP2_ENABLED": [
2769
+ {
2770
+ "implementation": "A",
2771
+ "type": "boolean",
2772
+ "default": "true"
2773
+ }
2774
+ ],
2775
+ "DD_TRACE_HTTPS_ENABLED": [
2776
+ {
2777
+ "implementation": "A",
2778
+ "type": "boolean",
2779
+ "default": "true"
2780
+ }
2781
+ ],
2782
+ "DD_TRACE_HTTP_ENABLED": [
2783
+ {
2784
+ "implementation": "A",
2785
+ "type": "boolean",
2786
+ "default": "true"
2787
+ }
2788
+ ],
2789
+ "DD_TRACE_INFERRED_PROXY_SERVICES_ENABLED": [
2790
+ {
2791
+ "implementation": "A",
2792
+ "type": "boolean",
2793
+ "default": "false",
2794
+ "configurationNames": [
2795
+ "inferredProxyServicesEnabled"
2796
+ ]
2797
+ }
2798
+ ],
2799
+ "DD_TRACE_IOREDIS_ENABLED": [
2800
+ {
2801
+ "implementation": "A",
2802
+ "type": "boolean",
2803
+ "default": "true"
2804
+ }
2805
+ ],
2806
+ "DD_TRACE_IOVALKEY_ENABLED": [
2807
+ {
2808
+ "implementation": "A",
2809
+ "type": "boolean",
2810
+ "default": "true"
2811
+ }
2812
+ ],
2813
+ "DD_TRACE_JEST_CIRCUS_ENABLED": [
2814
+ {
2815
+ "implementation": "A",
2816
+ "type": "boolean",
2817
+ "default": "true"
2818
+ }
2819
+ ],
2820
+ "DD_TRACE_JEST_CONFIG_ENABLED": [
2821
+ {
2822
+ "implementation": "A",
2823
+ "type": "boolean",
2824
+ "default": "true"
2825
+ }
2826
+ ],
2827
+ "DD_TRACE_JEST_CORE_ENABLED": [
2828
+ {
2829
+ "implementation": "A",
2830
+ "type": "boolean",
2831
+ "default": "true"
2832
+ }
2833
+ ],
2834
+ "DD_TRACE_JEST_ENABLED": [
2835
+ {
2836
+ "implementation": "A",
2837
+ "type": "boolean",
2838
+ "default": "true"
2839
+ }
2840
+ ],
2841
+ "DD_TRACE_JEST_ENVIRONMENT_JSDOM_ENABLED": [
2842
+ {
2843
+ "implementation": "A",
2844
+ "type": "boolean",
2845
+ "default": "true"
2846
+ }
2847
+ ],
2848
+ "DD_TRACE_JEST_ENVIRONMENT_NODE_ENABLED": [
2849
+ {
2850
+ "implementation": "A",
2851
+ "type": "boolean",
2852
+ "default": "true"
2853
+ }
2854
+ ],
2855
+ "DD_TRACE_JEST_GLOBALS_ENABLED": [
2856
+ {
2857
+ "implementation": "A",
2858
+ "type": "boolean",
2859
+ "default": "true"
2860
+ }
2861
+ ],
2862
+ "DD_TRACE_JEST_REPORTERS_ENABLED": [
2863
+ {
2864
+ "implementation": "A",
2865
+ "type": "boolean",
2866
+ "default": "true"
2867
+ }
2868
+ ],
2869
+ "DD_TRACE_JEST_RUNTIME_ENABLED": [
2870
+ {
2871
+ "implementation": "A",
2872
+ "type": "boolean",
2873
+ "default": "true"
2874
+ }
2875
+ ],
2876
+ "DD_TRACE_JEST_TEST_SEQUENCER_ENABLED": [
2877
+ {
2878
+ "implementation": "A",
2879
+ "type": "boolean",
2880
+ "default": "true"
2881
+ }
2882
+ ],
2883
+ "DD_TRACE_JEST_TRANSFORM_ENABLED": [
2884
+ {
2885
+ "implementation": "A",
2886
+ "type": "boolean",
2887
+ "default": "true"
2888
+ }
2889
+ ],
2890
+ "DD_TRACE_JEST_WORKER_ENABLED": [
2891
+ {
2892
+ "implementation": "A",
2893
+ "type": "boolean",
2894
+ "default": "true"
2895
+ }
2896
+ ],
2897
+ "DD_TRACE_KAFKAJS_ENABLED": [
2898
+ {
2899
+ "implementation": "A",
2900
+ "type": "boolean",
2901
+ "default": "true"
2902
+ }
2903
+ ],
2904
+ "DD_TRACE_KNEX_ENABLED": [
2905
+ {
2906
+ "implementation": "A",
2907
+ "type": "boolean",
2908
+ "default": "true"
2909
+ }
2910
+ ],
2911
+ "DD_TRACE_KOA_ENABLED": [
2912
+ {
2913
+ "implementation": "A",
2914
+ "type": "boolean",
2915
+ "default": "true"
2916
+ }
2917
+ ],
2918
+ "DD_TRACE_KOA_ROUTER_ENABLED": [
2919
+ {
2920
+ "implementation": "A",
2921
+ "type": "boolean",
2922
+ "default": "true"
2923
+ }
2924
+ ],
2925
+ "DD_TRACE_KOA_ROUTE_ENABLED": [
2926
+ {
2927
+ "implementation": "A",
2928
+ "type": "boolean",
2929
+ "default": "true"
2930
+ }
2931
+ ],
2932
+ "DD_TRACE_KOA_WEBSOCKET_ENABLED": [
2933
+ {
2934
+ "implementation": "A",
2935
+ "type": "boolean",
2936
+ "default": "true"
2937
+ }
2938
+ ],
2939
+ "DD_TRACE_LANGCHAIN_ANTHROPIC_ENABLED": [
2940
+ {
2941
+ "implementation": "A",
2942
+ "type": "boolean",
2943
+ "default": "true"
2944
+ }
2945
+ ],
2946
+ "DD_TRACE_LANGCHAIN_COHERE_ENABLED": [
2947
+ {
2948
+ "implementation": "A",
2949
+ "type": "boolean",
2950
+ "default": "true"
2951
+ }
2952
+ ],
2953
+ "DD_TRACE_LANGCHAIN_CORE_ENABLED": [
2954
+ {
2955
+ "implementation": "A",
2956
+ "type": "boolean",
2957
+ "default": "true"
2958
+ }
2959
+ ],
2960
+ "DD_TRACE_LANGCHAIN_ENABLED": [
2961
+ {
2962
+ "implementation": "A",
2963
+ "type": "boolean",
2964
+ "default": "true"
2965
+ }
2966
+ ],
2967
+ "DD_TRACE_LANGCHAIN_GOOGLE_GENAI_ENABLED": [
2968
+ {
2969
+ "implementation": "A",
2970
+ "type": "boolean",
2971
+ "default": "true"
2972
+ }
2973
+ ],
2974
+ "DD_TRACE_LANGCHAIN_OPENAI_ENABLED": [
2975
+ {
2976
+ "implementation": "A",
2977
+ "type": "boolean",
2978
+ "default": "true"
2979
+ }
2980
+ ],
2981
+ "DD_TRACE_LDAPJS_ENABLED": [
2982
+ {
2983
+ "implementation": "A",
2984
+ "type": "boolean",
2985
+ "default": "true"
2986
+ }
2987
+ ],
2988
+ "DD_TRACE_LDAPJS_PROMISE_ENABLED": [
2989
+ {
2990
+ "implementation": "A",
2991
+ "type": "boolean",
2992
+ "default": "true"
2993
+ }
2994
+ ],
2995
+ "DD_TRACE_LEGACY_BAGGAGE_ENABLED": [
2996
+ {
2997
+ "implementation": "A",
2998
+ "type": "boolean",
2999
+ "default": "true",
3000
+ "configurationNames": [
3001
+ "legacyBaggageEnabled"
3002
+ ]
3003
+ }
3004
+ ],
3005
+ "DD_TRACE_LIMITD_CLIENT_ENABLED": [
3006
+ {
3007
+ "implementation": "A",
3008
+ "type": "boolean",
3009
+ "default": "true"
3010
+ }
3011
+ ],
3012
+ "DD_TRACE_LODASH_ENABLED": [
3013
+ {
3014
+ "implementation": "A",
3015
+ "type": "boolean",
3016
+ "default": "true"
3017
+ }
3018
+ ],
3019
+ "DD_TRACE_LOG_LEVEL": [
3020
+ {
3021
+ "implementation": "C",
3022
+ "type": "string",
3023
+ "default": "debug"
3024
+ }
3025
+ ],
3026
+ "DD_TRACE_LOOPBACK_ENABLED": [
3027
+ {
3028
+ "implementation": "A",
3029
+ "type": "boolean",
3030
+ "default": "true"
3031
+ }
3032
+ ],
3033
+ "DD_TRACE_MARIADB_ENABLED": [
3034
+ {
3035
+ "implementation": "A",
3036
+ "type": "boolean",
3037
+ "default": "true"
3038
+ }
3039
+ ],
3040
+ "DD_TRACE_MEMCACHED_COMMAND_ENABLED": [
3041
+ {
3042
+ "implementation": "A",
3043
+ "type": "boolean",
3044
+ "default": "false",
3045
+ "configurationNames": [
3046
+ "memcachedCommandEnabled"
3047
+ ]
3048
+ }
3049
+ ],
3050
+ "DD_TRACE_MEMCACHED_ENABLED": [
3051
+ {
3052
+ "implementation": "A",
3053
+ "type": "boolean",
3054
+ "default": "true"
3055
+ }
3056
+ ],
3057
+ "DD_TRACE_MICROGATEWAY_CORE_ENABLED": [
3058
+ {
3059
+ "implementation": "A",
3060
+ "type": "boolean",
3061
+ "default": "true"
3062
+ }
3063
+ ],
3064
+ "DD_TRACE_MIDDIE_ENABLED": [
3065
+ {
3066
+ "implementation": "A",
3067
+ "type": "boolean",
3068
+ "default": "true"
3069
+ }
3070
+ ],
3071
+ "DD_TRACE_MIDDLEWARE_TRACING_ENABLED": [
3072
+ {
3073
+ "implementation": "A",
3074
+ "type": "boolean",
3075
+ "default": "true",
3076
+ "configurationNames": [
3077
+ "middlewareTracingEnabled"
3078
+ ]
3079
+ }
3080
+ ],
3081
+ "DD_TRACE_MOCHA_EACH_ENABLED": [
3082
+ {
3083
+ "implementation": "A",
3084
+ "type": "boolean",
3085
+ "default": "true"
3086
+ }
3087
+ ],
3088
+ "DD_TRACE_MOCHA_ENABLED": [
3089
+ {
3090
+ "implementation": "A",
3091
+ "type": "boolean",
3092
+ "default": "true"
3093
+ }
3094
+ ],
3095
+ "DD_TRACE_MOLECULER_ENABLED": [
3096
+ {
3097
+ "implementation": "A",
3098
+ "type": "boolean",
3099
+ "default": "true"
3100
+ }
3101
+ ],
3102
+ "DD_TRACE_MONGODB_CORE_ENABLED": [
3103
+ {
3104
+ "implementation": "A",
3105
+ "type": "boolean",
3106
+ "default": "true"
3107
+ }
3108
+ ],
3109
+ "DD_TRACE_MONGODB_ENABLED": [
3110
+ {
3111
+ "implementation": "A",
3112
+ "type": "boolean",
3113
+ "default": "true"
3114
+ }
3115
+ ],
3116
+ "DD_TRACE_MONGODB_HEARTBEAT_ENABLED": [
3117
+ {
3118
+ "implementation": "A",
3119
+ "type": "boolean",
3120
+ "default": "true"
3121
+ }
3122
+ ],
3123
+ "DD_TRACE_MONGOOSE_ENABLED": [
3124
+ {
3125
+ "implementation": "A",
3126
+ "type": "boolean",
3127
+ "default": "true"
3128
+ }
3129
+ ],
3130
+ "DD_TRACE_MQUERY_ENABLED": [
3131
+ {
3132
+ "implementation": "A",
3133
+ "type": "boolean",
3134
+ "default": "true"
3135
+ }
3136
+ ],
3137
+ "DD_TRACE_MULTER_ENABLED": [
3138
+ {
3139
+ "implementation": "A",
3140
+ "type": "boolean",
3141
+ "default": "true"
3142
+ }
3143
+ ],
3144
+ "DD_TRACE_MYSQL2_ENABLED": [
3145
+ {
3146
+ "implementation": "A",
3147
+ "type": "boolean",
3148
+ "default": "true"
3149
+ }
3150
+ ],
3151
+ "DD_TRACE_MYSQL_ENABLED": [
3152
+ {
3153
+ "implementation": "A",
3154
+ "type": "boolean",
3155
+ "default": "true"
3156
+ }
3157
+ ],
3158
+ "DD_TRACE_NATIVE_SPAN_EVENTS": [
3159
+ {
3160
+ "implementation": "A",
3161
+ "type": "boolean",
3162
+ "default": "false",
3163
+ "configurationNames": [
3164
+ "trace.nativeSpanEvents"
3165
+ ]
3166
+ }
3167
+ ],
3168
+ "DD_TRACE_NET_ENABLED": [
3169
+ {
3170
+ "implementation": "A",
3171
+ "type": "boolean",
3172
+ "default": "true"
3173
+ }
3174
+ ],
3175
+ "DD_TRACE_NEXT_ENABLED": [
3176
+ {
3177
+ "implementation": "A",
3178
+ "type": "boolean",
3179
+ "default": "true"
3180
+ }
3181
+ ],
3182
+ "DD_TRACE_NODE_CHILD_PROCESS_ENABLED": [
3183
+ {
3184
+ "implementation": "A",
3185
+ "type": "boolean",
3186
+ "default": "true"
3187
+ }
3188
+ ],
3189
+ "DD_TRACE_NODE_REDIS_CLIENT_ENABLED": [
3190
+ {
3191
+ "implementation": "A",
3192
+ "type": "boolean",
3193
+ "default": "true"
3194
+ }
3195
+ ],
3196
+ "DD_TRACE_NODE_SERIALIZE_ENABLED": [
3197
+ {
3198
+ "implementation": "A",
3199
+ "type": "boolean",
3200
+ "default": "true"
3201
+ }
3202
+ ],
3203
+ "DD_TRACE_NYC_ENABLED": [
3204
+ {
3205
+ "implementation": "A",
3206
+ "type": "boolean",
3207
+ "default": "true"
3208
+ }
3209
+ ],
3210
+ "DD_TRACE_OBFUSCATION_QUERY_STRING_REGEXP": [
3211
+ {
3212
+ "implementation": "F",
3213
+ "type": "string",
3214
+ "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,}",
3215
+ "configurationNames": [
3216
+ "queryStringObfuscation"
3217
+ ]
3218
+ }
3219
+ ],
3220
+ "DD_TRACE_OPENAI_ENABLED": [
3221
+ {
3222
+ "implementation": "A",
3223
+ "type": "boolean",
3224
+ "default": "true"
3225
+ }
3226
+ ],
3227
+ "DD_TRACE_OPENSEARCH_ENABLED": [
3228
+ {
3229
+ "implementation": "A",
3230
+ "type": "boolean",
3231
+ "default": "true"
3232
+ }
3233
+ ],
3234
+ "DD_TRACE_OPENSEARCH_PROJECT_OPENSEARCH_ENABLED": [
3235
+ {
3236
+ "implementation": "A",
3237
+ "type": "boolean",
3238
+ "default": "true"
3239
+ }
3240
+ ],
3241
+ "DD_TRACE_OPENTELEMETRY_SDK_TRACE_NODE_ENABLED": [
3242
+ {
3243
+ "implementation": "A",
3244
+ "type": "boolean",
3245
+ "default": "true"
3246
+ }
3247
+ ],
3248
+ "DD_TRACE_ORACLEDB_ENABLED": [
3249
+ {
3250
+ "implementation": "A",
3251
+ "type": "boolean",
3252
+ "default": "true"
3253
+ }
3254
+ ],
3255
+ "DD_TRACE_OTEL_ENABLED": [
3256
+ {
3257
+ "implementation": "A",
3258
+ "type": "boolean",
3259
+ "default": "false"
3260
+ }
3261
+ ],
3262
+ "DD_TRACE_PARTIAL_FLUSH_MIN_SPANS": [
3263
+ {
3264
+ "implementation": "B",
3265
+ "type": "int",
3266
+ "configurationNames": [
3267
+ "flushMinSpans"
3268
+ ],
3269
+ "default": "1000"
3270
+ }
3271
+ ],
3272
+ "DD_TRACE_PASSPORT_ENABLED": [
3273
+ {
3274
+ "implementation": "A",
3275
+ "type": "boolean",
3276
+ "default": "true"
3277
+ }
3278
+ ],
3279
+ "DD_TRACE_PASSPORT_HTTP_ENABLED": [
3280
+ {
3281
+ "implementation": "A",
3282
+ "type": "boolean",
3283
+ "default": "true"
3284
+ }
3285
+ ],
3286
+ "DD_TRACE_PASSPORT_LOCAL_ENABLED": [
3287
+ {
3288
+ "implementation": "A",
3289
+ "type": "boolean",
3290
+ "default": "true"
3291
+ }
3292
+ ],
3293
+ "DD_TRACE_PEER_SERVICE_DEFAULTS_ENABLED": [
3294
+ {
3295
+ "implementation": "A",
3296
+ "type": "boolean",
3297
+ "configurationNames": [
3298
+ "spanComputePeerService"
3299
+ ],
3300
+ "default": "false"
3301
+ }
3302
+ ],
3303
+ "DD_TRACE_PEER_SERVICE_MAPPING": [
3304
+ {
3305
+ "implementation": "A",
3306
+ "type": "map",
3307
+ "configurationNames": [
3308
+ "peerServiceMapping"
3309
+ ],
3310
+ "default": ""
3311
+ }
3312
+ ],
3313
+ "DD_TRACE_PG_CURSOR_ENABLED": [
3314
+ {
3315
+ "implementation": "A",
3316
+ "type": "boolean",
3317
+ "default": "true"
3318
+ }
3319
+ ],
3320
+ "DD_TRACE_PG_ENABLED": [
3321
+ {
3322
+ "implementation": "A",
3323
+ "type": "boolean",
3324
+ "default": "true"
3325
+ }
3326
+ ],
3327
+ "DD_TRACE_PG_NATIVE_ENABLED": [
3328
+ {
3329
+ "implementation": "A",
3330
+ "type": "boolean",
3331
+ "default": "true"
3332
+ }
3333
+ ],
3334
+ "DD_TRACE_PG_QUERY_STREAM_ENABLED": [
3335
+ {
3336
+ "implementation": "A",
3337
+ "type": "boolean",
3338
+ "default": "true"
3339
+ }
3340
+ ],
3341
+ "DD_TRACE_PINO_ENABLED": [
3342
+ {
3343
+ "implementation": "A",
3344
+ "type": "boolean",
3345
+ "default": "true"
3346
+ }
3347
+ ],
3348
+ "DD_TRACE_PINO_PRETTY_ENABLED": [
3349
+ {
3350
+ "implementation": "A",
3351
+ "type": "boolean",
3352
+ "default": "true"
3353
+ }
3354
+ ],
3355
+ "DD_TRACE_PLAYWRIGHT_CORE_ENABLED": [
3356
+ {
3357
+ "implementation": "A",
3358
+ "type": "boolean",
3359
+ "default": "true"
3360
+ }
3361
+ ],
3362
+ "DD_TRACE_PLAYWRIGHT_ENABLED": [
3363
+ {
3364
+ "implementation": "A",
3365
+ "type": "boolean",
3366
+ "default": "true"
3367
+ }
3368
+ ],
3369
+ "DD_TRACE_PLAYWRIGHT_TEST_ENABLED": [
3370
+ {
3371
+ "implementation": "A",
3372
+ "type": "boolean",
3373
+ "default": "true"
3374
+ }
3375
+ ],
3376
+ "DD_TRACE_PRISMA_ENABLED": [
3377
+ {
3378
+ "implementation": "A",
3379
+ "type": "boolean",
3380
+ "default": "true"
3381
+ }
3382
+ ],
3383
+ "DD_TRACE_PROCESS_ENABLED": [
3384
+ {
3385
+ "implementation": "A",
3386
+ "type": "boolean",
3387
+ "default": "true"
3388
+ }
3389
+ ],
3390
+ "DD_TRACE_PROMISE_ENABLED": [
3391
+ {
3392
+ "implementation": "A",
3393
+ "type": "boolean",
3394
+ "default": "true"
3395
+ }
3396
+ ],
3397
+ "DD_TRACE_PROMISE_JS_ENABLED": [
3398
+ {
3399
+ "implementation": "A",
3400
+ "type": "boolean",
3401
+ "default": "true"
3402
+ }
3403
+ ],
3404
+ "DD_TRACE_PROPAGATION_BEHAVIOR_EXTRACT": [
3405
+ {
3406
+ "implementation": "B",
3407
+ "type": "string",
3408
+ "default": "continue",
3409
+ "configurationNames": [
3410
+ "tracePropagationBehaviorExtract"
3411
+ ]
3412
+ }
3413
+ ],
3414
+ "DD_TRACE_PROPAGATION_EXTRACT_FIRST": [
3415
+ {
3416
+ "implementation": "A",
3417
+ "type": "boolean",
3418
+ "default": "false",
3419
+ "configurationNames": [
3420
+ "tracePropagationExtractFirst"
3421
+ ]
3422
+ }
3423
+ ],
3424
+ "DD_TRACE_PROPAGATION_STYLE": [
3425
+ {
3426
+ "implementation": "D",
3427
+ "type": "array",
3428
+ "configurationNames": [
3429
+ "tracePropagationStyle"
3430
+ ],
3431
+ "default": "datadog,tracecontext,baggage"
3432
+ }
3433
+ ],
3434
+ "DD_TRACE_PROPAGATION_STYLE_EXTRACT": [
3435
+ {
3436
+ "implementation": "B",
3437
+ "type": "array",
3438
+ "configurationNames": [
3439
+ "tracePropagationStyle.extract"
3440
+ ],
3441
+ "default": "datadog, tracecontext, baggage"
3442
+ }
3443
+ ],
3444
+ "DD_TRACE_PROPAGATION_STYLE_INJECT": [
3445
+ {
3446
+ "implementation": "B",
3447
+ "type": "array",
3448
+ "configurationNames": [
3449
+ "tracePropagationStyle.inject"
3450
+ ],
3451
+ "default": "datadog, tracecontext, baggage"
3452
+ }
3453
+ ],
3454
+ "DD_TRACE_PROTOBUFJS_ENABLED": [
3455
+ {
3456
+ "implementation": "A",
3457
+ "type": "boolean",
3458
+ "default": "true"
3459
+ }
3460
+ ],
3461
+ "DD_TRACE_PUG_ENABLED": [
3462
+ {
3463
+ "implementation": "A",
3464
+ "type": "boolean",
3465
+ "default": "true"
3466
+ }
3467
+ ],
3468
+ "DD_TRACE_Q_ENABLED": [
3469
+ {
3470
+ "implementation": "A",
3471
+ "type": "boolean",
3472
+ "default": "true"
3473
+ }
3474
+ ],
3475
+ "DD_TRACE_RATE_LIMIT": [
3476
+ {
3477
+ "implementation": "A",
3478
+ "type": "int",
3479
+ "configurationNames": [
3480
+ "ingestion.rateLimit",
3481
+ "sampler.rateLimit"
3482
+ ],
3483
+ "default": "100"
3484
+ }
3485
+ ],
3486
+ "DD_TRACE_REACT_DOM_ENABLED": [
3487
+ {
3488
+ "implementation": "A",
3489
+ "type": "boolean",
3490
+ "default": "true"
3491
+ }
3492
+ ],
3493
+ "DD_TRACE_REACT_ENABLED": [
3494
+ {
3495
+ "implementation": "A",
3496
+ "type": "boolean",
3497
+ "default": "true"
3498
+ }
3499
+ ],
3500
+ "DD_TRACE_REDIS_CLIENT_ENABLED": [
3501
+ {
3502
+ "implementation": "A",
3503
+ "type": "boolean",
3504
+ "default": "true"
3505
+ }
3506
+ ],
3507
+ "DD_TRACE_REDIS_ENABLED": [
3508
+ {
3509
+ "implementation": "A",
3510
+ "type": "boolean",
3511
+ "default": "true"
3512
+ }
3513
+ ],
3514
+ "DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED": [
3515
+ {
3516
+ "implementation": "A",
3517
+ "type": "boolean",
3518
+ "default": "false",
3519
+ "configurationNames": [
3520
+ "spanRemoveIntegrationFromService"
3521
+ ]
3522
+ }
3523
+ ],
3524
+ "DD_TRACE_REPORT_HOSTNAME": [
3525
+ {
3526
+ "implementation": "A",
3527
+ "type": "boolean",
3528
+ "configurationNames": [
3529
+ "reportHostname"
3530
+ ],
3531
+ "default": "false"
3532
+ }
3533
+ ],
3534
+ "DD_TRACE_REQUEST_ENABLED": [
3535
+ {
3536
+ "implementation": "A",
3537
+ "type": "boolean",
3538
+ "default": "true"
3539
+ }
3540
+ ],
3541
+ "DD_TRACE_RESOURCE_RENAMING_ENABLED": [
3542
+ {
3543
+ "implementation": "A",
3544
+ "type": "boolean",
3545
+ "default": "false",
3546
+ "configurationNames": [
3547
+ "resourceRenamingEnabled"
3548
+ ]
3549
+ }
3550
+ ],
3551
+ "DD_TRACE_RESTIFY_ENABLED": [
3552
+ {
3553
+ "implementation": "A",
3554
+ "type": "boolean",
3555
+ "default": "true"
3556
+ }
3557
+ ],
3558
+ "DD_TRACE_RHEA_ENABLED": [
3559
+ {
3560
+ "implementation": "A",
3561
+ "type": "boolean",
3562
+ "default": "true"
3563
+ }
3564
+ ],
3565
+ "DD_TRACE_ROUTER_ENABLED": [
3566
+ {
3567
+ "implementation": "A",
3568
+ "type": "boolean",
3569
+ "default": "true"
3570
+ }
3571
+ ],
3572
+ "DD_TRACE_SAMPLE_RATE": [
3573
+ {
3574
+ "implementation": "B",
3575
+ "type": "decimal",
3576
+ "configurationNames": [
3577
+ "ingestion.sampleRate"
3578
+ ],
3579
+ "default": null
3580
+ }
3581
+ ],
3582
+ "DD_TRACE_SAMPLING_RULES": [
3583
+ {
3584
+ "implementation": "A",
3585
+ "type": "array",
3586
+ "configurationNames": [
3587
+ "samplingRules",
3588
+ "sampler.rules"
3589
+ ],
3590
+ "default": ""
3591
+ }
3592
+ ],
3593
+ "DD_TRACE_SCOPE": [
3594
+ {
3595
+ "implementation": "A",
3596
+ "type": "string",
3597
+ "default": null,
3598
+ "configurationNames": [
3599
+ "scope"
3600
+ ]
3601
+ }
3602
+ ],
3603
+ "DD_TRACE_SELENIUM_ENABLED": [
3604
+ {
3605
+ "implementation": "B",
3606
+ "type": "boolean",
3607
+ "default": "true"
3608
+ }
3609
+ ],
3610
+ "DD_TRACE_SELENIUM_WEBDRIVER_ENABLED": [
3611
+ {
3612
+ "implementation": "A",
3613
+ "type": "boolean",
3614
+ "default": "true"
3615
+ }
3616
+ ],
3617
+ "DD_TRACE_SEQUELIZE_ENABLED": [
3618
+ {
3619
+ "implementation": "A",
3620
+ "type": "boolean",
3621
+ "default": "true"
3622
+ }
3623
+ ],
3624
+ "DD_TRACE_SHAREDB_ENABLED": [
3625
+ {
3626
+ "implementation": "A",
3627
+ "type": "boolean",
3628
+ "default": "true"
3629
+ }
3630
+ ],
3631
+ "DD_TRACE_SMITHY_SMITHY_CLIENT_ENABLED": [
3632
+ {
3633
+ "implementation": "A",
3634
+ "type": "boolean",
3635
+ "default": "true"
3636
+ }
3637
+ ],
3638
+ "DD_TRACE_SPAN_ATTRIBUTE_SCHEMA": [
3639
+ {
3640
+ "implementation": "B",
3641
+ "type": "string",
3642
+ "configurationNames": [
3643
+ "spanAttributeSchema"
3644
+ ],
3645
+ "default": "v0"
3646
+ }
3647
+ ],
3648
+ "DD_TRACE_SPAN_LEAK_DEBUG": [
3649
+ {
3650
+ "implementation": "A",
3651
+ "type": "int",
3652
+ "configurationNames": [
3653
+ "spanLeakDebug"
3654
+ ],
3655
+ "default": "0"
3656
+ }
3657
+ ],
3658
+ "DD_TRACE_SQLITE3_ENABLED": [
3659
+ {
3660
+ "implementation": "A",
3661
+ "type": "boolean",
3662
+ "default": "true"
3663
+ }
3664
+ ],
3665
+ "DD_TRACE_STARTUP_LOGS": [
3666
+ {
3667
+ "implementation": "D",
3668
+ "type": "boolean",
3669
+ "configurationNames": [
3670
+ "startupLogs"
3671
+ ],
3672
+ "default": "false"
3673
+ }
3674
+ ],
3675
+ "DD_TRACE_STATS_COMPUTATION_ENABLED": [
3676
+ {
3677
+ "implementation": "A",
3678
+ "type": "boolean",
3679
+ "configurationNames": [
3680
+ "stats.enabled"
3681
+ ],
3682
+ "default": "false"
3683
+ }
3684
+ ],
3685
+ "DD_TRACE_SUFFIXPLUGIN_ENABLED": [
3686
+ {
3687
+ "implementation": "A",
3688
+ "type": "boolean",
3689
+ "default": "true"
3690
+ }
3691
+ ],
3692
+ "DD_TRACE_TAGS": [
3693
+ {
3694
+ "implementation": "B",
3695
+ "type": "map",
3696
+ "default": null,
3697
+ "aliases": [
3698
+ "DD_TRACE_GLOBAL_TAGS"
3699
+ ]
3700
+ }
3701
+ ],
3702
+ "DD_TRACE_TEDIOUS_ENABLED": [
3703
+ {
3704
+ "implementation": "A",
3705
+ "type": "boolean",
3706
+ "default": "true"
3707
+ }
3708
+ ],
3709
+ "DD_TRACE_UNDICI_ENABLED": [
3710
+ {
3711
+ "implementation": "A",
3712
+ "type": "boolean",
3713
+ "default": "true"
3714
+ }
3715
+ ],
3716
+ "DD_TRACE_URL_ENABLED": [
3717
+ {
3718
+ "implementation": "A",
3719
+ "type": "boolean",
3720
+ "default": "true"
3721
+ }
3722
+ ],
3723
+ "DD_TRACE_VITEST_ENABLED": [
3724
+ {
3725
+ "implementation": "A",
3726
+ "type": "boolean",
3727
+ "default": "true"
3728
+ }
3729
+ ],
3730
+ "DD_TRACE_VITEST_RUNNER_ENABLED": [
3731
+ {
3732
+ "implementation": "A",
3733
+ "type": "boolean",
3734
+ "default": "true"
3735
+ }
3736
+ ],
3737
+ "DD_TRACE_VM_ENABLED": [
3738
+ {
3739
+ "implementation": "A",
3740
+ "type": "boolean",
3741
+ "default": "true"
3742
+ }
3743
+ ],
3744
+ "DD_TRACE_WEBSOCKET_MESSAGES_ENABLED": [
3745
+ {
3746
+ "implementation": "A",
3747
+ "type": "boolean",
3748
+ "default": "true",
3749
+ "configurationNames": [
3750
+ "traceWebsocketMessagesEnabled"
3751
+ ]
3752
+ }
3753
+ ],
3754
+ "DD_TRACE_WEBSOCKET_MESSAGES_INHERIT_SAMPLING": [
3755
+ {
3756
+ "implementation": "A",
3757
+ "type": "boolean",
3758
+ "default": "true",
3759
+ "configurationNames": [
3760
+ "traceWebsocketMessagesInheritSampling"
3761
+ ]
3762
+ }
3763
+ ],
3764
+ "DD_TRACE_WEBSOCKET_MESSAGES_SEPARATE_TRACES": [
3765
+ {
3766
+ "implementation": "A",
3767
+ "type": "boolean",
3768
+ "default": "true",
3769
+ "configurationNames": [
3770
+ "traceWebsocketMessagesSeparateTraces"
3771
+ ]
3772
+ }
3773
+ ],
3774
+ "DD_TRACE_WHEN_ENABLED": [
3775
+ {
3776
+ "implementation": "A",
3777
+ "type": "boolean",
3778
+ "default": "true"
3779
+ }
3780
+ ],
3781
+ "DD_TRACE_WINSTON_ENABLED": [
3782
+ {
3783
+ "implementation": "A",
3784
+ "type": "boolean",
3785
+ "default": "true"
3786
+ }
3787
+ ],
3788
+ "DD_TRACE_WORKERPOOL_ENABLED": [
3789
+ {
3790
+ "implementation": "A",
3791
+ "type": "boolean",
3792
+ "default": "true"
3793
+ }
3794
+ ],
3795
+ "DD_TRACE_WS_ENABLED": [
3796
+ {
3797
+ "implementation": "A",
3798
+ "type": "boolean",
3799
+ "default": "true"
3800
+ }
3801
+ ],
3802
+ "DD_TRACE_X_DATADOG_TAGS_MAX_LENGTH": [
3803
+ {
3804
+ "implementation": "A",
3805
+ "type": "int",
3806
+ "default": "512",
3807
+ "configurationNames": [
3808
+ "tagsHeaderMaxLength"
3809
+ ]
3810
+ }
3811
+ ],
3812
+ "DD_TRACING_ENABLED": [
3813
+ {
3814
+ "implementation": "A",
3815
+ "type": "boolean",
3816
+ "default": "true",
3817
+ "configurationNames": [
3818
+ "tracing"
3819
+ ]
3820
+ }
3821
+ ],
3822
+ "DD_VERSION": [
3823
+ {
3824
+ "implementation": "B",
3825
+ "type": "string",
3826
+ "configurationNames": [
3827
+ "version"
3828
+ ],
3829
+ "default": null
3830
+ }
3831
+ ],
3832
+ "DD_VERTEXAI_SPAN_CHAR_LIMIT": [
3833
+ {
3834
+ "implementation": "A",
3835
+ "type": "int",
3836
+ "default": "128",
3837
+ "configurationNames": [
3838
+ "vertexai.spanCharLimit"
3839
+ ]
3840
+ }
3841
+ ],
3842
+ "DD_VERTEXAI_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
3843
+ {
3844
+ "implementation": "A",
3845
+ "type": "decimal",
3846
+ "default": "1",
3847
+ "configurationNames": [
3848
+ "vertexai.spanPromptCompletionSampleRate"
3849
+ ]
3850
+ }
3851
+ ],
3852
+ "DD_VITEST_WORKER": [
3853
+ {
3854
+ "implementation": "A",
3855
+ "type": "string",
3856
+ "default": null
3857
+ }
3858
+ ],
3859
+ "OTEL_BSP_MAX_EXPORT_BATCH_SIZE": [
3860
+ {
3861
+ "implementation": "A",
3862
+ "type": "int",
3863
+ "configurationNames": [
3864
+ "otelMaxExportBatchSize"
3865
+ ],
3866
+ "default": "512"
3867
+ }
3868
+ ],
3869
+ "OTEL_BSP_MAX_QUEUE_SIZE": [
3870
+ {
3871
+ "implementation": "A",
3872
+ "type": "int",
3873
+ "configurationNames": [
3874
+ "otelMaxQueueSize"
3875
+ ],
3876
+ "default": "2048"
3877
+ }
3878
+ ],
3879
+ "OTEL_BSP_SCHEDULE_DELAY": [
3880
+ {
3881
+ "implementation": "A",
3882
+ "type": "int",
3883
+ "configurationNames": [
3884
+ "otelBatchTimeout"
3885
+ ],
3886
+ "default": "5000"
3887
+ }
3888
+ ],
3889
+ "OTEL_EXPORTER_OTLP_ENDPOINT": [
3890
+ {
3891
+ "implementation": "A",
3892
+ "type": "string",
3893
+ "default": null,
3894
+ "configurationNames": [
3895
+ "otelUrl"
3896
+ ]
3897
+ }
3898
+ ],
3899
+ "OTEL_EXPORTER_OTLP_HEADERS": [
3900
+ {
3901
+ "implementation": "B",
3902
+ "type": "map",
3903
+ "default": null,
3904
+ "configurationNames": [
3905
+ "otelHeaders"
3906
+ ]
3907
+ }
3908
+ ],
3909
+ "OTEL_EXPORTER_OTLP_LOGS_ENDPOINT": [
3910
+ {
3911
+ "implementation": "A",
3912
+ "type": "string",
3913
+ "default": null,
3914
+ "configurationNames": [
3915
+ "otelLogsUrl"
3916
+ ]
3917
+ }
3918
+ ],
3919
+ "OTEL_EXPORTER_OTLP_LOGS_HEADERS": [
3920
+ {
3921
+ "implementation": "B",
3922
+ "type": "map",
3923
+ "default": null,
3924
+ "configurationNames": [
3925
+ "otelLogsHeaders"
3926
+ ]
3927
+ }
3928
+ ],
3929
+ "OTEL_EXPORTER_OTLP_LOGS_PROTOCOL": [
3930
+ {
3931
+ "implementation": "D",
3932
+ "type": "string",
3933
+ "default": "http/protobuf",
3934
+ "configurationNames": [
3935
+ "otelLogsProtocol"
3936
+ ]
3937
+ }
3938
+ ],
3939
+ "OTEL_EXPORTER_OTLP_LOGS_TIMEOUT": [
3940
+ {
3941
+ "implementation": "A",
3942
+ "type": "int",
3943
+ "configurationNames": [
3944
+ "otelLogsTimeout"
3945
+ ],
3946
+ "default": "10000"
3947
+ }
3948
+ ],
3949
+ "OTEL_EXPORTER_OTLP_METRICS_ENDPOINT": [
3950
+ {
3951
+ "implementation": "A",
3952
+ "type": "string",
3953
+ "default": null,
3954
+ "configurationNames": [
3955
+ "otelMetricsUrl"
3956
+ ]
3957
+ }
3958
+ ],
3959
+ "OTEL_EXPORTER_OTLP_METRICS_HEADERS": [
3960
+ {
3961
+ "implementation": "A",
3962
+ "type": "map",
3963
+ "default": null,
3964
+ "configurationNames": [
3965
+ "otelMetricsHeaders"
3966
+ ]
3967
+ }
3968
+ ],
3969
+ "OTEL_EXPORTER_OTLP_METRICS_PROTOCOL": [
3970
+ {
3971
+ "implementation": "B",
3972
+ "type": "string",
3973
+ "default": "http/protobuf",
3974
+ "configurationNames": [
3975
+ "otelMetricsProtocol"
3976
+ ]
3977
+ }
3978
+ ],
3979
+ "OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE": [
3980
+ {
3981
+ "implementation": "A",
3982
+ "type": "string",
3983
+ "configurationNames": [
3984
+ "otelMetricsTemporalityPreference"
3985
+ ],
3986
+ "default": "delta"
3987
+ }
3988
+ ],
3989
+ "OTEL_EXPORTER_OTLP_METRICS_TIMEOUT": [
3990
+ {
3991
+ "implementation": "B",
3992
+ "type": "int",
3993
+ "configurationNames": [
3994
+ "otelMetricsTimeout"
3995
+ ],
3996
+ "default": "10000"
3997
+ }
3998
+ ],
3999
+ "OTEL_EXPORTER_OTLP_PROTOCOL": [
4000
+ {
4001
+ "implementation": "A",
4002
+ "type": "string",
4003
+ "default": "http/protobuf",
4004
+ "configurationNames": [
4005
+ "otelProtocol"
4006
+ ]
4007
+ }
4008
+ ],
4009
+ "OTEL_EXPORTER_OTLP_TIMEOUT": [
4010
+ {
4011
+ "implementation": "A",
4012
+ "type": "int",
4013
+ "configurationNames": [
4014
+ "otelTimeout"
4015
+ ],
4016
+ "default": "10000"
4017
+ }
4018
+ ],
4019
+ "OTEL_LOGS_EXPORTER": [
4020
+ {
4021
+ "implementation": "A",
4022
+ "type": "string",
4023
+ "default": null
4024
+ }
4025
+ ],
4026
+ "OTEL_LOG_LEVEL": [
4027
+ {
4028
+ "implementation": "C",
4029
+ "type": "string",
4030
+ "default": null
4031
+ }
4032
+ ],
4033
+ "OTEL_METRICS_EXPORTER": [
4034
+ {
4035
+ "implementation": "C",
4036
+ "type": "string",
4037
+ "default": null
4038
+ }
4039
+ ],
4040
+ "OTEL_METRIC_EXPORT_INTERVAL": [
4041
+ {
4042
+ "implementation": "A",
4043
+ "type": "int",
4044
+ "configurationNames": [
4045
+ "otelMetricsExportInterval"
4046
+ ],
4047
+ "default": "10000"
4048
+ }
4049
+ ],
4050
+ "OTEL_METRIC_EXPORT_TIMEOUT": [
4051
+ {
4052
+ "implementation": "A",
4053
+ "type": "int",
4054
+ "configurationNames": [
4055
+ "otelMetricsExportTimeout"
4056
+ ],
4057
+ "default": "7500"
4058
+ }
4059
+ ],
4060
+ "OTEL_PROPAGATORS": [
4061
+ {
4062
+ "implementation": "A",
4063
+ "type": "array",
4064
+ "default": "",
4065
+ "configurationNames": [
4066
+ "tracePropagationStyle.otelPropagators"
4067
+ ]
4068
+ }
4069
+ ],
4070
+ "OTEL_RESOURCE_ATTRIBUTES": [
4071
+ {
4072
+ "implementation": "B",
4073
+ "type": "string",
4074
+ "default": ""
4075
+ }
4076
+ ],
4077
+ "OTEL_SDK_DISABLED": [
4078
+ {
4079
+ "implementation": "C",
4080
+ "type": "boolean",
4081
+ "default": "true"
4082
+ }
4083
+ ],
4084
+ "OTEL_SERVICE_NAME": [
4085
+ {
4086
+ "implementation": "B",
4087
+ "type": "string",
4088
+ "configurationNames": [
4089
+ "service"
4090
+ ],
4091
+ "default": null
4092
+ }
4093
+ ],
4094
+ "OTEL_TRACES_EXPORTER": [
4095
+ {
4096
+ "implementation": "F",
4097
+ "type": "string",
4098
+ "default": "otlp"
4099
+ }
4100
+ ],
4101
+ "OTEL_TRACES_SAMPLER": [
4102
+ {
4103
+ "implementation": "E",
4104
+ "type": "string",
4105
+ "default": "parentbased_always_on"
4106
+ }
4107
+ ],
4108
+ "OTEL_TRACES_SAMPLER_ARG": [
4109
+ {
4110
+ "implementation": "D",
4111
+ "type": "decimal",
4112
+ "configurationNames": [
4113
+ "sampleRate"
4114
+ ],
4115
+ "default": null
4116
+ }
4117
+ ]
515
4118
  }
516
4119
  }