dd-trace 5.96.0 → 5.97.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 (114) hide show
  1. package/index.d.ts +34 -0
  2. package/package.json +9 -7
  3. package/packages/datadog-esbuild/index.js +20 -9
  4. package/packages/datadog-instrumentations/src/child_process.js +7 -17
  5. package/packages/datadog-instrumentations/src/crypto.js +1 -2
  6. package/packages/datadog-instrumentations/src/cucumber.js +4 -1
  7. package/packages/datadog-instrumentations/src/cypress-config.js +324 -0
  8. package/packages/datadog-instrumentations/src/cypress.js +86 -4
  9. package/packages/datadog-instrumentations/src/dns.js +1 -2
  10. package/packages/datadog-instrumentations/src/express.js +4 -4
  11. package/packages/datadog-instrumentations/src/fs.js +27 -29
  12. package/packages/datadog-instrumentations/src/graphql.js +1 -1
  13. package/packages/datadog-instrumentations/src/helpers/bundler-register.js +41 -13
  14. package/packages/datadog-instrumentations/src/helpers/hook.js +31 -6
  15. package/packages/datadog-instrumentations/src/helpers/hooks.js +12 -19
  16. package/packages/datadog-instrumentations/src/helpers/instrument.js +27 -13
  17. package/packages/datadog-instrumentations/src/helpers/register.js +103 -142
  18. package/packages/datadog-instrumentations/src/http/client.js +2 -3
  19. package/packages/datadog-instrumentations/src/http/server.js +2 -5
  20. package/packages/datadog-instrumentations/src/http2/client.js +1 -3
  21. package/packages/datadog-instrumentations/src/http2/server.js +1 -3
  22. package/packages/datadog-instrumentations/src/jest.js +13 -4
  23. package/packages/datadog-instrumentations/src/limitd-client.js +1 -1
  24. package/packages/datadog-instrumentations/src/mocha/utils.js +4 -1
  25. package/packages/datadog-instrumentations/src/net.js +2 -8
  26. package/packages/datadog-instrumentations/src/pino.js +1 -1
  27. package/packages/datadog-instrumentations/src/playwright.js +4 -1
  28. package/packages/datadog-instrumentations/src/prisma.js +1 -2
  29. package/packages/datadog-instrumentations/src/selenium.js +4 -1
  30. package/packages/datadog-instrumentations/src/sequelize.js +1 -1
  31. package/packages/datadog-instrumentations/src/url.js +1 -3
  32. package/packages/datadog-instrumentations/src/vitest.js +5 -1
  33. package/packages/datadog-instrumentations/src/vm.js +1 -3
  34. package/packages/datadog-plugin-aws-sdk/src/base.js +4 -3
  35. package/packages/datadog-plugin-cucumber/src/index.js +7 -3
  36. package/packages/datadog-plugin-cypress/src/cypress-plugin.js +57 -5
  37. package/packages/datadog-plugin-graphql/src/resolve.js +1 -1
  38. package/packages/datadog-plugin-jest/src/index.js +4 -2
  39. package/packages/datadog-plugin-kafkajs/src/batch-consumer.js +31 -4
  40. package/packages/datadog-plugin-mocha/src/index.js +5 -2
  41. package/packages/datadog-plugin-next/src/index.js +2 -14
  42. package/packages/datadog-plugin-openai/src/services.js +1 -0
  43. package/packages/datadog-webpack/index.js +3 -3
  44. package/packages/dd-trace/index.js +12 -10
  45. package/packages/dd-trace/src/agent/url.js +2 -2
  46. package/packages/dd-trace/src/aiguard/sdk.js +4 -0
  47. package/packages/dd-trace/src/appsec/blocking.js +3 -0
  48. package/packages/dd-trace/src/appsec/iast/iast-plugin.js +1 -1
  49. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-handler.js +1 -1
  50. package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/utils.js +1 -1
  51. package/packages/dd-trace/src/appsec/remote_config.js +1 -0
  52. package/packages/dd-trace/src/appsec/sdk/index.js +4 -0
  53. package/packages/dd-trace/src/ci-visibility/dynamic-instrumentation/index.js +6 -1
  54. package/packages/dd-trace/src/ci-visibility/test-api-manual/test-api-manual-plugin.js +4 -0
  55. package/packages/dd-trace/src/config/defaults.js +316 -146
  56. package/packages/dd-trace/src/config/generated-config-types.d.ts +4 -1
  57. package/packages/dd-trace/src/config/helper.js +59 -10
  58. package/packages/dd-trace/src/config/index.js +569 -1505
  59. package/packages/dd-trace/src/config/parsers.js +256 -0
  60. package/packages/dd-trace/src/config/remote_config.js +59 -2
  61. package/packages/dd-trace/src/config/supported-configurations.json +350 -433
  62. package/packages/dd-trace/src/crashtracking/crashtracker.js +7 -1
  63. package/packages/dd-trace/src/crashtracking/index.js +1 -7
  64. package/packages/dd-trace/src/debugger/index.js +1 -1
  65. package/packages/dd-trace/src/dogstatsd.js +12 -9
  66. package/packages/dd-trace/src/encode/0.4.js +1 -1
  67. package/packages/dd-trace/src/exporters/agent/writer.js +7 -1
  68. package/packages/dd-trace/src/exporters/common/request.js +9 -0
  69. package/packages/dd-trace/src/exporters/common/writer.js +12 -2
  70. package/packages/dd-trace/src/heap_snapshots.js +3 -0
  71. package/packages/dd-trace/src/index.js +5 -2
  72. package/packages/dd-trace/src/lambda/runtime/ritm.js +6 -6
  73. package/packages/dd-trace/src/llmobs/index.js +4 -1
  74. package/packages/dd-trace/src/llmobs/plugins/ai/index.js +5 -1
  75. package/packages/dd-trace/src/llmobs/plugins/ai/util.js +60 -12
  76. package/packages/dd-trace/src/llmobs/plugins/bedrockruntime.js +4 -2
  77. package/packages/dd-trace/src/llmobs/sdk.js +12 -8
  78. package/packages/dd-trace/src/llmobs/span_processor.js +1 -1
  79. package/packages/dd-trace/src/llmobs/tagger.js +9 -6
  80. package/packages/dd-trace/src/llmobs/writers/base.js +2 -0
  81. package/packages/dd-trace/src/llmobs/writers/util.js +3 -0
  82. package/packages/dd-trace/src/log/index.js +26 -55
  83. package/packages/dd-trace/src/log/writer.js +7 -19
  84. package/packages/dd-trace/src/noop/proxy.js +8 -0
  85. package/packages/dd-trace/src/opentelemetry/logs/index.js +1 -1
  86. package/packages/dd-trace/src/opentelemetry/metrics/index.js +1 -1
  87. package/packages/dd-trace/src/opentracing/propagation/text_map.js +9 -4
  88. package/packages/dd-trace/src/payload-tagging/config/index.js +6 -5
  89. package/packages/dd-trace/src/plugin_manager.js +8 -6
  90. package/packages/dd-trace/src/plugins/ci_plugin.js +4 -0
  91. package/packages/dd-trace/src/plugins/plugin.js +7 -4
  92. package/packages/dd-trace/src/process-tags/index.js +3 -0
  93. package/packages/dd-trace/src/profiler.js +27 -2
  94. package/packages/dd-trace/src/profiling/config.js +73 -241
  95. package/packages/dd-trace/src/profiling/exporter_cli.js +1 -4
  96. package/packages/dd-trace/src/profiling/exporters/event_serializer.js +6 -2
  97. package/packages/dd-trace/src/profiling/profiler.js +56 -44
  98. package/packages/dd-trace/src/profiling/profilers/events.js +2 -3
  99. package/packages/dd-trace/src/profiling/profilers/wall.js +89 -6
  100. package/packages/dd-trace/src/profiling/ssi-heuristics.js +4 -1
  101. package/packages/dd-trace/src/propagation-hash/index.js +2 -1
  102. package/packages/dd-trace/src/proxy.js +32 -3
  103. package/packages/dd-trace/src/remote_config/index.js +3 -0
  104. package/packages/dd-trace/src/require-package-json.js +8 -4
  105. package/packages/dd-trace/src/ritm.js +58 -26
  106. package/packages/dd-trace/src/runtime_metrics/index.js +3 -0
  107. package/packages/dd-trace/src/runtime_metrics/runtime_metrics.js +3 -0
  108. package/packages/dd-trace/src/sampler.js +1 -1
  109. package/packages/dd-trace/src/standalone/index.js +3 -0
  110. package/packages/dd-trace/src/telemetry/index.js +2 -3
  111. package/packages/dd-trace/src/telemetry/send-data.js +5 -19
  112. package/packages/dd-trace/src/telemetry/session-propagation.js +19 -44
  113. package/packages/dd-trace/src/telemetry/telemetry.js +28 -171
  114. package/packages/dd-trace/src/util.js +0 -9
@@ -13,9 +13,7 @@
13
13
  "implementation": "A",
14
14
  "type": "boolean",
15
15
  "default": "false",
16
- "configurationNames": [
17
- "ciVisAgentlessLogSubmissionEnabled"
18
- ]
16
+ "internalPropertyName": "ciVisAgentlessLogSubmissionEnabled"
19
17
  }
20
18
  ],
21
19
  "DD_AGENTLESS_LOG_SUBMISSION_URL": [
@@ -114,9 +112,7 @@
114
112
  "aliases": [
115
113
  "DATADOG_API_KEY"
116
114
  ],
117
- "configurationNames": [
118
- "apiKey"
119
- ]
115
+ "internalPropertyName": "apiKey"
120
116
  }
121
117
  ],
122
118
  "DD_API_SECURITY_ENABLED": [
@@ -124,7 +120,8 @@
124
120
  "implementation": "A",
125
121
  "type": "boolean",
126
122
  "configurationNames": [
127
- "appsec.apiSecurity.enabled"
123
+ "appsec.apiSecurity.enabled",
124
+ "experimental.appsec.apiSecurity.enabled"
128
125
  ],
129
126
  "default": "true",
130
127
  "aliases": [
@@ -137,7 +134,8 @@
137
134
  "implementation": "A",
138
135
  "type": "boolean",
139
136
  "configurationNames": [
140
- "appsec.apiSecurity.endpointCollectionEnabled"
137
+ "appsec.apiSecurity.endpointCollectionEnabled",
138
+ "experimental.appsec.apiSecurity.endpointCollectionEnabled"
141
139
  ],
142
140
  "default": "true"
143
141
  }
@@ -147,7 +145,8 @@
147
145
  "implementation": "A",
148
146
  "type": "int",
149
147
  "configurationNames": [
150
- "appsec.apiSecurity.endpointCollectionMessageLimit"
148
+ "appsec.apiSecurity.endpointCollectionMessageLimit",
149
+ "experimental.appsec.apiSecurity.endpointCollectionMessageLimit"
151
150
  ],
152
151
  "default": "300"
153
152
  }
@@ -156,9 +155,7 @@
156
155
  {
157
156
  "implementation": "A",
158
157
  "type": "decimal",
159
- "configurationNames": [
160
- "appsec.apiSecurity.downstreamBodyAnalysisSampleRate"
161
- ],
158
+ "internalPropertyName": "appsec.apiSecurity.downstreamBodyAnalysisSampleRate",
162
159
  "default": "0.5"
163
160
  }
164
161
  ],
@@ -166,9 +163,7 @@
166
163
  {
167
164
  "implementation": "A",
168
165
  "type": "int",
169
- "configurationNames": [
170
- "appsec.apiSecurity.maxDownstreamRequestBodyAnalysis"
171
- ],
166
+ "internalPropertyName": "appsec.apiSecurity.maxDownstreamRequestBodyAnalysis",
172
167
  "default": "1"
173
168
  }
174
169
  ],
@@ -177,9 +172,7 @@
177
172
  "implementation": "A",
178
173
  "type": "decimal",
179
174
  "default": "30",
180
- "configurationNames": [
181
- "appsec.apiSecurity.sampleDelay"
182
- ]
175
+ "internalPropertyName": "appsec.apiSecurity.sampleDelay"
183
176
  }
184
177
  ],
185
178
  "DD_APM_FLUSH_DEADLINE_MILLISECONDS": [
@@ -204,7 +197,8 @@
204
197
  "implementation": "E",
205
198
  "type": "string",
206
199
  "configurationNames": [
207
- "appsec.eventTracking.mode"
200
+ "appsec.eventTracking.mode",
201
+ "experimental.appsec.eventTracking.mode"
208
202
  ],
209
203
  "default": "identification",
210
204
  "aliases": [
@@ -217,7 +211,8 @@
217
211
  "implementation": "A",
218
212
  "type": "boolean",
219
213
  "configurationNames": [
220
- "appsec.extendedHeadersCollection.enabled"
214
+ "appsec.extendedHeadersCollection.enabled",
215
+ "experimental.appsec.extendedHeadersCollection.enabled"
221
216
  ],
222
217
  "default": "false",
223
218
  "deprecated": true
@@ -228,7 +223,10 @@
228
223
  "implementation": "C",
229
224
  "type": "boolean",
230
225
  "configurationNames": [
231
- "appsec.enabled"
226
+ "appsec.enabled",
227
+ "appsec",
228
+ "experimental.appsec.enabled",
229
+ "experimental.appsec"
232
230
  ],
233
231
  "default": null
234
232
  }
@@ -238,9 +236,11 @@
238
236
  "implementation": "A",
239
237
  "type": "string",
240
238
  "configurationNames": [
241
- "appsec.blockedTemplateGraphql"
239
+ "appsec.blockedTemplateGraphql",
240
+ "experimental.appsec.blockedTemplateGraphql"
242
241
  ],
243
- "default": null
242
+ "default": null,
243
+ "transform": "readFilePath"
244
244
  }
245
245
  ],
246
246
  "DD_APPSEC_HEADER_COLLECTION_REDACTION_ENABLED": [
@@ -248,7 +248,8 @@
248
248
  "implementation": "A",
249
249
  "type": "boolean",
250
250
  "configurationNames": [
251
- "appsec.extendedHeadersCollection.redaction"
251
+ "appsec.extendedHeadersCollection.redaction",
252
+ "experimental.appsec.extendedHeadersCollection.redaction"
252
253
  ],
253
254
  "default": "true"
254
255
  }
@@ -258,9 +259,11 @@
258
259
  "implementation": "B",
259
260
  "type": "string",
260
261
  "configurationNames": [
261
- "appsec.blockedTemplateHtml"
262
+ "appsec.blockedTemplateHtml",
263
+ "experimental.appsec.blockedTemplateHtml"
262
264
  ],
263
- "default": null
265
+ "default": null,
266
+ "transform": "readFilePath"
264
267
  }
265
268
  ],
266
269
  "DD_APPSEC_HTTP_BLOCKED_TEMPLATE_JSON": [
@@ -268,9 +271,11 @@
268
271
  "implementation": "B",
269
272
  "type": "string",
270
273
  "configurationNames": [
271
- "appsec.blockedTemplateJson"
274
+ "appsec.blockedTemplateJson",
275
+ "experimental.appsec.blockedTemplateJson"
272
276
  ],
273
- "default": null
277
+ "default": null,
278
+ "transform": "readFilePath"
274
279
  }
275
280
  ],
276
281
  "DD_APPSEC_MAX_COLLECTED_HEADERS": [
@@ -278,7 +283,8 @@
278
283
  "implementation": "A",
279
284
  "type": "int",
280
285
  "configurationNames": [
281
- "appsec.extendedHeadersCollection.maxHeaders"
286
+ "appsec.extendedHeadersCollection.maxHeaders",
287
+ "experimental.appsec.extendedHeadersCollection.maxHeaders"
282
288
  ],
283
289
  "default": "50"
284
290
  }
@@ -288,7 +294,11 @@
288
294
  "implementation": "A",
289
295
  "type": "int",
290
296
  "configurationNames": [
291
- "appsec.stackTrace.maxStackTraces"
297
+ "appsec.stackTrace.maxStackTraces",
298
+ "experimental.appsec.stackTrace.maxStackTraces"
299
+ ],
300
+ "aliases": [
301
+ "DD_APPSEC_MAX_STACKTRACES"
292
302
  ],
293
303
  "default": "2"
294
304
  }
@@ -298,7 +308,11 @@
298
308
  "implementation": "A",
299
309
  "type": "int",
300
310
  "configurationNames": [
301
- "appsec.stackTrace.maxDepth"
311
+ "appsec.stackTrace.maxDepth",
312
+ "experimental.appsec.stackTrace.maxDepth"
313
+ ],
314
+ "aliases": [
315
+ "DD_APPSEC_MAX_STACKTRACE_DEPTH"
302
316
  ],
303
317
  "default": "32"
304
318
  }
@@ -308,7 +322,8 @@
308
322
  "implementation": "B",
309
323
  "type": "string",
310
324
  "configurationNames": [
311
- "appsec.obfuscatorKeyRegex"
325
+ "appsec.obfuscatorKeyRegex",
326
+ "experimental.appsec.obfuscatorKeyRegex"
312
327
  ],
313
328
  "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"
314
329
  }
@@ -318,7 +333,8 @@
318
333
  "implementation": "G",
319
334
  "type": "string",
320
335
  "configurationNames": [
321
- "appsec.obfuscatorValueRegex"
336
+ "appsec.obfuscatorValueRegex",
337
+ "experimental.appsec.obfuscatorValueRegex"
322
338
  ],
323
339
  "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,})"
324
340
  }
@@ -328,7 +344,8 @@
328
344
  "implementation": "A",
329
345
  "type": "boolean",
330
346
  "configurationNames": [
331
- "appsec.rasp.bodyCollection"
347
+ "appsec.rasp.bodyCollection",
348
+ "experimental.appsec.rasp.bodyCollection"
332
349
  ],
333
350
  "default": "false",
334
351
  "deprecated": true
@@ -339,7 +356,8 @@
339
356
  "implementation": "A",
340
357
  "type": "boolean",
341
358
  "configurationNames": [
342
- "appsec.rasp.enabled"
359
+ "appsec.rasp.enabled",
360
+ "experimental.appsec.rasp.enabled"
343
361
  ],
344
362
  "default": "true"
345
363
  }
@@ -349,7 +367,8 @@
349
367
  "implementation": "B",
350
368
  "type": "string",
351
369
  "configurationNames": [
352
- "appsec.rules"
370
+ "appsec.rules",
371
+ "experimental.appsec.rules"
353
372
  ],
354
373
  "default": null
355
374
  }
@@ -359,9 +378,7 @@
359
378
  "implementation": "B",
360
379
  "type": "boolean",
361
380
  "default": null,
362
- "configurationNames": [
363
- "appsec.sca.enabled"
364
- ]
381
+ "internalPropertyName": "appsec.sca.enabled"
365
382
  }
366
383
  ],
367
384
  "DD_APPSEC_STACK_TRACE_ENABLED": [
@@ -369,7 +386,8 @@
369
386
  "implementation": "A",
370
387
  "type": "boolean",
371
388
  "configurationNames": [
372
- "appsec.stackTrace.enabled"
389
+ "appsec.stackTrace.enabled",
390
+ "experimental.appsec.stackTrace.enabled"
373
391
  ],
374
392
  "default": "true"
375
393
  }
@@ -379,7 +397,8 @@
379
397
  "implementation": "A",
380
398
  "type": "int",
381
399
  "configurationNames": [
382
- "appsec.rateLimit"
400
+ "appsec.rateLimit",
401
+ "experimental.appsec.rateLimit"
383
402
  ],
384
403
  "default": "100"
385
404
  }
@@ -389,7 +408,8 @@
389
408
  "implementation": "E",
390
409
  "type": "int",
391
410
  "configurationNames": [
392
- "appsec.wafTimeout"
411
+ "appsec.wafTimeout",
412
+ "experimental.appsec.wafTimeout"
393
413
  ],
394
414
  "default": "5000"
395
415
  }
@@ -399,9 +419,7 @@
399
419
  "implementation": "A",
400
420
  "type": "string",
401
421
  "default": null,
402
- "configurationNames": [
403
- "appKey"
404
- ]
422
+ "internalPropertyName": "appKey"
405
423
  }
406
424
  ],
407
425
  "DD_AZURE_RESOURCE_GROUP": [
@@ -451,9 +469,7 @@
451
469
  "implementation": "B",
452
470
  "type": "boolean",
453
471
  "default": "true",
454
- "configurationNames": [
455
- "isEarlyFlakeDetectionEnabled"
456
- ]
472
+ "internalPropertyName": "isEarlyFlakeDetectionEnabled"
457
473
  }
458
474
  ],
459
475
  "DD_CIVISIBILITY_ENABLED": [
@@ -468,9 +484,7 @@
468
484
  "implementation": "A",
469
485
  "type": "int",
470
486
  "default": "5",
471
- "configurationNames": [
472
- "flakyTestRetriesCount"
473
- ]
487
+ "internalPropertyName": "flakyTestRetriesCount"
474
488
  }
475
489
  ],
476
490
  "DD_CIVISIBILITY_FLAKY_RETRY_ENABLED": [
@@ -478,9 +492,7 @@
478
492
  "implementation": "A",
479
493
  "type": "boolean",
480
494
  "default": "true",
481
- "configurationNames": [
482
- "isFlakyTestRetriesEnabled"
483
- ]
495
+ "internalPropertyName": "isFlakyTestRetriesEnabled"
484
496
  }
485
497
  ],
486
498
  "DD_CIVISIBILITY_GIT_UNSHALLOW_ENABLED": [
@@ -495,9 +507,7 @@
495
507
  "implementation": "A",
496
508
  "type": "boolean",
497
509
  "default": "true",
498
- "configurationNames": [
499
- "isGitUploadEnabled"
500
- ]
510
+ "internalPropertyName": "isGitUploadEnabled"
501
511
  }
502
512
  ],
503
513
  "DD_CIVISIBILITY_IMPACTED_TESTS_DETECTION_ENABLED": [
@@ -505,9 +515,7 @@
505
515
  "implementation": "A",
506
516
  "type": "boolean",
507
517
  "default": "true",
508
- "configurationNames": [
509
- "isImpactedTestsEnabled"
510
- ]
518
+ "internalPropertyName": "isImpactedTestsEnabled"
511
519
  }
512
520
  ],
513
521
  "DD_CIVISIBILITY_ITR_ENABLED": [
@@ -515,9 +523,7 @@
515
523
  "implementation": "A",
516
524
  "type": "boolean",
517
525
  "default": "true",
518
- "configurationNames": [
519
- "isIntelligentTestRunnerEnabled"
520
- ]
526
+ "internalPropertyName": "isIntelligentTestRunnerEnabled"
521
527
  }
522
528
  ],
523
529
  "DD_ENABLE_LAGE_PACKAGE_NAME": [
@@ -532,9 +538,7 @@
532
538
  "implementation": "A",
533
539
  "type": "boolean",
534
540
  "default": "true",
535
- "configurationNames": [
536
- "isManualApiEnabled"
537
- ]
541
+ "internalPropertyName": "isManualApiEnabled"
538
542
  }
539
543
  ],
540
544
  "DD_CIVISIBILITY_RUM_FLUSH_WAIT_MILLIS": [
@@ -590,9 +594,7 @@
590
594
  "implementation": "A",
591
595
  "type": "boolean",
592
596
  "default": "true",
593
- "configurationNames": [
594
- "crashtracking.enabled"
595
- ]
597
+ "internalPropertyName": "crashtracking.enabled"
596
598
  }
597
599
  ],
598
600
  "DD_CUSTOM_TRACE_ID": [
@@ -707,19 +709,19 @@
707
709
  ],
708
710
  "DD_DYNAMIC_INSTRUMENTATION_UPLOAD_INTERVAL_SECONDS": [
709
711
  {
710
- "implementation": "A",
711
- "type": "int",
712
+ "implementation": "C",
713
+ "type": "decimal",
712
714
  "configurationNames": [
713
715
  "dynamicInstrumentation.uploadIntervalSeconds"
714
716
  ],
715
- "default": "1"
717
+ "default": "1.0"
716
718
  }
717
719
  ],
718
720
  "DD_ENABLE_NX_SERVICE_NAME": [
719
721
  {
720
- "implementation": "A",
721
- "type": "string",
722
- "default": null
722
+ "implementation": "B",
723
+ "type": "boolean",
724
+ "default": "false"
723
725
  }
724
726
  ],
725
727
  "DD_ENV": [
@@ -734,9 +736,12 @@
734
736
  ],
735
737
  "DD_EXPERIMENTAL_APPSEC_STANDALONE_ENABLED": [
736
738
  {
737
- "implementation": "A",
739
+ "implementation": "B",
738
740
  "type": "boolean",
739
- "default": "true"
741
+ "default": "false",
742
+ "configurationNames": [
743
+ "experimental.appsec.standalone.enabled"
744
+ ]
740
745
  }
741
746
  ],
742
747
  "DD_EXPERIMENTAL_FLAGGING_PROVIDER_INITIALIZATION_TIMEOUT_MS": [
@@ -764,9 +769,7 @@
764
769
  "implementation": "B",
765
770
  "type": "boolean",
766
771
  "default": "true",
767
- "configurationNames": [
768
- "propagateProcessTags.enabled"
769
- ]
772
+ "internalPropertyName": "propagateProcessTags.enabled"
770
773
  }
771
774
  ],
772
775
  "DD_EXPERIMENTAL_TEST_OPT_SETTINGS_CACHE": [
@@ -918,23 +921,20 @@
918
921
  ],
919
922
  "DD_GRPC_CLIENT_ERROR_STATUSES": [
920
923
  {
921
- "implementation": "A",
922
- "type": "array",
923
- "default": "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16",
924
- "configurationNames": [
925
- "grpc.client.error.statuses"
926
- ],
927
- "handler": "GRPC_HANDLER"
924
+ "implementation": "C",
925
+ "type": "string",
926
+ "default": "1-16",
927
+ "internalPropertyName": "grpc.client.error.statuses",
928
+ "transform": "setGRPCRange"
928
929
  }
929
930
  ],
930
931
  "DD_GRPC_SERVER_ERROR_STATUSES": [
931
932
  {
932
- "implementation": "A",
933
- "type": "array",
934
- "default": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16",
935
- "configurationNames": [
936
- "grpc.server.error.statuses"
937
- ]
933
+ "implementation": "C",
934
+ "type": "string",
935
+ "default": "2-16",
936
+ "internalPropertyName": "grpc.server.error.statuses",
937
+ "transform": "setGRPCRange"
938
938
  }
939
939
  ],
940
940
  "DD_HEAP_SNAPSHOT_COUNT": [
@@ -942,9 +942,7 @@
942
942
  "implementation": "A",
943
943
  "type": "int",
944
944
  "default": "0",
945
- "configurationNames": [
946
- "heapSnapshot.count"
947
- ]
945
+ "internalPropertyName": "heapSnapshot.count"
948
946
  }
949
947
  ],
950
948
  "DD_HEAP_SNAPSHOT_DESTINATION": [
@@ -952,9 +950,7 @@
952
950
  "implementation": "A",
953
951
  "type": "string",
954
952
  "default": "",
955
- "configurationNames": [
956
- "heapSnapshot.destination"
957
- ]
953
+ "internalPropertyName": "heapSnapshot.destination"
958
954
  }
959
955
  ],
960
956
  "DD_HEAP_SNAPSHOT_INTERVAL": [
@@ -962,9 +958,7 @@
962
958
  "implementation": "A",
963
959
  "type": "int",
964
960
  "default": "3600",
965
- "configurationNames": [
966
- "heapSnapshot.interval"
967
- ]
961
+ "internalPropertyName": "heapSnapshot.interval"
968
962
  }
969
963
  ],
970
964
  "DD_IAST_DB_ROWS_TO_TAINT": [
@@ -972,7 +966,8 @@
972
966
  "implementation": "A",
973
967
  "type": "int",
974
968
  "configurationNames": [
975
- "iast.dbRowsToTaint"
969
+ "iast.dbRowsToTaint",
970
+ "experimental.iast.dbRowsToTaint"
976
971
  ],
977
972
  "default": "1"
978
973
  }
@@ -982,7 +977,8 @@
982
977
  "implementation": "A",
983
978
  "type": "boolean",
984
979
  "configurationNames": [
985
- "iast.deduplicationEnabled"
980
+ "iast.deduplicationEnabled",
981
+ "experimental.iast.deduplicationEnabled"
986
982
  ],
987
983
  "default": "true"
988
984
  }
@@ -992,7 +988,10 @@
992
988
  "implementation": "B",
993
989
  "type": "boolean",
994
990
  "configurationNames": [
995
- "iast.enabled"
991
+ "iast.enabled",
992
+ "iast",
993
+ "experimental.iast.enabled",
994
+ "experimental.iast"
996
995
  ],
997
996
  "default": "false"
998
997
  }
@@ -1002,7 +1001,8 @@
1002
1001
  "implementation": "A",
1003
1002
  "type": "int",
1004
1003
  "configurationNames": [
1005
- "iast.maxConcurrentRequests"
1004
+ "iast.maxConcurrentRequests",
1005
+ "experimental.iast.maxConcurrentRequests"
1006
1006
  ],
1007
1007
  "default": "2"
1008
1008
  }
@@ -1012,7 +1012,8 @@
1012
1012
  "implementation": "A",
1013
1013
  "type": "int",
1014
1014
  "configurationNames": [
1015
- "iast.maxContextOperations"
1015
+ "iast.maxContextOperations",
1016
+ "experimental.iast.maxContextOperations"
1016
1017
  ],
1017
1018
  "default": "2"
1018
1019
  }
@@ -1022,7 +1023,8 @@
1022
1023
  "implementation": "A",
1023
1024
  "type": "boolean",
1024
1025
  "configurationNames": [
1025
- "iast.redactionEnabled"
1026
+ "iast.redactionEnabled",
1027
+ "experimental.iast.redactionEnabled"
1026
1028
  ],
1027
1029
  "default": "true"
1028
1030
  }
@@ -1032,7 +1034,8 @@
1032
1034
  "implementation": "A",
1033
1035
  "type": "string",
1034
1036
  "configurationNames": [
1035
- "iast.redactionNamePattern"
1037
+ "iast.redactionNamePattern",
1038
+ "experimental.iast.redactionNamePattern"
1036
1039
  ],
1037
1040
  "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)"
1038
1041
  }
@@ -1042,7 +1045,8 @@
1042
1045
  "implementation": "A",
1043
1046
  "type": "string",
1044
1047
  "configurationNames": [
1045
- "iast.redactionValuePattern"
1048
+ "iast.redactionValuePattern",
1049
+ "experimental.iast.redactionValuePattern"
1046
1050
  ],
1047
1051
  "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,})"
1048
1052
  }
@@ -1052,9 +1056,12 @@
1052
1056
  "implementation": "A",
1053
1057
  "type": "int",
1054
1058
  "configurationNames": [
1055
- "iast.requestSampling"
1059
+ "iast.requestSampling",
1060
+ "experimental.iast.requestSampling"
1056
1061
  ],
1057
- "default": "30"
1062
+ "default": "30",
1063
+ "allowed": "100|[1-9]?\\d",
1064
+ "transform": "iastRequestSampling"
1058
1065
  }
1059
1066
  ],
1060
1067
  "DD_IAST_SECURITY_CONTROLS_CONFIGURATION": [
@@ -1062,7 +1069,8 @@
1062
1069
  "implementation": "B",
1063
1070
  "type": "string",
1064
1071
  "configurationNames": [
1065
- "iast.securityControlsConfiguration"
1072
+ "iast.securityControlsConfiguration",
1073
+ "experimental.iast.securityControlsConfiguration"
1066
1074
  ],
1067
1075
  "default": null
1068
1076
  }
@@ -1072,7 +1080,8 @@
1072
1080
  "implementation": "B",
1073
1081
  "type": "boolean",
1074
1082
  "configurationNames": [
1075
- "iast.stackTrace.enabled"
1083
+ "iast.stackTrace.enabled",
1084
+ "experimental.iast.stackTrace.enabled"
1076
1085
  ],
1077
1086
  "default": "true"
1078
1087
  }
@@ -1082,19 +1091,18 @@
1082
1091
  "implementation": "B",
1083
1092
  "type": "string",
1084
1093
  "configurationNames": [
1085
- "iast.telemetryVerbosity"
1094
+ "iast.telemetryVerbosity",
1095
+ "experimental.iast.telemetryVerbosity"
1086
1096
  ],
1087
1097
  "default": "INFORMATION"
1088
1098
  }
1089
1099
  ],
1090
1100
  "DD_INJECTION_ENABLED": [
1091
1101
  {
1092
- "implementation": "A",
1093
- "type": "array",
1094
- "default": "",
1095
- "configurationNames": [
1096
- "injectionEnabled"
1097
- ]
1102
+ "implementation": "C",
1103
+ "type": "string",
1104
+ "default": null,
1105
+ "internalPropertyName": "injectionEnabled"
1098
1106
  }
1099
1107
  ],
1100
1108
  "DD_INJECT_FORCE": [
@@ -1102,9 +1110,7 @@
1102
1110
  "implementation": "A",
1103
1111
  "type": "boolean",
1104
1112
  "default": "false",
1105
- "configurationNames": [
1106
- "injectForce"
1107
- ]
1113
+ "internalPropertyName": "injectForce"
1108
1114
  }
1109
1115
  ],
1110
1116
  "DD_INSTRUMENTATION_CONFIG_ID": [
@@ -1112,9 +1118,7 @@
1112
1118
  "implementation": "A",
1113
1119
  "type": "string",
1114
1120
  "default": null,
1115
- "configurationNames": [
1116
- "instrumentation_config_id"
1117
- ]
1121
+ "internalPropertyName": "instrumentation_config_id"
1118
1122
  }
1119
1123
  ],
1120
1124
  "DD_INSTRUMENTATION_INSTALL_ID": [
@@ -1122,9 +1126,7 @@
1122
1126
  "implementation": "A",
1123
1127
  "type": "string",
1124
1128
  "default": null,
1125
- "configurationNames": [
1126
- "installSignature.id"
1127
- ]
1129
+ "internalPropertyName": "installSignature.id"
1128
1130
  }
1129
1131
  ],
1130
1132
  "DD_INSTRUMENTATION_INSTALL_TIME": [
@@ -1132,9 +1134,7 @@
1132
1134
  "implementation": "A",
1133
1135
  "type": "string",
1134
1136
  "default": null,
1135
- "configurationNames": [
1136
- "installSignature.time"
1137
- ]
1137
+ "internalPropertyName": "installSignature.time"
1138
1138
  }
1139
1139
  ],
1140
1140
  "DD_INSTRUMENTATION_INSTALL_TYPE": [
@@ -1142,9 +1142,7 @@
1142
1142
  "implementation": "A",
1143
1143
  "type": "string",
1144
1144
  "default": null,
1145
- "configurationNames": [
1146
- "installSignature.type"
1147
- ]
1145
+ "internalPropertyName": "installSignature.type"
1148
1146
  }
1149
1147
  ],
1150
1148
  "DD_INSTRUMENTATION_TELEMETRY_ENABLED": [
@@ -1155,9 +1153,7 @@
1155
1153
  "aliases": [
1156
1154
  "DD_TRACE_TELEMETRY_ENABLED"
1157
1155
  ],
1158
- "configurationNames": [
1159
- "telemetry.enabled"
1160
- ]
1156
+ "internalPropertyName": "telemetry.enabled"
1161
1157
  }
1162
1158
  ],
1163
1159
  "DD_INTERNAL_PROFILING_LONG_LIVED_THRESHOLD": [
@@ -1165,9 +1161,7 @@
1165
1161
  "implementation": "A",
1166
1162
  "type": "int",
1167
1163
  "default": "30000",
1168
- "configurationNames": [
1169
- "profiling.longLivedThreshold"
1170
- ]
1164
+ "internalPropertyName": "profiling.longLivedThreshold"
1171
1165
  }
1172
1166
  ],
1173
1167
  "DD_INTERNAL_PROFILING_TIMELINE_SAMPLING_ENABLED": [
@@ -1189,9 +1183,7 @@
1189
1183
  "implementation": "A",
1190
1184
  "type": "int",
1191
1185
  "default": "128",
1192
- "configurationNames": [
1193
- "langchain.spanCharLimit"
1194
- ]
1186
+ "internalPropertyName": "langchain.spanCharLimit"
1195
1187
  }
1196
1188
  ],
1197
1189
  "DD_LANGCHAIN_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
@@ -1199,9 +1191,7 @@
1199
1191
  "implementation": "A",
1200
1192
  "type": "decimal",
1201
1193
  "default": "1",
1202
- "configurationNames": [
1203
- "langchain.spanPromptCompletionSampleRate"
1204
- ]
1194
+ "internalPropertyName": "langchain.spanPromptCompletionSampleRate"
1205
1195
  }
1206
1196
  ],
1207
1197
  "DD_LLMOBS_AGENTLESS_ENABLED": [
@@ -1219,9 +1209,7 @@
1219
1209
  "implementation": "A",
1220
1210
  "type": "boolean",
1221
1211
  "default": "false",
1222
- "configurationNames": [
1223
- "llmobs.enabled"
1224
- ]
1212
+ "internalPropertyName": "llmobs.enabled"
1225
1213
  }
1226
1214
  ],
1227
1215
  "DD_LLMOBS_ML_APP": [
@@ -1249,16 +1237,22 @@
1249
1237
  "implementation": "A",
1250
1238
  "type": "boolean",
1251
1239
  "default": "false",
1252
- "configurationNames": [
1253
- "otelLogsEnabled"
1254
- ]
1240
+ "internalPropertyName": "otelLogsEnabled"
1255
1241
  }
1256
1242
  ],
1257
- "DD_LOG_LEVEL": [
1243
+ "DD_TRACE_LOG_LEVEL": [
1258
1244
  {
1259
- "implementation": "B",
1245
+ "implementation": "C",
1260
1246
  "type": "string",
1261
- "default": null
1247
+ "default": "debug",
1248
+ "configurationNames": [
1249
+ "logLevel"
1250
+ ],
1251
+ "aliases": [
1252
+ "DD_LOG_LEVEL",
1253
+ "OTEL_LOG_LEVEL"
1254
+ ],
1255
+ "allowed": "debug|info|warn|error"
1262
1256
  }
1263
1257
  ],
1264
1258
  "DD_METRICS_OTEL_ENABLED": [
@@ -1266,9 +1260,7 @@
1266
1260
  "implementation": "A",
1267
1261
  "type": "boolean",
1268
1262
  "default": "false",
1269
- "configurationNames": [
1270
- "otelMetricsEnabled"
1271
- ]
1263
+ "internalPropertyName": "otelMetricsEnabled"
1272
1264
  }
1273
1265
  ],
1274
1266
  "DD_MINI_AGENT_PATH": [
@@ -1293,9 +1285,7 @@
1293
1285
  "implementation": "A",
1294
1286
  "type": "int",
1295
1287
  "default": "128",
1296
- "configurationNames": [
1297
- "openai.spanCharLimit"
1298
- ]
1288
+ "internalPropertyName": "openai.spanCharLimit"
1299
1289
  }
1300
1290
  ],
1301
1291
  "DD_PIPELINE_EXECUTION_ID": [
@@ -1370,38 +1360,30 @@
1370
1360
  ],
1371
1361
  "DD_PROFILING_DEBUG_UPLOAD_COMPRESSION": [
1372
1362
  {
1373
- "implementation": "A",
1363
+ "implementation": "B",
1374
1364
  "type": "string",
1375
- "default": "zstd"
1365
+ "default": "on",
1366
+ "allowed": "on|off|(gzip|zstd)(-[1-9][0-9]?)?",
1367
+ "transform": "toLowerCase"
1376
1368
  }
1377
1369
  ],
1378
1370
  "DD_PROFILING_ENABLED": [
1379
1371
  {
1380
- "implementation": "A",
1381
- "type": "boolean",
1372
+ "implementation": "B",
1373
+ "type": "string",
1374
+ "internalPropertyName": "profiling.enabled",
1382
1375
  "configurationNames": [
1383
- "profiling.enabled"
1376
+ "profiling"
1384
1377
  ],
1378
+ "allowed": "false|true|auto|1|0",
1379
+ "transform": "normalizeProfilingEnabled",
1385
1380
  "default": "false",
1381
+ "__TODO__": "The alias is deprecated and should log. This needs an re-implementation.",
1386
1382
  "aliases": [
1387
1383
  "DD_EXPERIMENTAL_PROFILING_ENABLED"
1388
1384
  ]
1389
1385
  }
1390
1386
  ],
1391
- "DD_EXPERIMENTAL_PROFILING_ENABLED": [
1392
- {
1393
- "implementation": "A",
1394
- "type": "boolean",
1395
- "configurationNames": [
1396
- "profiling.enabled"
1397
- ],
1398
- "default": "false",
1399
- "aliases": [
1400
- "DD_PROFILING_ENABLED"
1401
- ],
1402
- "deprecated": true
1403
- }
1404
- ],
1405
1387
  "DD_PROFILING_ENDPOINT_COLLECTION_ENABLED": [
1406
1388
  {
1407
1389
  "implementation": "A",
@@ -1425,8 +1407,8 @@
1425
1407
  ],
1426
1408
  "DD_PROFILING_EXPERIMENTAL_OOM_EXPORT_STRATEGIES": [
1427
1409
  {
1428
- "implementation": "A",
1429
- "type": "string",
1410
+ "implementation": "B",
1411
+ "type": "array",
1430
1412
  "default": "process"
1431
1413
  }
1432
1414
  ],
@@ -1453,19 +1435,16 @@
1453
1435
  ],
1454
1436
  "DD_PROFILING_EXPORTERS": [
1455
1437
  {
1456
- "implementation": "A",
1457
- "type": "string",
1458
- "default": "agent",
1459
- "configurationNames": [
1460
- "profiling.exporters"
1461
- ]
1438
+ "implementation": "B",
1439
+ "type": "array",
1440
+ "default": "agent"
1462
1441
  }
1463
1442
  ],
1464
1443
  "DD_PROFILING_HEAP_ENABLED": [
1465
1444
  {
1466
- "implementation": "A",
1445
+ "implementation": "B",
1467
1446
  "type": "boolean",
1468
- "default": "false"
1447
+ "default": null
1469
1448
  }
1470
1449
  ],
1471
1450
  "DD_PROFILING_HEAP_SAMPLING_INTERVAL": [
@@ -1484,8 +1463,8 @@
1484
1463
  ],
1485
1464
  "DD_PROFILING_PROFILERS": [
1486
1465
  {
1487
- "implementation": "A",
1488
- "type": "string",
1466
+ "implementation": "B",
1467
+ "type": "array",
1489
1468
  "default": "space,wall"
1490
1469
  }
1491
1470
  ],
@@ -1493,10 +1472,7 @@
1493
1472
  {
1494
1473
  "implementation": "A",
1495
1474
  "type": "boolean",
1496
- "default": "true",
1497
- "configurationNames": [
1498
- "profiling.sourceMap"
1499
- ]
1475
+ "default": "true"
1500
1476
  }
1501
1477
  ],
1502
1478
  "DD_PROFILING_TIMELINE_ENABLED": [
@@ -1543,9 +1519,9 @@
1543
1519
  ],
1544
1520
  "DD_PROFILING_WALLTIME_ENABLED": [
1545
1521
  {
1546
- "implementation": "B",
1522
+ "implementation": "A",
1547
1523
  "type": "boolean",
1548
- "default": "true"
1524
+ "default": null
1549
1525
  }
1550
1526
  ],
1551
1527
  "DD_REMOTE_CONFIGURATION_ENABLED": [
@@ -1556,9 +1532,7 @@
1556
1532
  "aliases": [
1557
1533
  "DD_REMOTE_CONFIG_ENABLED"
1558
1534
  ],
1559
- "configurationNames": [
1560
- "remoteConfig.enabled"
1561
- ]
1535
+ "internalPropertyName": "remoteConfig.enabled"
1562
1536
  }
1563
1537
  ],
1564
1538
  "DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": [
@@ -1576,7 +1550,8 @@
1576
1550
  "implementation": "A",
1577
1551
  "type": "boolean",
1578
1552
  "configurationNames": [
1579
- "runtimeMetrics.enabled"
1553
+ "runtimeMetrics.enabled",
1554
+ "runtimeMetrics"
1580
1555
  ],
1581
1556
  "default": "false"
1582
1557
  }
@@ -1621,6 +1596,14 @@
1621
1596
  ]
1622
1597
  }
1623
1598
  ],
1599
+ "DD_ROOT_JS_SESSION_ID": [
1600
+ {
1601
+ "implementation": "A",
1602
+ "type": "string",
1603
+ "default": null,
1604
+ "internal": true
1605
+ }
1606
+ ],
1624
1607
  "DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED": [
1625
1608
  {
1626
1609
  "implementation": "B",
@@ -1641,8 +1624,10 @@
1641
1624
  ],
1642
1625
  "default": null,
1643
1626
  "aliases": [
1644
- "DD_SERVICE_NAME"
1645
- ]
1627
+ "DD_SERVICE_NAME",
1628
+ "OTEL_SERVICE_NAME"
1629
+ ],
1630
+ "allowed": ".+"
1646
1631
  }
1647
1632
  ],
1648
1633
  "DD_SERVICE_MAPPING": [
@@ -1667,20 +1652,21 @@
1667
1652
  ],
1668
1653
  "DD_SPAN_SAMPLING_RULES": [
1669
1654
  {
1670
- "implementation": "C",
1671
- "type": "array",
1655
+ "implementation": "D",
1656
+ "type": "json",
1672
1657
  "configurationNames": [
1673
- "spanSamplingRules",
1674
- "sampler.spanSamplingRules"
1658
+ "spanSamplingRules"
1675
1659
  ],
1676
- "default": null
1660
+ "default": null,
1661
+ "transform": "toCamelCase"
1677
1662
  }
1678
1663
  ],
1679
1664
  "DD_SPAN_SAMPLING_RULES_FILE": [
1680
1665
  {
1681
- "implementation": "B",
1666
+ "implementation": "A",
1682
1667
  "type": "string",
1683
- "default": ""
1668
+ "default": null,
1669
+ "transform": "readFilePath"
1684
1670
  }
1685
1671
  ],
1686
1672
  "DD_TAGS": [
@@ -1698,9 +1684,7 @@
1698
1684
  "implementation": "A",
1699
1685
  "type": "boolean",
1700
1686
  "default": "false",
1701
- "configurationNames": [
1702
- "telemetry.debug"
1703
- ]
1687
+ "internalPropertyName": "telemetry.debug"
1704
1688
  }
1705
1689
  ],
1706
1690
  "DD_TELEMETRY_DEPENDENCY_COLLECTION_ENABLED": [
@@ -1708,9 +1692,7 @@
1708
1692
  "implementation": "A",
1709
1693
  "type": "boolean",
1710
1694
  "default": "true",
1711
- "configurationNames": [
1712
- "telemetry.dependencyCollection"
1713
- ]
1695
+ "internalPropertyName": "telemetry.dependencyCollection"
1714
1696
  }
1715
1697
  ],
1716
1698
  "DD_TELEMETRY_FORWARDER_PATH": [
@@ -1720,14 +1702,20 @@
1720
1702
  "default": null
1721
1703
  }
1722
1704
  ],
1705
+ "DD_TELEMETRY_EXTENDED_HEARTBEAT_INTERVAL": [
1706
+ {
1707
+ "implementation": "A",
1708
+ "type": "int",
1709
+ "default": "86400",
1710
+ "internalPropertyName": "telemetry.extendedHeartbeatInterval"
1711
+ }
1712
+ ],
1723
1713
  "DD_TELEMETRY_HEARTBEAT_INTERVAL": [
1724
1714
  {
1725
1715
  "implementation": "B",
1726
1716
  "type": "decimal",
1727
1717
  "default": "60.0",
1728
- "configurationNames": [
1729
- "telemetry.heartbeatInterval"
1730
- ]
1718
+ "internalPropertyName": "telemetry.heartbeatInterval"
1731
1719
  }
1732
1720
  ],
1733
1721
  "DD_TELEMETRY_LOG_COLLECTION_ENABLED": [
@@ -1735,9 +1723,7 @@
1735
1723
  "implementation": "A",
1736
1724
  "type": "boolean",
1737
1725
  "default": "true",
1738
- "configurationNames": [
1739
- "telemetry.logCollection"
1740
- ]
1726
+ "internalPropertyName": "telemetry.logCollection"
1741
1727
  }
1742
1728
  ],
1743
1729
  "DD_TELEMETRY_METRICS_ENABLED": [
@@ -1745,9 +1731,7 @@
1745
1731
  "implementation": "A",
1746
1732
  "type": "boolean",
1747
1733
  "default": "true",
1748
- "configurationNames": [
1749
- "telemetry.metrics"
1750
- ]
1734
+ "internalPropertyName": "telemetry.metrics"
1751
1735
  }
1752
1736
  ],
1753
1737
  "DD_TEST_FAILED_TEST_REPLAY_ENABLED": [
@@ -1755,9 +1739,7 @@
1755
1739
  "implementation": "A",
1756
1740
  "type": "boolean",
1757
1741
  "default": "true",
1758
- "configurationNames": [
1759
- "isTestDynamicInstrumentationEnabled"
1760
- ]
1742
+ "internalPropertyName": "isTestDynamicInstrumentationEnabled"
1761
1743
  }
1762
1744
  ],
1763
1745
  "DD_TEST_FLEET_CONFIG_PATH": [
@@ -1779,9 +1761,7 @@
1779
1761
  "implementation": "C",
1780
1762
  "type": "int",
1781
1763
  "default": "20",
1782
- "configurationNames": [
1783
- "testManagementAttemptToFixRetries"
1784
- ]
1764
+ "internalPropertyName": "testManagementAttemptToFixRetries"
1785
1765
  }
1786
1766
  ],
1787
1767
  "DD_TEST_MANAGEMENT_ENABLED": [
@@ -1789,9 +1769,7 @@
1789
1769
  "implementation": "A",
1790
1770
  "type": "boolean",
1791
1771
  "default": "true",
1792
- "configurationNames": [
1793
- "isTestManagementEnabled"
1794
- ]
1772
+ "internalPropertyName": "isTestManagementEnabled"
1795
1773
  }
1796
1774
  ],
1797
1775
  "DD_TEST_TIA_KEEP_COV_CONFIG": [
@@ -1799,9 +1777,7 @@
1799
1777
  "implementation": "A",
1800
1778
  "type": "boolean",
1801
1779
  "default": "false",
1802
- "configurationNames": [
1803
- "isKeepingCoverageConfiguration"
1804
- ]
1780
+ "internalPropertyName": "isKeepingCoverageConfiguration"
1805
1781
  }
1806
1782
  ],
1807
1783
  "DD_TEST_SESSION_NAME": [
@@ -1809,9 +1785,7 @@
1809
1785
  "implementation": "A",
1810
1786
  "type": "string",
1811
1787
  "default": null,
1812
- "configurationNames": [
1813
- "ciVisibilityTestSessionName"
1814
- ]
1788
+ "internalPropertyName": "ciVisibilityTestSessionName"
1815
1789
  }
1816
1790
  ],
1817
1791
  "DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": [
@@ -1963,9 +1937,7 @@
1963
1937
  "implementation": "A",
1964
1938
  "type": "boolean",
1965
1939
  "default": "true",
1966
- "configurationNames": [
1967
- "trace.aws.addSpanPointers"
1968
- ]
1940
+ "internalPropertyName": "trace.aws.addSpanPointers"
1969
1941
  }
1970
1942
  ],
1971
1943
  "DD_TRACE_AWS_SDK_AWS_BATCH_PROPAGATION_ENABLED": [
@@ -2351,7 +2323,8 @@
2351
2323
  "configurationNames": [
2352
2324
  "clientIpHeader"
2353
2325
  ],
2354
- "default": null
2326
+ "default": null,
2327
+ "transform": "toLowerCase"
2355
2328
  }
2356
2329
  ],
2357
2330
  "DD_TRACE_CLOUD_PAYLOAD_TAGGING_MAX_DEPTH": [
@@ -2361,27 +2334,30 @@
2361
2334
  "configurationNames": [
2362
2335
  "cloudPayloadTagging.maxDepth"
2363
2336
  ],
2364
- "default": "10"
2337
+ "default": "10",
2338
+ "allowed": "\\d+"
2365
2339
  }
2366
2340
  ],
2367
2341
  "DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": [
2368
2342
  {
2369
- "implementation": "A",
2370
- "type": "array",
2343
+ "implementation": "B",
2344
+ "type": "string",
2371
2345
  "configurationNames": [
2372
2346
  "cloudPayloadTagging.request"
2373
2347
  ],
2374
- "default": null
2348
+ "default": null,
2349
+ "transform": "splitJSONPathRules"
2375
2350
  }
2376
2351
  ],
2377
2352
  "DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": [
2378
2353
  {
2379
- "implementation": "A",
2380
- "type": "array",
2354
+ "implementation": "B",
2355
+ "type": "string",
2381
2356
  "configurationNames": [
2382
2357
  "cloudPayloadTagging.response"
2383
2358
  ],
2384
- "default": null
2359
+ "default": null,
2360
+ "transform": "splitJSONPathRules"
2385
2361
  }
2386
2362
  ],
2387
2363
  "DD_TRACE_COLLECTIONS_ENABLED": [
@@ -2494,9 +2470,7 @@
2494
2470
  "implementation": "A",
2495
2471
  "type": "string",
2496
2472
  "default": null,
2497
- "configurationNames": [
2498
- "trace.dynamoDb.tablePrimaryKeys"
2499
- ]
2473
+ "internalPropertyName": "trace.dynamoDb.tablePrimaryKeys"
2500
2474
  }
2501
2475
  ],
2502
2476
  "DD_TRACE_ELASTICSEARCH_ENABLED": [
@@ -2525,8 +2499,9 @@
2525
2499
  "implementation": "A",
2526
2500
  "type": "boolean",
2527
2501
  "default": "true",
2528
- "configurationNames": [
2529
- "traceEnabled"
2502
+ "internalPropertyName": "tracing",
2503
+ "aliases": [
2504
+ "DD_TRACING_ENABLED"
2530
2505
  ]
2531
2506
  }
2532
2507
  ],
@@ -2644,10 +2619,7 @@
2644
2619
  {
2645
2620
  "implementation": "A",
2646
2621
  "type": "boolean",
2647
- "default": "true",
2648
- "configurationNames": [
2649
- "isGCPPubSubPushSubscriptionEnabled"
2650
- ]
2622
+ "default": "true"
2651
2623
  }
2652
2624
  ],
2653
2625
  "DD_TRACE_GENERIC_POOL_ENABLED": [
@@ -2662,9 +2634,7 @@
2662
2634
  "implementation": "A",
2663
2635
  "type": "boolean",
2664
2636
  "default": "true",
2665
- "configurationNames": [
2666
- "gitMetadataEnabled"
2667
- ]
2637
+ "internalPropertyName": "gitMetadataEnabled"
2668
2638
  }
2669
2639
  ],
2670
2640
  "DD_TRACE_GOOGLE_CLOUD_PUBSUB_ENABLED": [
@@ -2707,9 +2677,7 @@
2707
2677
  "implementation": "A",
2708
2678
  "type": "array",
2709
2679
  "default": "",
2710
- "configurationNames": [
2711
- "graphqlErrorExtensions"
2712
- ]
2680
+ "internalPropertyName": "graphqlErrorExtensions"
2713
2681
  }
2714
2682
  ],
2715
2683
  "DD_TRACE_GRAPHQL_TAG_ENABLED": [
@@ -2796,7 +2764,8 @@
2796
2764
  "default": "",
2797
2765
  "configurationNames": [
2798
2766
  "headerTags"
2799
- ]
2767
+ ],
2768
+ "transform": "stripColonWhitespace"
2800
2769
  }
2801
2770
  ],
2802
2771
  "DD_TRACE_HONO_ENABLED": [
@@ -3064,13 +3033,6 @@
3064
3033
  "default": "true"
3065
3034
  }
3066
3035
  ],
3067
- "DD_TRACE_LOG_LEVEL": [
3068
- {
3069
- "implementation": "C",
3070
- "type": "string",
3071
- "default": "debug"
3072
- }
3073
- ],
3074
3036
  "DD_TRACE_LOOPBACK_ENABLED": [
3075
3037
  {
3076
3038
  "implementation": "A",
@@ -3090,9 +3052,7 @@
3090
3052
  "implementation": "A",
3091
3053
  "type": "boolean",
3092
3054
  "default": "false",
3093
- "configurationNames": [
3094
- "memcachedCommandEnabled"
3095
- ]
3055
+ "internalPropertyName": "memcachedCommandEnabled"
3096
3056
  }
3097
3057
  ],
3098
3058
  "DD_TRACE_MEMCACHED_ENABLED": [
@@ -3208,9 +3168,7 @@
3208
3168
  "implementation": "A",
3209
3169
  "type": "boolean",
3210
3170
  "default": "false",
3211
- "configurationNames": [
3212
- "trace.nativeSpanEvents"
3213
- ]
3171
+ "internalPropertyName": "trace.nativeSpanEvents"
3214
3172
  }
3215
3173
  ],
3216
3174
  "DD_TRACE_NET_ENABLED": [
@@ -3260,9 +3218,7 @@
3260
3218
  "implementation": "F",
3261
3219
  "type": "string",
3262
3220
  "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,}",
3263
- "configurationNames": [
3264
- "queryStringObfuscation"
3265
- ]
3221
+ "internalPropertyName": "queryStringObfuscation"
3266
3222
  }
3267
3223
  ],
3268
3224
  "DD_TRACE_OPENAI_ENABLED": [
@@ -3453,10 +3409,10 @@
3453
3409
  {
3454
3410
  "implementation": "B",
3455
3411
  "type": "string",
3412
+ "allowed": "continue|restart|ignore",
3413
+ "transform": "toLowerCase",
3456
3414
  "default": "continue",
3457
- "configurationNames": [
3458
- "tracePropagationBehaviorExtract"
3459
- ]
3415
+ "internalPropertyName": "tracePropagationBehaviorExtract"
3460
3416
  }
3461
3417
  ],
3462
3418
  "DD_TRACE_PROPAGATION_EXTRACT_FIRST": [
@@ -3464,19 +3420,18 @@
3464
3420
  "implementation": "A",
3465
3421
  "type": "boolean",
3466
3422
  "default": "false",
3467
- "configurationNames": [
3468
- "tracePropagationExtractFirst"
3469
- ]
3423
+ "internalPropertyName": "tracePropagationExtractFirst"
3470
3424
  }
3471
3425
  ],
3472
3426
  "DD_TRACE_PROPAGATION_STYLE": [
3473
3427
  {
3474
3428
  "implementation": "D",
3475
3429
  "type": "array",
3476
- "configurationNames": [
3477
- "tracePropagationStyle"
3478
- ],
3479
- "default": "datadog,tracecontext,baggage"
3430
+ "default": "datadog,tracecontext,baggage",
3431
+ "transform": "validatePropagationStyles",
3432
+ "aliases": [
3433
+ "OTEL_PROPAGATORS"
3434
+ ]
3480
3435
  }
3481
3436
  ],
3482
3437
  "DD_TRACE_PROPAGATION_STYLE_EXTRACT": [
@@ -3486,7 +3441,8 @@
3486
3441
  "configurationNames": [
3487
3442
  "tracePropagationStyle.extract"
3488
3443
  ],
3489
- "default": "datadog, tracecontext, baggage"
3444
+ "default": "datadog, tracecontext, baggage",
3445
+ "transform": "toLowerCase"
3490
3446
  }
3491
3447
  ],
3492
3448
  "DD_TRACE_PROPAGATION_STYLE_INJECT": [
@@ -3496,7 +3452,8 @@
3496
3452
  "configurationNames": [
3497
3453
  "tracePropagationStyle.inject"
3498
3454
  ],
3499
- "default": "datadog, tracecontext, baggage"
3455
+ "default": "datadog, tracecontext, baggage",
3456
+ "transform": "toLowerCase"
3500
3457
  }
3501
3458
  ],
3502
3459
  "DD_TRACE_PROTOBUFJS_ENABLED": [
@@ -3525,8 +3482,8 @@
3525
3482
  "implementation": "A",
3526
3483
  "type": "int",
3527
3484
  "configurationNames": [
3528
- "ingestion.rateLimit",
3529
- "sampler.rateLimit"
3485
+ "rateLimit",
3486
+ "ingestion.rateLimit"
3530
3487
  ],
3531
3488
  "default": "100"
3532
3489
  }
@@ -3591,9 +3548,7 @@
3591
3548
  "implementation": "A",
3592
3549
  "type": "boolean",
3593
3550
  "default": "false",
3594
- "configurationNames": [
3595
- "resourceRenamingEnabled"
3596
- ]
3551
+ "internalPropertyName": "resourceRenamingEnabled"
3597
3552
  }
3598
3553
  ],
3599
3554
  "DD_TRACE_RESTIFY_ENABLED": [
@@ -3622,20 +3577,22 @@
3622
3577
  "implementation": "B",
3623
3578
  "type": "decimal",
3624
3579
  "configurationNames": [
3580
+ "sampleRate",
3625
3581
  "ingestion.sampleRate"
3626
3582
  ],
3627
- "default": null
3583
+ "default": null,
3584
+ "transform": "sampleRate"
3628
3585
  }
3629
3586
  ],
3630
3587
  "DD_TRACE_SAMPLING_RULES": [
3631
3588
  {
3632
- "implementation": "A",
3633
- "type": "array",
3589
+ "implementation": "E",
3590
+ "type": "json",
3634
3591
  "configurationNames": [
3635
- "samplingRules",
3636
- "sampler.rules"
3592
+ "samplingRules"
3637
3593
  ],
3638
- "default": ""
3594
+ "default": "[]",
3595
+ "transform": "toCamelCase"
3639
3596
  }
3640
3597
  ],
3641
3598
  "DD_TRACE_SCOPE": [
@@ -3643,9 +3600,7 @@
3643
3600
  "implementation": "A",
3644
3601
  "type": "string",
3645
3602
  "default": null,
3646
- "configurationNames": [
3647
- "scope"
3648
- ]
3603
+ "internalPropertyName": "scope"
3649
3604
  }
3650
3605
  ],
3651
3606
  "DD_TRACE_SELENIUM_ENABLED": [
@@ -3687,6 +3642,8 @@
3687
3642
  {
3688
3643
  "implementation": "B",
3689
3644
  "type": "string",
3645
+ "allowed": "v0|v1",
3646
+ "transform": "toLowerCase",
3690
3647
  "configurationNames": [
3691
3648
  "spanAttributeSchema"
3692
3649
  ],
@@ -3697,9 +3654,7 @@
3697
3654
  {
3698
3655
  "implementation": "A",
3699
3656
  "type": "int",
3700
- "configurationNames": [
3701
- "spanLeakDebug"
3702
- ],
3657
+ "internalPropertyName": "spanLeakDebug",
3703
3658
  "default": "0"
3704
3659
  }
3705
3660
  ],
@@ -3712,20 +3667,21 @@
3712
3667
  ],
3713
3668
  "DD_TRACE_STARTUP_LOGS": [
3714
3669
  {
3715
- "implementation": "D",
3670
+ "implementation": "C",
3716
3671
  "type": "boolean",
3717
3672
  "configurationNames": [
3718
3673
  "startupLogs"
3719
3674
  ],
3720
- "default": "false"
3675
+ "default": "true"
3721
3676
  }
3722
3677
  ],
3723
3678
  "DD_TRACE_STATS_COMPUTATION_ENABLED": [
3724
3679
  {
3725
3680
  "implementation": "A",
3726
3681
  "type": "boolean",
3682
+ "internalPropertyName": "stats.enabled",
3727
3683
  "configurationNames": [
3728
- "stats.enabled"
3684
+ "stats"
3729
3685
  ],
3730
3686
  "default": "false"
3731
3687
  }
@@ -3852,19 +3808,7 @@
3852
3808
  "implementation": "A",
3853
3809
  "type": "int",
3854
3810
  "default": "512",
3855
- "configurationNames": [
3856
- "tagsHeaderMaxLength"
3857
- ]
3858
- }
3859
- ],
3860
- "DD_TRACING_ENABLED": [
3861
- {
3862
- "implementation": "A",
3863
- "type": "boolean",
3864
- "default": "true",
3865
- "configurationNames": [
3866
- "tracing"
3867
- ]
3811
+ "internalPropertyName": "tagsHeaderMaxLength"
3868
3812
  }
3869
3813
  ],
3870
3814
  "DD_VERSION": [
@@ -3882,9 +3826,7 @@
3882
3826
  "implementation": "A",
3883
3827
  "type": "int",
3884
3828
  "default": "128",
3885
- "configurationNames": [
3886
- "vertexai.spanCharLimit"
3887
- ]
3829
+ "internalPropertyName": "vertexai.spanCharLimit"
3888
3830
  }
3889
3831
  ],
3890
3832
  "DD_VERTEXAI_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
@@ -3892,9 +3834,7 @@
3892
3834
  "implementation": "A",
3893
3835
  "type": "decimal",
3894
3836
  "default": "1",
3895
- "configurationNames": [
3896
- "vertexai.spanPromptCompletionSampleRate"
3897
- ]
3837
+ "internalPropertyName": "vertexai.spanPromptCompletionSampleRate"
3898
3838
  }
3899
3839
  ],
3900
3840
  "DD_VITEST_WORKER": [
@@ -3908,50 +3848,42 @@
3908
3848
  {
3909
3849
  "implementation": "A",
3910
3850
  "type": "int",
3911
- "configurationNames": [
3912
- "otelMaxExportBatchSize"
3913
- ],
3914
- "default": "512"
3851
+ "internalPropertyName": "otelMaxExportBatchSize",
3852
+ "default": "512",
3853
+ "allowed": "[1-9]\\d*"
3915
3854
  }
3916
3855
  ],
3917
3856
  "OTEL_BSP_MAX_QUEUE_SIZE": [
3918
3857
  {
3919
3858
  "implementation": "A",
3920
3859
  "type": "int",
3921
- "configurationNames": [
3922
- "otelMaxQueueSize"
3923
- ],
3924
- "default": "2048"
3860
+ "internalPropertyName": "otelMaxQueueSize",
3861
+ "default": "2048",
3862
+ "allowed": "[1-9]\\d*"
3925
3863
  }
3926
3864
  ],
3927
3865
  "OTEL_BSP_SCHEDULE_DELAY": [
3928
3866
  {
3929
3867
  "implementation": "A",
3930
3868
  "type": "int",
3931
- "configurationNames": [
3932
- "otelBatchTimeout"
3933
- ],
3934
- "default": "5000"
3869
+ "internalPropertyName": "otelBatchTimeout",
3870
+ "default": "5000",
3871
+ "allowed": "[1-9]\\d*"
3935
3872
  }
3936
3873
  ],
3937
3874
  "OTEL_EXPORTER_OTLP_ENDPOINT": [
3938
3875
  {
3939
3876
  "implementation": "A",
3940
3877
  "type": "string",
3941
- "default": null,
3942
- "configurationNames": [
3943
- "otelUrl"
3944
- ]
3878
+ "default": null
3945
3879
  }
3946
3880
  ],
3947
3881
  "OTEL_EXPORTER_OTLP_HEADERS": [
3948
3882
  {
3949
- "implementation": "B",
3950
- "type": "map",
3883
+ "implementation": "C",
3884
+ "type": "string",
3951
3885
  "default": null,
3952
- "configurationNames": [
3953
- "otelHeaders"
3954
- ]
3886
+ "internalPropertyName": "otelHeaders"
3955
3887
  }
3956
3888
  ],
3957
3889
  "OTEL_EXPORTER_OTLP_LOGS_ENDPOINT": [
@@ -3959,18 +3891,20 @@
3959
3891
  "implementation": "A",
3960
3892
  "type": "string",
3961
3893
  "default": null,
3962
- "configurationNames": [
3963
- "otelLogsUrl"
3894
+ "internalPropertyName": "otelLogsUrl",
3895
+ "aliases": [
3896
+ "OTEL_EXPORTER_OTLP_ENDPOINT"
3964
3897
  ]
3965
3898
  }
3966
3899
  ],
3967
3900
  "OTEL_EXPORTER_OTLP_LOGS_HEADERS": [
3968
3901
  {
3969
- "implementation": "B",
3970
- "type": "map",
3902
+ "implementation": "A",
3903
+ "type": "string",
3971
3904
  "default": null,
3972
- "configurationNames": [
3973
- "otelLogsHeaders"
3905
+ "internalPropertyName": "otelLogsHeaders",
3906
+ "aliases": [
3907
+ "OTEL_EXPORTER_OTLP_HEADERS"
3974
3908
  ]
3975
3909
  }
3976
3910
  ],
@@ -3979,8 +3913,9 @@
3979
3913
  "implementation": "D",
3980
3914
  "type": "string",
3981
3915
  "default": "http/protobuf",
3982
- "configurationNames": [
3983
- "otelLogsProtocol"
3916
+ "internalPropertyName": "otelLogsProtocol",
3917
+ "aliases": [
3918
+ "OTEL_EXPORTER_OTLP_PROTOCOL"
3984
3919
  ]
3985
3920
  }
3986
3921
  ],
@@ -3988,10 +3923,12 @@
3988
3923
  {
3989
3924
  "implementation": "A",
3990
3925
  "type": "int",
3991
- "configurationNames": [
3992
- "otelLogsTimeout"
3993
- ],
3994
- "default": "10000"
3926
+ "internalPropertyName": "otelLogsTimeout",
3927
+ "default": "10000",
3928
+ "allowed": "[1-9]\\d*",
3929
+ "aliases": [
3930
+ "OTEL_EXPORTER_OTLP_TIMEOUT"
3931
+ ]
3995
3932
  }
3996
3933
  ],
3997
3934
  "OTEL_EXPORTER_OTLP_METRICS_ENDPOINT": [
@@ -3999,18 +3936,20 @@
3999
3936
  "implementation": "A",
4000
3937
  "type": "string",
4001
3938
  "default": null,
4002
- "configurationNames": [
4003
- "otelMetricsUrl"
3939
+ "internalPropertyName": "otelMetricsUrl",
3940
+ "aliases": [
3941
+ "OTEL_EXPORTER_OTLP_ENDPOINT"
4004
3942
  ]
4005
3943
  }
4006
3944
  ],
4007
3945
  "OTEL_EXPORTER_OTLP_METRICS_HEADERS": [
4008
3946
  {
4009
- "implementation": "A",
4010
- "type": "map",
3947
+ "implementation": "B",
3948
+ "type": "string",
4011
3949
  "default": null,
4012
- "configurationNames": [
4013
- "otelMetricsHeaders"
3950
+ "internalPropertyName": "otelMetricsHeaders",
3951
+ "aliases": [
3952
+ "OTEL_EXPORTER_OTLP_HEADERS"
4014
3953
  ]
4015
3954
  }
4016
3955
  ],
@@ -4019,8 +3958,9 @@
4019
3958
  "implementation": "B",
4020
3959
  "type": "string",
4021
3960
  "default": "http/protobuf",
4022
- "configurationNames": [
4023
- "otelMetricsProtocol"
3961
+ "internalPropertyName": "otelMetricsProtocol",
3962
+ "aliases": [
3963
+ "OTEL_EXPORTER_OTLP_PROTOCOL"
4024
3964
  ]
4025
3965
  }
4026
3966
  ],
@@ -4028,9 +3968,9 @@
4028
3968
  {
4029
3969
  "implementation": "A",
4030
3970
  "type": "string",
4031
- "configurationNames": [
4032
- "otelMetricsTemporalityPreference"
4033
- ],
3971
+ "allowed": "Delta|Cumulative|LowMemory",
3972
+ "transform": "toUpperCase",
3973
+ "internalPropertyName": "otelMetricsTemporalityPreference",
4034
3974
  "default": "delta"
4035
3975
  }
4036
3976
  ],
@@ -4038,10 +3978,12 @@
4038
3978
  {
4039
3979
  "implementation": "B",
4040
3980
  "type": "int",
4041
- "configurationNames": [
4042
- "otelMetricsTimeout"
4043
- ],
4044
- "default": "10000"
3981
+ "allowed": "[1-9]\\d*",
3982
+ "internalPropertyName": "otelMetricsTimeout",
3983
+ "default": "10000",
3984
+ "aliases": [
3985
+ "OTEL_EXPORTER_OTLP_TIMEOUT"
3986
+ ]
4045
3987
  }
4046
3988
  ],
4047
3989
  "OTEL_EXPORTER_OTLP_PROTOCOL": [
@@ -4049,18 +3991,15 @@
4049
3991
  "implementation": "A",
4050
3992
  "type": "string",
4051
3993
  "default": "http/protobuf",
4052
- "configurationNames": [
4053
- "otelProtocol"
4054
- ]
3994
+ "internalPropertyName": "otelProtocol"
4055
3995
  }
4056
3996
  ],
4057
3997
  "OTEL_EXPORTER_OTLP_TIMEOUT": [
4058
3998
  {
4059
3999
  "implementation": "A",
4060
4000
  "type": "int",
4061
- "configurationNames": [
4062
- "otelTimeout"
4063
- ],
4001
+ "allowed": "[1-9]\\d*",
4002
+ "internalPropertyName": "otelTimeout",
4064
4003
  "default": "10000"
4065
4004
  }
4066
4005
  ],
@@ -4068,30 +4007,26 @@
4068
4007
  {
4069
4008
  "implementation": "A",
4070
4009
  "type": "string",
4071
- "default": null
4072
- }
4073
- ],
4074
- "OTEL_LOG_LEVEL": [
4075
- {
4076
- "implementation": "C",
4077
- "type": "string",
4078
- "default": null
4010
+ "default": null,
4011
+ "allowed": "none|otlp",
4012
+ "transform": "toLowerCase"
4079
4013
  }
4080
4014
  ],
4081
4015
  "OTEL_METRICS_EXPORTER": [
4082
4016
  {
4083
4017
  "implementation": "C",
4084
4018
  "type": "string",
4085
- "default": null
4019
+ "default": null,
4020
+ "allowed": "none|otlp",
4021
+ "transform": "toLowerCase"
4086
4022
  }
4087
4023
  ],
4088
4024
  "OTEL_METRIC_EXPORT_INTERVAL": [
4089
4025
  {
4090
4026
  "implementation": "A",
4091
4027
  "type": "int",
4092
- "configurationNames": [
4093
- "otelMetricsExportInterval"
4094
- ],
4028
+ "allowed": "[1-9]\\d*",
4029
+ "internalPropertyName": "otelMetricsExportInterval",
4095
4030
  "default": "10000"
4096
4031
  }
4097
4032
  ],
@@ -4099,27 +4034,17 @@
4099
4034
  {
4100
4035
  "implementation": "A",
4101
4036
  "type": "int",
4102
- "configurationNames": [
4103
- "otelMetricsExportTimeout"
4104
- ],
4037
+ "allowed": "[1-9]\\d*",
4038
+ "internalPropertyName": "otelMetricsExportTimeout",
4105
4039
  "default": "7500"
4106
4040
  }
4107
4041
  ],
4108
- "OTEL_PROPAGATORS": [
4109
- {
4110
- "implementation": "A",
4111
- "type": "array",
4112
- "default": "",
4113
- "configurationNames": [
4114
- "tracePropagationStyle.otelPropagators"
4115
- ]
4116
- }
4117
- ],
4118
4042
  "OTEL_RESOURCE_ATTRIBUTES": [
4119
4043
  {
4120
4044
  "implementation": "B",
4121
4045
  "type": "string",
4122
- "default": ""
4046
+ "default": "",
4047
+ "transform": "parseOtelTags"
4123
4048
  }
4124
4049
  ],
4125
4050
  "OTEL_SDK_DISABLED": [
@@ -4129,38 +4054,30 @@
4129
4054
  "default": "true"
4130
4055
  }
4131
4056
  ],
4132
- "OTEL_SERVICE_NAME": [
4133
- {
4134
- "implementation": "B",
4135
- "type": "string",
4136
- "configurationNames": [
4137
- "service"
4138
- ],
4139
- "default": null
4140
- }
4141
- ],
4142
4057
  "OTEL_TRACES_EXPORTER": [
4143
4058
  {
4144
4059
  "implementation": "F",
4145
4060
  "type": "string",
4146
- "default": "otlp"
4061
+ "default": "otlp",
4062
+ "allowed": "none|otlp",
4063
+ "transform": "toLowerCase"
4147
4064
  }
4148
4065
  ],
4149
4066
  "OTEL_TRACES_SAMPLER": [
4150
4067
  {
4151
4068
  "implementation": "E",
4152
4069
  "type": "string",
4153
- "default": "parentbased_always_on"
4070
+ "default": "parentbased_always_on",
4071
+ "allowed": "always_on|always_off|traceidratio|parentbased_always_on|parentbased_always_off|parentbased_traceidratio",
4072
+ "transform": "toLowerCase"
4154
4073
  }
4155
4074
  ],
4156
4075
  "OTEL_TRACES_SAMPLER_ARG": [
4157
4076
  {
4158
4077
  "implementation": "D",
4159
4078
  "type": "decimal",
4160
- "configurationNames": [
4161
- "sampleRate"
4162
- ],
4163
- "default": null
4079
+ "default": null,
4080
+ "allowed": "\\d+(\\.\\d+)?"
4164
4081
  }
4165
4082
  ]
4166
4083
  }