dd-trace 5.95.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.
- package/index.d.ts +43 -0
- package/package.json +10 -8
- package/packages/datadog-esbuild/index.js +20 -9
- package/packages/datadog-instrumentations/src/ai.js +112 -0
- package/packages/datadog-instrumentations/src/child_process.js +7 -17
- package/packages/datadog-instrumentations/src/crypto.js +1 -2
- package/packages/datadog-instrumentations/src/cucumber.js +4 -1
- package/packages/datadog-instrumentations/src/cypress-config.js +324 -0
- package/packages/datadog-instrumentations/src/cypress.js +86 -4
- package/packages/datadog-instrumentations/src/dns.js +1 -2
- package/packages/datadog-instrumentations/src/express.js +4 -4
- package/packages/datadog-instrumentations/src/fs.js +27 -29
- package/packages/datadog-instrumentations/src/graphql.js +1 -1
- package/packages/datadog-instrumentations/src/helpers/ai-messages.js +182 -0
- package/packages/datadog-instrumentations/src/helpers/bundler-register.js +41 -13
- package/packages/datadog-instrumentations/src/helpers/hook.js +31 -6
- package/packages/datadog-instrumentations/src/helpers/hooks.js +12 -19
- package/packages/datadog-instrumentations/src/helpers/instrument.js +27 -13
- package/packages/datadog-instrumentations/src/helpers/register.js +103 -142
- package/packages/datadog-instrumentations/src/helpers/rewriter/instrumentations/ai.js +25 -0
- package/packages/datadog-instrumentations/src/http/client.js +2 -3
- package/packages/datadog-instrumentations/src/http/server.js +2 -5
- package/packages/datadog-instrumentations/src/http2/client.js +1 -3
- package/packages/datadog-instrumentations/src/http2/server.js +1 -3
- package/packages/datadog-instrumentations/src/jest.js +13 -4
- package/packages/datadog-instrumentations/src/limitd-client.js +1 -1
- package/packages/datadog-instrumentations/src/mocha/utils.js +14 -1
- package/packages/datadog-instrumentations/src/net.js +2 -8
- package/packages/datadog-instrumentations/src/pino.js +1 -1
- package/packages/datadog-instrumentations/src/playwright.js +4 -1
- package/packages/datadog-instrumentations/src/prisma.js +1 -2
- package/packages/datadog-instrumentations/src/selenium.js +4 -1
- package/packages/datadog-instrumentations/src/sequelize.js +1 -1
- package/packages/datadog-instrumentations/src/url.js +1 -3
- package/packages/datadog-instrumentations/src/vitest.js +5 -1
- package/packages/datadog-instrumentations/src/vm.js +1 -3
- package/packages/datadog-plugin-aws-sdk/src/base.js +4 -3
- package/packages/datadog-plugin-cucumber/src/index.js +7 -3
- package/packages/datadog-plugin-cypress/src/cypress-plugin.js +57 -5
- package/packages/datadog-plugin-graphql/src/resolve.js +1 -1
- package/packages/datadog-plugin-jest/src/index.js +4 -2
- package/packages/datadog-plugin-kafkajs/src/batch-consumer.js +31 -4
- package/packages/datadog-plugin-mocha/src/index.js +5 -2
- package/packages/datadog-plugin-next/src/index.js +2 -14
- package/packages/datadog-plugin-openai/src/services.js +1 -0
- package/packages/datadog-webpack/index.js +3 -3
- package/packages/dd-trace/index.js +12 -10
- package/packages/dd-trace/src/agent/url.js +2 -2
- package/packages/dd-trace/src/aiguard/index.js +64 -0
- package/packages/dd-trace/src/aiguard/sdk.js +4 -0
- package/packages/dd-trace/src/appsec/blocking.js +3 -0
- package/packages/dd-trace/src/appsec/iast/iast-plugin.js +1 -1
- package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/evidence-redaction/sensitive-handler.js +1 -1
- package/packages/dd-trace/src/appsec/iast/vulnerabilities-formatter/utils.js +1 -1
- package/packages/dd-trace/src/appsec/remote_config.js +1 -0
- package/packages/dd-trace/src/appsec/sdk/index.js +4 -0
- package/packages/dd-trace/src/ci-visibility/dynamic-instrumentation/index.js +6 -1
- package/packages/dd-trace/src/ci-visibility/lage.js +39 -0
- package/packages/dd-trace/src/ci-visibility/test-api-manual/test-api-manual-plugin.js +4 -0
- package/packages/dd-trace/src/config/defaults.js +316 -146
- package/packages/dd-trace/src/config/generated-config-types.d.ts +4 -1
- package/packages/dd-trace/src/config/helper.js +59 -10
- package/packages/dd-trace/src/config/index.js +570 -1503
- package/packages/dd-trace/src/config/parsers.js +256 -0
- package/packages/dd-trace/src/config/remote_config.js +59 -2
- package/packages/dd-trace/src/config/supported-configurations.json +367 -433
- package/packages/dd-trace/src/constants.js +1 -0
- package/packages/dd-trace/src/crashtracking/crashtracker.js +7 -1
- package/packages/dd-trace/src/crashtracking/index.js +1 -7
- package/packages/dd-trace/src/debugger/index.js +1 -1
- package/packages/dd-trace/src/dogstatsd.js +12 -9
- package/packages/dd-trace/src/encode/0.4.js +1 -1
- package/packages/dd-trace/src/exporter.js +5 -2
- package/packages/dd-trace/src/exporters/agent/writer.js +7 -1
- package/packages/dd-trace/src/exporters/common/request.js +9 -0
- package/packages/dd-trace/src/exporters/common/writer.js +12 -2
- package/packages/dd-trace/src/heap_snapshots.js +3 -0
- package/packages/dd-trace/src/index.js +5 -2
- package/packages/dd-trace/src/lambda/runtime/ritm.js +6 -6
- package/packages/dd-trace/src/llmobs/constants/text.js +3 -0
- package/packages/dd-trace/src/llmobs/index.js +13 -5
- package/packages/dd-trace/src/llmobs/plugins/ai/index.js +5 -1
- package/packages/dd-trace/src/llmobs/plugins/ai/util.js +60 -12
- package/packages/dd-trace/src/llmobs/plugins/bedrockruntime.js +4 -2
- package/packages/dd-trace/src/llmobs/sdk.js +12 -8
- package/packages/dd-trace/src/llmobs/span_processor.js +1 -1
- package/packages/dd-trace/src/llmobs/tagger.js +9 -6
- package/packages/dd-trace/src/llmobs/writers/base.js +2 -0
- package/packages/dd-trace/src/llmobs/writers/util.js +3 -0
- package/packages/dd-trace/src/log/index.js +26 -55
- package/packages/dd-trace/src/log/writer.js +7 -19
- package/packages/dd-trace/src/noop/proxy.js +8 -0
- package/packages/dd-trace/src/opentelemetry/logs/index.js +1 -1
- package/packages/dd-trace/src/opentelemetry/metrics/index.js +1 -1
- package/packages/dd-trace/src/opentracing/propagation/text_map.js +9 -4
- package/packages/dd-trace/src/payload-tagging/config/index.js +6 -5
- package/packages/dd-trace/src/plugin_manager.js +8 -6
- package/packages/dd-trace/src/plugins/ci_plugin.js +4 -0
- package/packages/dd-trace/src/plugins/plugin.js +7 -4
- package/packages/dd-trace/src/plugins/util/test.js +5 -0
- package/packages/dd-trace/src/process-tags/index.js +3 -0
- package/packages/dd-trace/src/profiler.js +27 -2
- package/packages/dd-trace/src/profiling/config.js +73 -241
- package/packages/dd-trace/src/profiling/exporter_cli.js +1 -4
- package/packages/dd-trace/src/profiling/exporters/event_serializer.js +6 -2
- package/packages/dd-trace/src/profiling/profiler.js +56 -44
- package/packages/dd-trace/src/profiling/profilers/events.js +2 -3
- package/packages/dd-trace/src/profiling/profilers/wall.js +89 -6
- package/packages/dd-trace/src/profiling/ssi-heuristics.js +4 -1
- package/packages/dd-trace/src/propagation-hash/index.js +2 -1
- package/packages/dd-trace/src/proxy.js +36 -3
- package/packages/dd-trace/src/remote_config/index.js +3 -0
- package/packages/dd-trace/src/require-package-json.js +8 -4
- package/packages/dd-trace/src/ritm.js +58 -26
- package/packages/dd-trace/src/runtime_metrics/index.js +3 -0
- package/packages/dd-trace/src/runtime_metrics/runtime_metrics.js +3 -0
- package/packages/dd-trace/src/sampler.js +1 -1
- package/packages/dd-trace/src/standalone/index.js +3 -0
- package/packages/dd-trace/src/startup-log.js +9 -0
- package/packages/dd-trace/src/telemetry/index.js +2 -3
- package/packages/dd-trace/src/telemetry/send-data.js +5 -19
- package/packages/dd-trace/src/telemetry/session-propagation.js +19 -44
- package/packages/dd-trace/src/telemetry/telemetry.js +28 -171
- 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
|
-
"
|
|
17
|
-
"ciVisAgentlessLogSubmissionEnabled"
|
|
18
|
-
]
|
|
16
|
+
"internalPropertyName": "ciVisAgentlessLogSubmissionEnabled"
|
|
19
17
|
}
|
|
20
18
|
],
|
|
21
19
|
"DD_AGENTLESS_LOG_SUBMISSION_URL": [
|
|
@@ -46,6 +44,16 @@
|
|
|
46
44
|
]
|
|
47
45
|
}
|
|
48
46
|
],
|
|
47
|
+
"DD_AI_GUARD_BLOCK": [
|
|
48
|
+
{
|
|
49
|
+
"implementation": "B",
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"configurationNames": [
|
|
52
|
+
"experimental.aiguard.block"
|
|
53
|
+
],
|
|
54
|
+
"default": "false"
|
|
55
|
+
}
|
|
56
|
+
],
|
|
49
57
|
"DD_AI_GUARD_ENABLED": [
|
|
50
58
|
{
|
|
51
59
|
"implementation": "A",
|
|
@@ -104,9 +112,7 @@
|
|
|
104
112
|
"aliases": [
|
|
105
113
|
"DATADOG_API_KEY"
|
|
106
114
|
],
|
|
107
|
-
"
|
|
108
|
-
"apiKey"
|
|
109
|
-
]
|
|
115
|
+
"internalPropertyName": "apiKey"
|
|
110
116
|
}
|
|
111
117
|
],
|
|
112
118
|
"DD_API_SECURITY_ENABLED": [
|
|
@@ -114,7 +120,8 @@
|
|
|
114
120
|
"implementation": "A",
|
|
115
121
|
"type": "boolean",
|
|
116
122
|
"configurationNames": [
|
|
117
|
-
"appsec.apiSecurity.enabled"
|
|
123
|
+
"appsec.apiSecurity.enabled",
|
|
124
|
+
"experimental.appsec.apiSecurity.enabled"
|
|
118
125
|
],
|
|
119
126
|
"default": "true",
|
|
120
127
|
"aliases": [
|
|
@@ -127,7 +134,8 @@
|
|
|
127
134
|
"implementation": "A",
|
|
128
135
|
"type": "boolean",
|
|
129
136
|
"configurationNames": [
|
|
130
|
-
"appsec.apiSecurity.endpointCollectionEnabled"
|
|
137
|
+
"appsec.apiSecurity.endpointCollectionEnabled",
|
|
138
|
+
"experimental.appsec.apiSecurity.endpointCollectionEnabled"
|
|
131
139
|
],
|
|
132
140
|
"default": "true"
|
|
133
141
|
}
|
|
@@ -137,7 +145,8 @@
|
|
|
137
145
|
"implementation": "A",
|
|
138
146
|
"type": "int",
|
|
139
147
|
"configurationNames": [
|
|
140
|
-
"appsec.apiSecurity.endpointCollectionMessageLimit"
|
|
148
|
+
"appsec.apiSecurity.endpointCollectionMessageLimit",
|
|
149
|
+
"experimental.appsec.apiSecurity.endpointCollectionMessageLimit"
|
|
141
150
|
],
|
|
142
151
|
"default": "300"
|
|
143
152
|
}
|
|
@@ -146,9 +155,7 @@
|
|
|
146
155
|
{
|
|
147
156
|
"implementation": "A",
|
|
148
157
|
"type": "decimal",
|
|
149
|
-
"
|
|
150
|
-
"appsec.apiSecurity.downstreamBodyAnalysisSampleRate"
|
|
151
|
-
],
|
|
158
|
+
"internalPropertyName": "appsec.apiSecurity.downstreamBodyAnalysisSampleRate",
|
|
152
159
|
"default": "0.5"
|
|
153
160
|
}
|
|
154
161
|
],
|
|
@@ -156,9 +163,7 @@
|
|
|
156
163
|
{
|
|
157
164
|
"implementation": "A",
|
|
158
165
|
"type": "int",
|
|
159
|
-
"
|
|
160
|
-
"appsec.apiSecurity.maxDownstreamRequestBodyAnalysis"
|
|
161
|
-
],
|
|
166
|
+
"internalPropertyName": "appsec.apiSecurity.maxDownstreamRequestBodyAnalysis",
|
|
162
167
|
"default": "1"
|
|
163
168
|
}
|
|
164
169
|
],
|
|
@@ -167,9 +172,7 @@
|
|
|
167
172
|
"implementation": "A",
|
|
168
173
|
"type": "decimal",
|
|
169
174
|
"default": "30",
|
|
170
|
-
"
|
|
171
|
-
"appsec.apiSecurity.sampleDelay"
|
|
172
|
-
]
|
|
175
|
+
"internalPropertyName": "appsec.apiSecurity.sampleDelay"
|
|
173
176
|
}
|
|
174
177
|
],
|
|
175
178
|
"DD_APM_FLUSH_DEADLINE_MILLISECONDS": [
|
|
@@ -194,7 +197,8 @@
|
|
|
194
197
|
"implementation": "E",
|
|
195
198
|
"type": "string",
|
|
196
199
|
"configurationNames": [
|
|
197
|
-
"appsec.eventTracking.mode"
|
|
200
|
+
"appsec.eventTracking.mode",
|
|
201
|
+
"experimental.appsec.eventTracking.mode"
|
|
198
202
|
],
|
|
199
203
|
"default": "identification",
|
|
200
204
|
"aliases": [
|
|
@@ -207,7 +211,8 @@
|
|
|
207
211
|
"implementation": "A",
|
|
208
212
|
"type": "boolean",
|
|
209
213
|
"configurationNames": [
|
|
210
|
-
"appsec.extendedHeadersCollection.enabled"
|
|
214
|
+
"appsec.extendedHeadersCollection.enabled",
|
|
215
|
+
"experimental.appsec.extendedHeadersCollection.enabled"
|
|
211
216
|
],
|
|
212
217
|
"default": "false",
|
|
213
218
|
"deprecated": true
|
|
@@ -218,7 +223,10 @@
|
|
|
218
223
|
"implementation": "C",
|
|
219
224
|
"type": "boolean",
|
|
220
225
|
"configurationNames": [
|
|
221
|
-
"appsec.enabled"
|
|
226
|
+
"appsec.enabled",
|
|
227
|
+
"appsec",
|
|
228
|
+
"experimental.appsec.enabled",
|
|
229
|
+
"experimental.appsec"
|
|
222
230
|
],
|
|
223
231
|
"default": null
|
|
224
232
|
}
|
|
@@ -228,9 +236,11 @@
|
|
|
228
236
|
"implementation": "A",
|
|
229
237
|
"type": "string",
|
|
230
238
|
"configurationNames": [
|
|
231
|
-
"appsec.blockedTemplateGraphql"
|
|
239
|
+
"appsec.blockedTemplateGraphql",
|
|
240
|
+
"experimental.appsec.blockedTemplateGraphql"
|
|
232
241
|
],
|
|
233
|
-
"default": null
|
|
242
|
+
"default": null,
|
|
243
|
+
"transform": "readFilePath"
|
|
234
244
|
}
|
|
235
245
|
],
|
|
236
246
|
"DD_APPSEC_HEADER_COLLECTION_REDACTION_ENABLED": [
|
|
@@ -238,7 +248,8 @@
|
|
|
238
248
|
"implementation": "A",
|
|
239
249
|
"type": "boolean",
|
|
240
250
|
"configurationNames": [
|
|
241
|
-
"appsec.extendedHeadersCollection.redaction"
|
|
251
|
+
"appsec.extendedHeadersCollection.redaction",
|
|
252
|
+
"experimental.appsec.extendedHeadersCollection.redaction"
|
|
242
253
|
],
|
|
243
254
|
"default": "true"
|
|
244
255
|
}
|
|
@@ -248,9 +259,11 @@
|
|
|
248
259
|
"implementation": "B",
|
|
249
260
|
"type": "string",
|
|
250
261
|
"configurationNames": [
|
|
251
|
-
"appsec.blockedTemplateHtml"
|
|
262
|
+
"appsec.blockedTemplateHtml",
|
|
263
|
+
"experimental.appsec.blockedTemplateHtml"
|
|
252
264
|
],
|
|
253
|
-
"default": null
|
|
265
|
+
"default": null,
|
|
266
|
+
"transform": "readFilePath"
|
|
254
267
|
}
|
|
255
268
|
],
|
|
256
269
|
"DD_APPSEC_HTTP_BLOCKED_TEMPLATE_JSON": [
|
|
@@ -258,9 +271,11 @@
|
|
|
258
271
|
"implementation": "B",
|
|
259
272
|
"type": "string",
|
|
260
273
|
"configurationNames": [
|
|
261
|
-
"appsec.blockedTemplateJson"
|
|
274
|
+
"appsec.blockedTemplateJson",
|
|
275
|
+
"experimental.appsec.blockedTemplateJson"
|
|
262
276
|
],
|
|
263
|
-
"default": null
|
|
277
|
+
"default": null,
|
|
278
|
+
"transform": "readFilePath"
|
|
264
279
|
}
|
|
265
280
|
],
|
|
266
281
|
"DD_APPSEC_MAX_COLLECTED_HEADERS": [
|
|
@@ -268,7 +283,8 @@
|
|
|
268
283
|
"implementation": "A",
|
|
269
284
|
"type": "int",
|
|
270
285
|
"configurationNames": [
|
|
271
|
-
"appsec.extendedHeadersCollection.maxHeaders"
|
|
286
|
+
"appsec.extendedHeadersCollection.maxHeaders",
|
|
287
|
+
"experimental.appsec.extendedHeadersCollection.maxHeaders"
|
|
272
288
|
],
|
|
273
289
|
"default": "50"
|
|
274
290
|
}
|
|
@@ -278,7 +294,11 @@
|
|
|
278
294
|
"implementation": "A",
|
|
279
295
|
"type": "int",
|
|
280
296
|
"configurationNames": [
|
|
281
|
-
"appsec.stackTrace.maxStackTraces"
|
|
297
|
+
"appsec.stackTrace.maxStackTraces",
|
|
298
|
+
"experimental.appsec.stackTrace.maxStackTraces"
|
|
299
|
+
],
|
|
300
|
+
"aliases": [
|
|
301
|
+
"DD_APPSEC_MAX_STACKTRACES"
|
|
282
302
|
],
|
|
283
303
|
"default": "2"
|
|
284
304
|
}
|
|
@@ -288,7 +308,11 @@
|
|
|
288
308
|
"implementation": "A",
|
|
289
309
|
"type": "int",
|
|
290
310
|
"configurationNames": [
|
|
291
|
-
"appsec.stackTrace.maxDepth"
|
|
311
|
+
"appsec.stackTrace.maxDepth",
|
|
312
|
+
"experimental.appsec.stackTrace.maxDepth"
|
|
313
|
+
],
|
|
314
|
+
"aliases": [
|
|
315
|
+
"DD_APPSEC_MAX_STACKTRACE_DEPTH"
|
|
292
316
|
],
|
|
293
317
|
"default": "32"
|
|
294
318
|
}
|
|
@@ -298,7 +322,8 @@
|
|
|
298
322
|
"implementation": "B",
|
|
299
323
|
"type": "string",
|
|
300
324
|
"configurationNames": [
|
|
301
|
-
"appsec.obfuscatorKeyRegex"
|
|
325
|
+
"appsec.obfuscatorKeyRegex",
|
|
326
|
+
"experimental.appsec.obfuscatorKeyRegex"
|
|
302
327
|
],
|
|
303
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"
|
|
304
329
|
}
|
|
@@ -308,7 +333,8 @@
|
|
|
308
333
|
"implementation": "G",
|
|
309
334
|
"type": "string",
|
|
310
335
|
"configurationNames": [
|
|
311
|
-
"appsec.obfuscatorValueRegex"
|
|
336
|
+
"appsec.obfuscatorValueRegex",
|
|
337
|
+
"experimental.appsec.obfuscatorValueRegex"
|
|
312
338
|
],
|
|
313
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,})"
|
|
314
340
|
}
|
|
@@ -318,7 +344,8 @@
|
|
|
318
344
|
"implementation": "A",
|
|
319
345
|
"type": "boolean",
|
|
320
346
|
"configurationNames": [
|
|
321
|
-
"appsec.rasp.bodyCollection"
|
|
347
|
+
"appsec.rasp.bodyCollection",
|
|
348
|
+
"experimental.appsec.rasp.bodyCollection"
|
|
322
349
|
],
|
|
323
350
|
"default": "false",
|
|
324
351
|
"deprecated": true
|
|
@@ -329,7 +356,8 @@
|
|
|
329
356
|
"implementation": "A",
|
|
330
357
|
"type": "boolean",
|
|
331
358
|
"configurationNames": [
|
|
332
|
-
"appsec.rasp.enabled"
|
|
359
|
+
"appsec.rasp.enabled",
|
|
360
|
+
"experimental.appsec.rasp.enabled"
|
|
333
361
|
],
|
|
334
362
|
"default": "true"
|
|
335
363
|
}
|
|
@@ -339,7 +367,8 @@
|
|
|
339
367
|
"implementation": "B",
|
|
340
368
|
"type": "string",
|
|
341
369
|
"configurationNames": [
|
|
342
|
-
"appsec.rules"
|
|
370
|
+
"appsec.rules",
|
|
371
|
+
"experimental.appsec.rules"
|
|
343
372
|
],
|
|
344
373
|
"default": null
|
|
345
374
|
}
|
|
@@ -349,9 +378,7 @@
|
|
|
349
378
|
"implementation": "B",
|
|
350
379
|
"type": "boolean",
|
|
351
380
|
"default": null,
|
|
352
|
-
"
|
|
353
|
-
"appsec.sca.enabled"
|
|
354
|
-
]
|
|
381
|
+
"internalPropertyName": "appsec.sca.enabled"
|
|
355
382
|
}
|
|
356
383
|
],
|
|
357
384
|
"DD_APPSEC_STACK_TRACE_ENABLED": [
|
|
@@ -359,7 +386,8 @@
|
|
|
359
386
|
"implementation": "A",
|
|
360
387
|
"type": "boolean",
|
|
361
388
|
"configurationNames": [
|
|
362
|
-
"appsec.stackTrace.enabled"
|
|
389
|
+
"appsec.stackTrace.enabled",
|
|
390
|
+
"experimental.appsec.stackTrace.enabled"
|
|
363
391
|
],
|
|
364
392
|
"default": "true"
|
|
365
393
|
}
|
|
@@ -369,7 +397,8 @@
|
|
|
369
397
|
"implementation": "A",
|
|
370
398
|
"type": "int",
|
|
371
399
|
"configurationNames": [
|
|
372
|
-
"appsec.rateLimit"
|
|
400
|
+
"appsec.rateLimit",
|
|
401
|
+
"experimental.appsec.rateLimit"
|
|
373
402
|
],
|
|
374
403
|
"default": "100"
|
|
375
404
|
}
|
|
@@ -379,7 +408,8 @@
|
|
|
379
408
|
"implementation": "E",
|
|
380
409
|
"type": "int",
|
|
381
410
|
"configurationNames": [
|
|
382
|
-
"appsec.wafTimeout"
|
|
411
|
+
"appsec.wafTimeout",
|
|
412
|
+
"experimental.appsec.wafTimeout"
|
|
383
413
|
],
|
|
384
414
|
"default": "5000"
|
|
385
415
|
}
|
|
@@ -389,9 +419,7 @@
|
|
|
389
419
|
"implementation": "A",
|
|
390
420
|
"type": "string",
|
|
391
421
|
"default": null,
|
|
392
|
-
"
|
|
393
|
-
"appKey"
|
|
394
|
-
]
|
|
422
|
+
"internalPropertyName": "appKey"
|
|
395
423
|
}
|
|
396
424
|
],
|
|
397
425
|
"DD_AZURE_RESOURCE_GROUP": [
|
|
@@ -441,9 +469,7 @@
|
|
|
441
469
|
"implementation": "B",
|
|
442
470
|
"type": "boolean",
|
|
443
471
|
"default": "true",
|
|
444
|
-
"
|
|
445
|
-
"isEarlyFlakeDetectionEnabled"
|
|
446
|
-
]
|
|
472
|
+
"internalPropertyName": "isEarlyFlakeDetectionEnabled"
|
|
447
473
|
}
|
|
448
474
|
],
|
|
449
475
|
"DD_CIVISIBILITY_ENABLED": [
|
|
@@ -458,9 +484,7 @@
|
|
|
458
484
|
"implementation": "A",
|
|
459
485
|
"type": "int",
|
|
460
486
|
"default": "5",
|
|
461
|
-
"
|
|
462
|
-
"flakyTestRetriesCount"
|
|
463
|
-
]
|
|
487
|
+
"internalPropertyName": "flakyTestRetriesCount"
|
|
464
488
|
}
|
|
465
489
|
],
|
|
466
490
|
"DD_CIVISIBILITY_FLAKY_RETRY_ENABLED": [
|
|
@@ -468,9 +492,7 @@
|
|
|
468
492
|
"implementation": "A",
|
|
469
493
|
"type": "boolean",
|
|
470
494
|
"default": "true",
|
|
471
|
-
"
|
|
472
|
-
"isFlakyTestRetriesEnabled"
|
|
473
|
-
]
|
|
495
|
+
"internalPropertyName": "isFlakyTestRetriesEnabled"
|
|
474
496
|
}
|
|
475
497
|
],
|
|
476
498
|
"DD_CIVISIBILITY_GIT_UNSHALLOW_ENABLED": [
|
|
@@ -485,9 +507,7 @@
|
|
|
485
507
|
"implementation": "A",
|
|
486
508
|
"type": "boolean",
|
|
487
509
|
"default": "true",
|
|
488
|
-
"
|
|
489
|
-
"isGitUploadEnabled"
|
|
490
|
-
]
|
|
510
|
+
"internalPropertyName": "isGitUploadEnabled"
|
|
491
511
|
}
|
|
492
512
|
],
|
|
493
513
|
"DD_CIVISIBILITY_IMPACTED_TESTS_DETECTION_ENABLED": [
|
|
@@ -495,9 +515,7 @@
|
|
|
495
515
|
"implementation": "A",
|
|
496
516
|
"type": "boolean",
|
|
497
517
|
"default": "true",
|
|
498
|
-
"
|
|
499
|
-
"isImpactedTestsEnabled"
|
|
500
|
-
]
|
|
518
|
+
"internalPropertyName": "isImpactedTestsEnabled"
|
|
501
519
|
}
|
|
502
520
|
],
|
|
503
521
|
"DD_CIVISIBILITY_ITR_ENABLED": [
|
|
@@ -505,9 +523,14 @@
|
|
|
505
523
|
"implementation": "A",
|
|
506
524
|
"type": "boolean",
|
|
507
525
|
"default": "true",
|
|
508
|
-
"
|
|
509
|
-
|
|
510
|
-
|
|
526
|
+
"internalPropertyName": "isIntelligentTestRunnerEnabled"
|
|
527
|
+
}
|
|
528
|
+
],
|
|
529
|
+
"DD_ENABLE_LAGE_PACKAGE_NAME": [
|
|
530
|
+
{
|
|
531
|
+
"implementation": "A",
|
|
532
|
+
"type": "boolean",
|
|
533
|
+
"default": "false"
|
|
511
534
|
}
|
|
512
535
|
],
|
|
513
536
|
"DD_CIVISIBILITY_MANUAL_API_ENABLED": [
|
|
@@ -515,9 +538,7 @@
|
|
|
515
538
|
"implementation": "A",
|
|
516
539
|
"type": "boolean",
|
|
517
540
|
"default": "true",
|
|
518
|
-
"
|
|
519
|
-
"isManualApiEnabled"
|
|
520
|
-
]
|
|
541
|
+
"internalPropertyName": "isManualApiEnabled"
|
|
521
542
|
}
|
|
522
543
|
],
|
|
523
544
|
"DD_CIVISIBILITY_RUM_FLUSH_WAIT_MILLIS": [
|
|
@@ -573,9 +594,7 @@
|
|
|
573
594
|
"implementation": "A",
|
|
574
595
|
"type": "boolean",
|
|
575
596
|
"default": "true",
|
|
576
|
-
"
|
|
577
|
-
"crashtracking.enabled"
|
|
578
|
-
]
|
|
597
|
+
"internalPropertyName": "crashtracking.enabled"
|
|
579
598
|
}
|
|
580
599
|
],
|
|
581
600
|
"DD_CUSTOM_TRACE_ID": [
|
|
@@ -690,19 +709,19 @@
|
|
|
690
709
|
],
|
|
691
710
|
"DD_DYNAMIC_INSTRUMENTATION_UPLOAD_INTERVAL_SECONDS": [
|
|
692
711
|
{
|
|
693
|
-
"implementation": "
|
|
694
|
-
"type": "
|
|
712
|
+
"implementation": "C",
|
|
713
|
+
"type": "decimal",
|
|
695
714
|
"configurationNames": [
|
|
696
715
|
"dynamicInstrumentation.uploadIntervalSeconds"
|
|
697
716
|
],
|
|
698
|
-
"default": "1"
|
|
717
|
+
"default": "1.0"
|
|
699
718
|
}
|
|
700
719
|
],
|
|
701
720
|
"DD_ENABLE_NX_SERVICE_NAME": [
|
|
702
721
|
{
|
|
703
|
-
"implementation": "
|
|
704
|
-
"type": "
|
|
705
|
-
"default":
|
|
722
|
+
"implementation": "B",
|
|
723
|
+
"type": "boolean",
|
|
724
|
+
"default": "false"
|
|
706
725
|
}
|
|
707
726
|
],
|
|
708
727
|
"DD_ENV": [
|
|
@@ -717,9 +736,12 @@
|
|
|
717
736
|
],
|
|
718
737
|
"DD_EXPERIMENTAL_APPSEC_STANDALONE_ENABLED": [
|
|
719
738
|
{
|
|
720
|
-
"implementation": "
|
|
739
|
+
"implementation": "B",
|
|
721
740
|
"type": "boolean",
|
|
722
|
-
"default": "
|
|
741
|
+
"default": "false",
|
|
742
|
+
"configurationNames": [
|
|
743
|
+
"experimental.appsec.standalone.enabled"
|
|
744
|
+
]
|
|
723
745
|
}
|
|
724
746
|
],
|
|
725
747
|
"DD_EXPERIMENTAL_FLAGGING_PROVIDER_INITIALIZATION_TIMEOUT_MS": [
|
|
@@ -747,9 +769,7 @@
|
|
|
747
769
|
"implementation": "B",
|
|
748
770
|
"type": "boolean",
|
|
749
771
|
"default": "true",
|
|
750
|
-
"
|
|
751
|
-
"propagateProcessTags.enabled"
|
|
752
|
-
]
|
|
772
|
+
"internalPropertyName": "propagateProcessTags.enabled"
|
|
753
773
|
}
|
|
754
774
|
],
|
|
755
775
|
"DD_EXPERIMENTAL_TEST_OPT_SETTINGS_CACHE": [
|
|
@@ -901,23 +921,20 @@
|
|
|
901
921
|
],
|
|
902
922
|
"DD_GRPC_CLIENT_ERROR_STATUSES": [
|
|
903
923
|
{
|
|
904
|
-
"implementation": "
|
|
905
|
-
"type": "
|
|
906
|
-
"default": "1
|
|
907
|
-
"
|
|
908
|
-
|
|
909
|
-
],
|
|
910
|
-
"handler": "GRPC_HANDLER"
|
|
924
|
+
"implementation": "C",
|
|
925
|
+
"type": "string",
|
|
926
|
+
"default": "1-16",
|
|
927
|
+
"internalPropertyName": "grpc.client.error.statuses",
|
|
928
|
+
"transform": "setGRPCRange"
|
|
911
929
|
}
|
|
912
930
|
],
|
|
913
931
|
"DD_GRPC_SERVER_ERROR_STATUSES": [
|
|
914
932
|
{
|
|
915
|
-
"implementation": "
|
|
916
|
-
"type": "
|
|
917
|
-
"default": "2
|
|
918
|
-
"
|
|
919
|
-
|
|
920
|
-
]
|
|
933
|
+
"implementation": "C",
|
|
934
|
+
"type": "string",
|
|
935
|
+
"default": "2-16",
|
|
936
|
+
"internalPropertyName": "grpc.server.error.statuses",
|
|
937
|
+
"transform": "setGRPCRange"
|
|
921
938
|
}
|
|
922
939
|
],
|
|
923
940
|
"DD_HEAP_SNAPSHOT_COUNT": [
|
|
@@ -925,9 +942,7 @@
|
|
|
925
942
|
"implementation": "A",
|
|
926
943
|
"type": "int",
|
|
927
944
|
"default": "0",
|
|
928
|
-
"
|
|
929
|
-
"heapSnapshot.count"
|
|
930
|
-
]
|
|
945
|
+
"internalPropertyName": "heapSnapshot.count"
|
|
931
946
|
}
|
|
932
947
|
],
|
|
933
948
|
"DD_HEAP_SNAPSHOT_DESTINATION": [
|
|
@@ -935,9 +950,7 @@
|
|
|
935
950
|
"implementation": "A",
|
|
936
951
|
"type": "string",
|
|
937
952
|
"default": "",
|
|
938
|
-
"
|
|
939
|
-
"heapSnapshot.destination"
|
|
940
|
-
]
|
|
953
|
+
"internalPropertyName": "heapSnapshot.destination"
|
|
941
954
|
}
|
|
942
955
|
],
|
|
943
956
|
"DD_HEAP_SNAPSHOT_INTERVAL": [
|
|
@@ -945,9 +958,7 @@
|
|
|
945
958
|
"implementation": "A",
|
|
946
959
|
"type": "int",
|
|
947
960
|
"default": "3600",
|
|
948
|
-
"
|
|
949
|
-
"heapSnapshot.interval"
|
|
950
|
-
]
|
|
961
|
+
"internalPropertyName": "heapSnapshot.interval"
|
|
951
962
|
}
|
|
952
963
|
],
|
|
953
964
|
"DD_IAST_DB_ROWS_TO_TAINT": [
|
|
@@ -955,7 +966,8 @@
|
|
|
955
966
|
"implementation": "A",
|
|
956
967
|
"type": "int",
|
|
957
968
|
"configurationNames": [
|
|
958
|
-
"iast.dbRowsToTaint"
|
|
969
|
+
"iast.dbRowsToTaint",
|
|
970
|
+
"experimental.iast.dbRowsToTaint"
|
|
959
971
|
],
|
|
960
972
|
"default": "1"
|
|
961
973
|
}
|
|
@@ -965,7 +977,8 @@
|
|
|
965
977
|
"implementation": "A",
|
|
966
978
|
"type": "boolean",
|
|
967
979
|
"configurationNames": [
|
|
968
|
-
"iast.deduplicationEnabled"
|
|
980
|
+
"iast.deduplicationEnabled",
|
|
981
|
+
"experimental.iast.deduplicationEnabled"
|
|
969
982
|
],
|
|
970
983
|
"default": "true"
|
|
971
984
|
}
|
|
@@ -975,7 +988,10 @@
|
|
|
975
988
|
"implementation": "B",
|
|
976
989
|
"type": "boolean",
|
|
977
990
|
"configurationNames": [
|
|
978
|
-
"iast.enabled"
|
|
991
|
+
"iast.enabled",
|
|
992
|
+
"iast",
|
|
993
|
+
"experimental.iast.enabled",
|
|
994
|
+
"experimental.iast"
|
|
979
995
|
],
|
|
980
996
|
"default": "false"
|
|
981
997
|
}
|
|
@@ -985,7 +1001,8 @@
|
|
|
985
1001
|
"implementation": "A",
|
|
986
1002
|
"type": "int",
|
|
987
1003
|
"configurationNames": [
|
|
988
|
-
"iast.maxConcurrentRequests"
|
|
1004
|
+
"iast.maxConcurrentRequests",
|
|
1005
|
+
"experimental.iast.maxConcurrentRequests"
|
|
989
1006
|
],
|
|
990
1007
|
"default": "2"
|
|
991
1008
|
}
|
|
@@ -995,7 +1012,8 @@
|
|
|
995
1012
|
"implementation": "A",
|
|
996
1013
|
"type": "int",
|
|
997
1014
|
"configurationNames": [
|
|
998
|
-
"iast.maxContextOperations"
|
|
1015
|
+
"iast.maxContextOperations",
|
|
1016
|
+
"experimental.iast.maxContextOperations"
|
|
999
1017
|
],
|
|
1000
1018
|
"default": "2"
|
|
1001
1019
|
}
|
|
@@ -1005,7 +1023,8 @@
|
|
|
1005
1023
|
"implementation": "A",
|
|
1006
1024
|
"type": "boolean",
|
|
1007
1025
|
"configurationNames": [
|
|
1008
|
-
"iast.redactionEnabled"
|
|
1026
|
+
"iast.redactionEnabled",
|
|
1027
|
+
"experimental.iast.redactionEnabled"
|
|
1009
1028
|
],
|
|
1010
1029
|
"default": "true"
|
|
1011
1030
|
}
|
|
@@ -1015,7 +1034,8 @@
|
|
|
1015
1034
|
"implementation": "A",
|
|
1016
1035
|
"type": "string",
|
|
1017
1036
|
"configurationNames": [
|
|
1018
|
-
"iast.redactionNamePattern"
|
|
1037
|
+
"iast.redactionNamePattern",
|
|
1038
|
+
"experimental.iast.redactionNamePattern"
|
|
1019
1039
|
],
|
|
1020
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)"
|
|
1021
1041
|
}
|
|
@@ -1025,7 +1045,8 @@
|
|
|
1025
1045
|
"implementation": "A",
|
|
1026
1046
|
"type": "string",
|
|
1027
1047
|
"configurationNames": [
|
|
1028
|
-
"iast.redactionValuePattern"
|
|
1048
|
+
"iast.redactionValuePattern",
|
|
1049
|
+
"experimental.iast.redactionValuePattern"
|
|
1029
1050
|
],
|
|
1030
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,})"
|
|
1031
1052
|
}
|
|
@@ -1035,9 +1056,12 @@
|
|
|
1035
1056
|
"implementation": "A",
|
|
1036
1057
|
"type": "int",
|
|
1037
1058
|
"configurationNames": [
|
|
1038
|
-
"iast.requestSampling"
|
|
1059
|
+
"iast.requestSampling",
|
|
1060
|
+
"experimental.iast.requestSampling"
|
|
1039
1061
|
],
|
|
1040
|
-
"default": "30"
|
|
1062
|
+
"default": "30",
|
|
1063
|
+
"allowed": "100|[1-9]?\\d",
|
|
1064
|
+
"transform": "iastRequestSampling"
|
|
1041
1065
|
}
|
|
1042
1066
|
],
|
|
1043
1067
|
"DD_IAST_SECURITY_CONTROLS_CONFIGURATION": [
|
|
@@ -1045,7 +1069,8 @@
|
|
|
1045
1069
|
"implementation": "B",
|
|
1046
1070
|
"type": "string",
|
|
1047
1071
|
"configurationNames": [
|
|
1048
|
-
"iast.securityControlsConfiguration"
|
|
1072
|
+
"iast.securityControlsConfiguration",
|
|
1073
|
+
"experimental.iast.securityControlsConfiguration"
|
|
1049
1074
|
],
|
|
1050
1075
|
"default": null
|
|
1051
1076
|
}
|
|
@@ -1055,7 +1080,8 @@
|
|
|
1055
1080
|
"implementation": "B",
|
|
1056
1081
|
"type": "boolean",
|
|
1057
1082
|
"configurationNames": [
|
|
1058
|
-
"iast.stackTrace.enabled"
|
|
1083
|
+
"iast.stackTrace.enabled",
|
|
1084
|
+
"experimental.iast.stackTrace.enabled"
|
|
1059
1085
|
],
|
|
1060
1086
|
"default": "true"
|
|
1061
1087
|
}
|
|
@@ -1065,19 +1091,18 @@
|
|
|
1065
1091
|
"implementation": "B",
|
|
1066
1092
|
"type": "string",
|
|
1067
1093
|
"configurationNames": [
|
|
1068
|
-
"iast.telemetryVerbosity"
|
|
1094
|
+
"iast.telemetryVerbosity",
|
|
1095
|
+
"experimental.iast.telemetryVerbosity"
|
|
1069
1096
|
],
|
|
1070
1097
|
"default": "INFORMATION"
|
|
1071
1098
|
}
|
|
1072
1099
|
],
|
|
1073
1100
|
"DD_INJECTION_ENABLED": [
|
|
1074
1101
|
{
|
|
1075
|
-
"implementation": "
|
|
1076
|
-
"type": "
|
|
1077
|
-
"default":
|
|
1078
|
-
"
|
|
1079
|
-
"injectionEnabled"
|
|
1080
|
-
]
|
|
1102
|
+
"implementation": "C",
|
|
1103
|
+
"type": "string",
|
|
1104
|
+
"default": null,
|
|
1105
|
+
"internalPropertyName": "injectionEnabled"
|
|
1081
1106
|
}
|
|
1082
1107
|
],
|
|
1083
1108
|
"DD_INJECT_FORCE": [
|
|
@@ -1085,9 +1110,7 @@
|
|
|
1085
1110
|
"implementation": "A",
|
|
1086
1111
|
"type": "boolean",
|
|
1087
1112
|
"default": "false",
|
|
1088
|
-
"
|
|
1089
|
-
"injectForce"
|
|
1090
|
-
]
|
|
1113
|
+
"internalPropertyName": "injectForce"
|
|
1091
1114
|
}
|
|
1092
1115
|
],
|
|
1093
1116
|
"DD_INSTRUMENTATION_CONFIG_ID": [
|
|
@@ -1095,9 +1118,7 @@
|
|
|
1095
1118
|
"implementation": "A",
|
|
1096
1119
|
"type": "string",
|
|
1097
1120
|
"default": null,
|
|
1098
|
-
"
|
|
1099
|
-
"instrumentation_config_id"
|
|
1100
|
-
]
|
|
1121
|
+
"internalPropertyName": "instrumentation_config_id"
|
|
1101
1122
|
}
|
|
1102
1123
|
],
|
|
1103
1124
|
"DD_INSTRUMENTATION_INSTALL_ID": [
|
|
@@ -1105,9 +1126,7 @@
|
|
|
1105
1126
|
"implementation": "A",
|
|
1106
1127
|
"type": "string",
|
|
1107
1128
|
"default": null,
|
|
1108
|
-
"
|
|
1109
|
-
"installSignature.id"
|
|
1110
|
-
]
|
|
1129
|
+
"internalPropertyName": "installSignature.id"
|
|
1111
1130
|
}
|
|
1112
1131
|
],
|
|
1113
1132
|
"DD_INSTRUMENTATION_INSTALL_TIME": [
|
|
@@ -1115,9 +1134,7 @@
|
|
|
1115
1134
|
"implementation": "A",
|
|
1116
1135
|
"type": "string",
|
|
1117
1136
|
"default": null,
|
|
1118
|
-
"
|
|
1119
|
-
"installSignature.time"
|
|
1120
|
-
]
|
|
1137
|
+
"internalPropertyName": "installSignature.time"
|
|
1121
1138
|
}
|
|
1122
1139
|
],
|
|
1123
1140
|
"DD_INSTRUMENTATION_INSTALL_TYPE": [
|
|
@@ -1125,9 +1142,7 @@
|
|
|
1125
1142
|
"implementation": "A",
|
|
1126
1143
|
"type": "string",
|
|
1127
1144
|
"default": null,
|
|
1128
|
-
"
|
|
1129
|
-
"installSignature.type"
|
|
1130
|
-
]
|
|
1145
|
+
"internalPropertyName": "installSignature.type"
|
|
1131
1146
|
}
|
|
1132
1147
|
],
|
|
1133
1148
|
"DD_INSTRUMENTATION_TELEMETRY_ENABLED": [
|
|
@@ -1138,9 +1153,7 @@
|
|
|
1138
1153
|
"aliases": [
|
|
1139
1154
|
"DD_TRACE_TELEMETRY_ENABLED"
|
|
1140
1155
|
],
|
|
1141
|
-
"
|
|
1142
|
-
"telemetry.enabled"
|
|
1143
|
-
]
|
|
1156
|
+
"internalPropertyName": "telemetry.enabled"
|
|
1144
1157
|
}
|
|
1145
1158
|
],
|
|
1146
1159
|
"DD_INTERNAL_PROFILING_LONG_LIVED_THRESHOLD": [
|
|
@@ -1148,9 +1161,7 @@
|
|
|
1148
1161
|
"implementation": "A",
|
|
1149
1162
|
"type": "int",
|
|
1150
1163
|
"default": "30000",
|
|
1151
|
-
"
|
|
1152
|
-
"profiling.longLivedThreshold"
|
|
1153
|
-
]
|
|
1164
|
+
"internalPropertyName": "profiling.longLivedThreshold"
|
|
1154
1165
|
}
|
|
1155
1166
|
],
|
|
1156
1167
|
"DD_INTERNAL_PROFILING_TIMELINE_SAMPLING_ENABLED": [
|
|
@@ -1172,9 +1183,7 @@
|
|
|
1172
1183
|
"implementation": "A",
|
|
1173
1184
|
"type": "int",
|
|
1174
1185
|
"default": "128",
|
|
1175
|
-
"
|
|
1176
|
-
"langchain.spanCharLimit"
|
|
1177
|
-
]
|
|
1186
|
+
"internalPropertyName": "langchain.spanCharLimit"
|
|
1178
1187
|
}
|
|
1179
1188
|
],
|
|
1180
1189
|
"DD_LANGCHAIN_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
|
|
@@ -1182,9 +1191,7 @@
|
|
|
1182
1191
|
"implementation": "A",
|
|
1183
1192
|
"type": "decimal",
|
|
1184
1193
|
"default": "1",
|
|
1185
|
-
"
|
|
1186
|
-
"langchain.spanPromptCompletionSampleRate"
|
|
1187
|
-
]
|
|
1194
|
+
"internalPropertyName": "langchain.spanPromptCompletionSampleRate"
|
|
1188
1195
|
}
|
|
1189
1196
|
],
|
|
1190
1197
|
"DD_LLMOBS_AGENTLESS_ENABLED": [
|
|
@@ -1202,9 +1209,7 @@
|
|
|
1202
1209
|
"implementation": "A",
|
|
1203
1210
|
"type": "boolean",
|
|
1204
1211
|
"default": "false",
|
|
1205
|
-
"
|
|
1206
|
-
"llmobs.enabled"
|
|
1207
|
-
]
|
|
1212
|
+
"internalPropertyName": "llmobs.enabled"
|
|
1208
1213
|
}
|
|
1209
1214
|
],
|
|
1210
1215
|
"DD_LLMOBS_ML_APP": [
|
|
@@ -1232,16 +1237,22 @@
|
|
|
1232
1237
|
"implementation": "A",
|
|
1233
1238
|
"type": "boolean",
|
|
1234
1239
|
"default": "false",
|
|
1235
|
-
"
|
|
1236
|
-
"otelLogsEnabled"
|
|
1237
|
-
]
|
|
1240
|
+
"internalPropertyName": "otelLogsEnabled"
|
|
1238
1241
|
}
|
|
1239
1242
|
],
|
|
1240
|
-
"
|
|
1243
|
+
"DD_TRACE_LOG_LEVEL": [
|
|
1241
1244
|
{
|
|
1242
|
-
"implementation": "
|
|
1245
|
+
"implementation": "C",
|
|
1243
1246
|
"type": "string",
|
|
1244
|
-
"default":
|
|
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"
|
|
1245
1256
|
}
|
|
1246
1257
|
],
|
|
1247
1258
|
"DD_METRICS_OTEL_ENABLED": [
|
|
@@ -1249,9 +1260,7 @@
|
|
|
1249
1260
|
"implementation": "A",
|
|
1250
1261
|
"type": "boolean",
|
|
1251
1262
|
"default": "false",
|
|
1252
|
-
"
|
|
1253
|
-
"otelMetricsEnabled"
|
|
1254
|
-
]
|
|
1263
|
+
"internalPropertyName": "otelMetricsEnabled"
|
|
1255
1264
|
}
|
|
1256
1265
|
],
|
|
1257
1266
|
"DD_MINI_AGENT_PATH": [
|
|
@@ -1276,9 +1285,7 @@
|
|
|
1276
1285
|
"implementation": "A",
|
|
1277
1286
|
"type": "int",
|
|
1278
1287
|
"default": "128",
|
|
1279
|
-
"
|
|
1280
|
-
"openai.spanCharLimit"
|
|
1281
|
-
]
|
|
1288
|
+
"internalPropertyName": "openai.spanCharLimit"
|
|
1282
1289
|
}
|
|
1283
1290
|
],
|
|
1284
1291
|
"DD_PIPELINE_EXECUTION_ID": [
|
|
@@ -1353,38 +1360,30 @@
|
|
|
1353
1360
|
],
|
|
1354
1361
|
"DD_PROFILING_DEBUG_UPLOAD_COMPRESSION": [
|
|
1355
1362
|
{
|
|
1356
|
-
"implementation": "
|
|
1363
|
+
"implementation": "B",
|
|
1357
1364
|
"type": "string",
|
|
1358
|
-
"default": "
|
|
1365
|
+
"default": "on",
|
|
1366
|
+
"allowed": "on|off|(gzip|zstd)(-[1-9][0-9]?)?",
|
|
1367
|
+
"transform": "toLowerCase"
|
|
1359
1368
|
}
|
|
1360
1369
|
],
|
|
1361
1370
|
"DD_PROFILING_ENABLED": [
|
|
1362
1371
|
{
|
|
1363
|
-
"implementation": "
|
|
1364
|
-
"type": "
|
|
1372
|
+
"implementation": "B",
|
|
1373
|
+
"type": "string",
|
|
1374
|
+
"internalPropertyName": "profiling.enabled",
|
|
1365
1375
|
"configurationNames": [
|
|
1366
|
-
"profiling
|
|
1376
|
+
"profiling"
|
|
1367
1377
|
],
|
|
1378
|
+
"allowed": "false|true|auto|1|0",
|
|
1379
|
+
"transform": "normalizeProfilingEnabled",
|
|
1368
1380
|
"default": "false",
|
|
1381
|
+
"__TODO__": "The alias is deprecated and should log. This needs an re-implementation.",
|
|
1369
1382
|
"aliases": [
|
|
1370
1383
|
"DD_EXPERIMENTAL_PROFILING_ENABLED"
|
|
1371
1384
|
]
|
|
1372
1385
|
}
|
|
1373
1386
|
],
|
|
1374
|
-
"DD_EXPERIMENTAL_PROFILING_ENABLED": [
|
|
1375
|
-
{
|
|
1376
|
-
"implementation": "A",
|
|
1377
|
-
"type": "boolean",
|
|
1378
|
-
"configurationNames": [
|
|
1379
|
-
"profiling.enabled"
|
|
1380
|
-
],
|
|
1381
|
-
"default": "false",
|
|
1382
|
-
"aliases": [
|
|
1383
|
-
"DD_PROFILING_ENABLED"
|
|
1384
|
-
],
|
|
1385
|
-
"deprecated": true
|
|
1386
|
-
}
|
|
1387
|
-
],
|
|
1388
1387
|
"DD_PROFILING_ENDPOINT_COLLECTION_ENABLED": [
|
|
1389
1388
|
{
|
|
1390
1389
|
"implementation": "A",
|
|
@@ -1408,8 +1407,8 @@
|
|
|
1408
1407
|
],
|
|
1409
1408
|
"DD_PROFILING_EXPERIMENTAL_OOM_EXPORT_STRATEGIES": [
|
|
1410
1409
|
{
|
|
1411
|
-
"implementation": "
|
|
1412
|
-
"type": "
|
|
1410
|
+
"implementation": "B",
|
|
1411
|
+
"type": "array",
|
|
1413
1412
|
"default": "process"
|
|
1414
1413
|
}
|
|
1415
1414
|
],
|
|
@@ -1436,19 +1435,16 @@
|
|
|
1436
1435
|
],
|
|
1437
1436
|
"DD_PROFILING_EXPORTERS": [
|
|
1438
1437
|
{
|
|
1439
|
-
"implementation": "
|
|
1440
|
-
"type": "
|
|
1441
|
-
"default": "agent"
|
|
1442
|
-
"configurationNames": [
|
|
1443
|
-
"profiling.exporters"
|
|
1444
|
-
]
|
|
1438
|
+
"implementation": "B",
|
|
1439
|
+
"type": "array",
|
|
1440
|
+
"default": "agent"
|
|
1445
1441
|
}
|
|
1446
1442
|
],
|
|
1447
1443
|
"DD_PROFILING_HEAP_ENABLED": [
|
|
1448
1444
|
{
|
|
1449
|
-
"implementation": "
|
|
1445
|
+
"implementation": "B",
|
|
1450
1446
|
"type": "boolean",
|
|
1451
|
-
"default":
|
|
1447
|
+
"default": null
|
|
1452
1448
|
}
|
|
1453
1449
|
],
|
|
1454
1450
|
"DD_PROFILING_HEAP_SAMPLING_INTERVAL": [
|
|
@@ -1467,8 +1463,8 @@
|
|
|
1467
1463
|
],
|
|
1468
1464
|
"DD_PROFILING_PROFILERS": [
|
|
1469
1465
|
{
|
|
1470
|
-
"implementation": "
|
|
1471
|
-
"type": "
|
|
1466
|
+
"implementation": "B",
|
|
1467
|
+
"type": "array",
|
|
1472
1468
|
"default": "space,wall"
|
|
1473
1469
|
}
|
|
1474
1470
|
],
|
|
@@ -1476,10 +1472,7 @@
|
|
|
1476
1472
|
{
|
|
1477
1473
|
"implementation": "A",
|
|
1478
1474
|
"type": "boolean",
|
|
1479
|
-
"default": "true"
|
|
1480
|
-
"configurationNames": [
|
|
1481
|
-
"profiling.sourceMap"
|
|
1482
|
-
]
|
|
1475
|
+
"default": "true"
|
|
1483
1476
|
}
|
|
1484
1477
|
],
|
|
1485
1478
|
"DD_PROFILING_TIMELINE_ENABLED": [
|
|
@@ -1526,9 +1519,9 @@
|
|
|
1526
1519
|
],
|
|
1527
1520
|
"DD_PROFILING_WALLTIME_ENABLED": [
|
|
1528
1521
|
{
|
|
1529
|
-
"implementation": "
|
|
1522
|
+
"implementation": "A",
|
|
1530
1523
|
"type": "boolean",
|
|
1531
|
-
"default":
|
|
1524
|
+
"default": null
|
|
1532
1525
|
}
|
|
1533
1526
|
],
|
|
1534
1527
|
"DD_REMOTE_CONFIGURATION_ENABLED": [
|
|
@@ -1539,9 +1532,7 @@
|
|
|
1539
1532
|
"aliases": [
|
|
1540
1533
|
"DD_REMOTE_CONFIG_ENABLED"
|
|
1541
1534
|
],
|
|
1542
|
-
"
|
|
1543
|
-
"remoteConfig.enabled"
|
|
1544
|
-
]
|
|
1535
|
+
"internalPropertyName": "remoteConfig.enabled"
|
|
1545
1536
|
}
|
|
1546
1537
|
],
|
|
1547
1538
|
"DD_REMOTE_CONFIG_POLL_INTERVAL_SECONDS": [
|
|
@@ -1559,7 +1550,8 @@
|
|
|
1559
1550
|
"implementation": "A",
|
|
1560
1551
|
"type": "boolean",
|
|
1561
1552
|
"configurationNames": [
|
|
1562
|
-
"runtimeMetrics.enabled"
|
|
1553
|
+
"runtimeMetrics.enabled",
|
|
1554
|
+
"runtimeMetrics"
|
|
1563
1555
|
],
|
|
1564
1556
|
"default": "false"
|
|
1565
1557
|
}
|
|
@@ -1604,6 +1596,14 @@
|
|
|
1604
1596
|
]
|
|
1605
1597
|
}
|
|
1606
1598
|
],
|
|
1599
|
+
"DD_ROOT_JS_SESSION_ID": [
|
|
1600
|
+
{
|
|
1601
|
+
"implementation": "A",
|
|
1602
|
+
"type": "string",
|
|
1603
|
+
"default": null,
|
|
1604
|
+
"internal": true
|
|
1605
|
+
}
|
|
1606
|
+
],
|
|
1607
1607
|
"DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED": [
|
|
1608
1608
|
{
|
|
1609
1609
|
"implementation": "B",
|
|
@@ -1624,8 +1624,10 @@
|
|
|
1624
1624
|
],
|
|
1625
1625
|
"default": null,
|
|
1626
1626
|
"aliases": [
|
|
1627
|
-
"DD_SERVICE_NAME"
|
|
1628
|
-
|
|
1627
|
+
"DD_SERVICE_NAME",
|
|
1628
|
+
"OTEL_SERVICE_NAME"
|
|
1629
|
+
],
|
|
1630
|
+
"allowed": ".+"
|
|
1629
1631
|
}
|
|
1630
1632
|
],
|
|
1631
1633
|
"DD_SERVICE_MAPPING": [
|
|
@@ -1650,20 +1652,21 @@
|
|
|
1650
1652
|
],
|
|
1651
1653
|
"DD_SPAN_SAMPLING_RULES": [
|
|
1652
1654
|
{
|
|
1653
|
-
"implementation": "
|
|
1654
|
-
"type": "
|
|
1655
|
+
"implementation": "D",
|
|
1656
|
+
"type": "json",
|
|
1655
1657
|
"configurationNames": [
|
|
1656
|
-
"spanSamplingRules"
|
|
1657
|
-
"sampler.spanSamplingRules"
|
|
1658
|
+
"spanSamplingRules"
|
|
1658
1659
|
],
|
|
1659
|
-
"default": null
|
|
1660
|
+
"default": null,
|
|
1661
|
+
"transform": "toCamelCase"
|
|
1660
1662
|
}
|
|
1661
1663
|
],
|
|
1662
1664
|
"DD_SPAN_SAMPLING_RULES_FILE": [
|
|
1663
1665
|
{
|
|
1664
|
-
"implementation": "
|
|
1666
|
+
"implementation": "A",
|
|
1665
1667
|
"type": "string",
|
|
1666
|
-
"default":
|
|
1668
|
+
"default": null,
|
|
1669
|
+
"transform": "readFilePath"
|
|
1667
1670
|
}
|
|
1668
1671
|
],
|
|
1669
1672
|
"DD_TAGS": [
|
|
@@ -1681,9 +1684,7 @@
|
|
|
1681
1684
|
"implementation": "A",
|
|
1682
1685
|
"type": "boolean",
|
|
1683
1686
|
"default": "false",
|
|
1684
|
-
"
|
|
1685
|
-
"telemetry.debug"
|
|
1686
|
-
]
|
|
1687
|
+
"internalPropertyName": "telemetry.debug"
|
|
1687
1688
|
}
|
|
1688
1689
|
],
|
|
1689
1690
|
"DD_TELEMETRY_DEPENDENCY_COLLECTION_ENABLED": [
|
|
@@ -1691,9 +1692,7 @@
|
|
|
1691
1692
|
"implementation": "A",
|
|
1692
1693
|
"type": "boolean",
|
|
1693
1694
|
"default": "true",
|
|
1694
|
-
"
|
|
1695
|
-
"telemetry.dependencyCollection"
|
|
1696
|
-
]
|
|
1695
|
+
"internalPropertyName": "telemetry.dependencyCollection"
|
|
1697
1696
|
}
|
|
1698
1697
|
],
|
|
1699
1698
|
"DD_TELEMETRY_FORWARDER_PATH": [
|
|
@@ -1703,14 +1702,20 @@
|
|
|
1703
1702
|
"default": null
|
|
1704
1703
|
}
|
|
1705
1704
|
],
|
|
1705
|
+
"DD_TELEMETRY_EXTENDED_HEARTBEAT_INTERVAL": [
|
|
1706
|
+
{
|
|
1707
|
+
"implementation": "A",
|
|
1708
|
+
"type": "int",
|
|
1709
|
+
"default": "86400",
|
|
1710
|
+
"internalPropertyName": "telemetry.extendedHeartbeatInterval"
|
|
1711
|
+
}
|
|
1712
|
+
],
|
|
1706
1713
|
"DD_TELEMETRY_HEARTBEAT_INTERVAL": [
|
|
1707
1714
|
{
|
|
1708
1715
|
"implementation": "B",
|
|
1709
1716
|
"type": "decimal",
|
|
1710
1717
|
"default": "60.0",
|
|
1711
|
-
"
|
|
1712
|
-
"telemetry.heartbeatInterval"
|
|
1713
|
-
]
|
|
1718
|
+
"internalPropertyName": "telemetry.heartbeatInterval"
|
|
1714
1719
|
}
|
|
1715
1720
|
],
|
|
1716
1721
|
"DD_TELEMETRY_LOG_COLLECTION_ENABLED": [
|
|
@@ -1718,9 +1723,7 @@
|
|
|
1718
1723
|
"implementation": "A",
|
|
1719
1724
|
"type": "boolean",
|
|
1720
1725
|
"default": "true",
|
|
1721
|
-
"
|
|
1722
|
-
"telemetry.logCollection"
|
|
1723
|
-
]
|
|
1726
|
+
"internalPropertyName": "telemetry.logCollection"
|
|
1724
1727
|
}
|
|
1725
1728
|
],
|
|
1726
1729
|
"DD_TELEMETRY_METRICS_ENABLED": [
|
|
@@ -1728,9 +1731,7 @@
|
|
|
1728
1731
|
"implementation": "A",
|
|
1729
1732
|
"type": "boolean",
|
|
1730
1733
|
"default": "true",
|
|
1731
|
-
"
|
|
1732
|
-
"telemetry.metrics"
|
|
1733
|
-
]
|
|
1734
|
+
"internalPropertyName": "telemetry.metrics"
|
|
1734
1735
|
}
|
|
1735
1736
|
],
|
|
1736
1737
|
"DD_TEST_FAILED_TEST_REPLAY_ENABLED": [
|
|
@@ -1738,9 +1739,7 @@
|
|
|
1738
1739
|
"implementation": "A",
|
|
1739
1740
|
"type": "boolean",
|
|
1740
1741
|
"default": "true",
|
|
1741
|
-
"
|
|
1742
|
-
"isTestDynamicInstrumentationEnabled"
|
|
1743
|
-
]
|
|
1742
|
+
"internalPropertyName": "isTestDynamicInstrumentationEnabled"
|
|
1744
1743
|
}
|
|
1745
1744
|
],
|
|
1746
1745
|
"DD_TEST_FLEET_CONFIG_PATH": [
|
|
@@ -1762,9 +1761,7 @@
|
|
|
1762
1761
|
"implementation": "C",
|
|
1763
1762
|
"type": "int",
|
|
1764
1763
|
"default": "20",
|
|
1765
|
-
"
|
|
1766
|
-
"testManagementAttemptToFixRetries"
|
|
1767
|
-
]
|
|
1764
|
+
"internalPropertyName": "testManagementAttemptToFixRetries"
|
|
1768
1765
|
}
|
|
1769
1766
|
],
|
|
1770
1767
|
"DD_TEST_MANAGEMENT_ENABLED": [
|
|
@@ -1772,9 +1769,7 @@
|
|
|
1772
1769
|
"implementation": "A",
|
|
1773
1770
|
"type": "boolean",
|
|
1774
1771
|
"default": "true",
|
|
1775
|
-
"
|
|
1776
|
-
"isTestManagementEnabled"
|
|
1777
|
-
]
|
|
1772
|
+
"internalPropertyName": "isTestManagementEnabled"
|
|
1778
1773
|
}
|
|
1779
1774
|
],
|
|
1780
1775
|
"DD_TEST_TIA_KEEP_COV_CONFIG": [
|
|
@@ -1782,9 +1777,7 @@
|
|
|
1782
1777
|
"implementation": "A",
|
|
1783
1778
|
"type": "boolean",
|
|
1784
1779
|
"default": "false",
|
|
1785
|
-
"
|
|
1786
|
-
"isKeepingCoverageConfiguration"
|
|
1787
|
-
]
|
|
1780
|
+
"internalPropertyName": "isKeepingCoverageConfiguration"
|
|
1788
1781
|
}
|
|
1789
1782
|
],
|
|
1790
1783
|
"DD_TEST_SESSION_NAME": [
|
|
@@ -1792,9 +1785,7 @@
|
|
|
1792
1785
|
"implementation": "A",
|
|
1793
1786
|
"type": "string",
|
|
1794
1787
|
"default": null,
|
|
1795
|
-
"
|
|
1796
|
-
"ciVisibilityTestSessionName"
|
|
1797
|
-
]
|
|
1788
|
+
"internalPropertyName": "ciVisibilityTestSessionName"
|
|
1798
1789
|
}
|
|
1799
1790
|
],
|
|
1800
1791
|
"DD_TRACE_128_BIT_TRACEID_GENERATION_ENABLED": [
|
|
@@ -1946,9 +1937,7 @@
|
|
|
1946
1937
|
"implementation": "A",
|
|
1947
1938
|
"type": "boolean",
|
|
1948
1939
|
"default": "true",
|
|
1949
|
-
"
|
|
1950
|
-
"trace.aws.addSpanPointers"
|
|
1951
|
-
]
|
|
1940
|
+
"internalPropertyName": "trace.aws.addSpanPointers"
|
|
1952
1941
|
}
|
|
1953
1942
|
],
|
|
1954
1943
|
"DD_TRACE_AWS_SDK_AWS_BATCH_PROPAGATION_ENABLED": [
|
|
@@ -2334,7 +2323,8 @@
|
|
|
2334
2323
|
"configurationNames": [
|
|
2335
2324
|
"clientIpHeader"
|
|
2336
2325
|
],
|
|
2337
|
-
"default": null
|
|
2326
|
+
"default": null,
|
|
2327
|
+
"transform": "toLowerCase"
|
|
2338
2328
|
}
|
|
2339
2329
|
],
|
|
2340
2330
|
"DD_TRACE_CLOUD_PAYLOAD_TAGGING_MAX_DEPTH": [
|
|
@@ -2344,27 +2334,30 @@
|
|
|
2344
2334
|
"configurationNames": [
|
|
2345
2335
|
"cloudPayloadTagging.maxDepth"
|
|
2346
2336
|
],
|
|
2347
|
-
"default": "10"
|
|
2337
|
+
"default": "10",
|
|
2338
|
+
"allowed": "\\d+"
|
|
2348
2339
|
}
|
|
2349
2340
|
],
|
|
2350
2341
|
"DD_TRACE_CLOUD_REQUEST_PAYLOAD_TAGGING": [
|
|
2351
2342
|
{
|
|
2352
|
-
"implementation": "
|
|
2353
|
-
"type": "
|
|
2343
|
+
"implementation": "B",
|
|
2344
|
+
"type": "string",
|
|
2354
2345
|
"configurationNames": [
|
|
2355
2346
|
"cloudPayloadTagging.request"
|
|
2356
2347
|
],
|
|
2357
|
-
"default": null
|
|
2348
|
+
"default": null,
|
|
2349
|
+
"transform": "splitJSONPathRules"
|
|
2358
2350
|
}
|
|
2359
2351
|
],
|
|
2360
2352
|
"DD_TRACE_CLOUD_RESPONSE_PAYLOAD_TAGGING": [
|
|
2361
2353
|
{
|
|
2362
|
-
"implementation": "
|
|
2363
|
-
"type": "
|
|
2354
|
+
"implementation": "B",
|
|
2355
|
+
"type": "string",
|
|
2364
2356
|
"configurationNames": [
|
|
2365
2357
|
"cloudPayloadTagging.response"
|
|
2366
2358
|
],
|
|
2367
|
-
"default": null
|
|
2359
|
+
"default": null,
|
|
2360
|
+
"transform": "splitJSONPathRules"
|
|
2368
2361
|
}
|
|
2369
2362
|
],
|
|
2370
2363
|
"DD_TRACE_COLLECTIONS_ENABLED": [
|
|
@@ -2477,9 +2470,7 @@
|
|
|
2477
2470
|
"implementation": "A",
|
|
2478
2471
|
"type": "string",
|
|
2479
2472
|
"default": null,
|
|
2480
|
-
"
|
|
2481
|
-
"trace.dynamoDb.tablePrimaryKeys"
|
|
2482
|
-
]
|
|
2473
|
+
"internalPropertyName": "trace.dynamoDb.tablePrimaryKeys"
|
|
2483
2474
|
}
|
|
2484
2475
|
],
|
|
2485
2476
|
"DD_TRACE_ELASTICSEARCH_ENABLED": [
|
|
@@ -2508,8 +2499,9 @@
|
|
|
2508
2499
|
"implementation": "A",
|
|
2509
2500
|
"type": "boolean",
|
|
2510
2501
|
"default": "true",
|
|
2511
|
-
"
|
|
2512
|
-
|
|
2502
|
+
"internalPropertyName": "tracing",
|
|
2503
|
+
"aliases": [
|
|
2504
|
+
"DD_TRACING_ENABLED"
|
|
2513
2505
|
]
|
|
2514
2506
|
}
|
|
2515
2507
|
],
|
|
@@ -2627,10 +2619,7 @@
|
|
|
2627
2619
|
{
|
|
2628
2620
|
"implementation": "A",
|
|
2629
2621
|
"type": "boolean",
|
|
2630
|
-
"default": "true"
|
|
2631
|
-
"configurationNames": [
|
|
2632
|
-
"isGCPPubSubPushSubscriptionEnabled"
|
|
2633
|
-
]
|
|
2622
|
+
"default": "true"
|
|
2634
2623
|
}
|
|
2635
2624
|
],
|
|
2636
2625
|
"DD_TRACE_GENERIC_POOL_ENABLED": [
|
|
@@ -2645,9 +2634,7 @@
|
|
|
2645
2634
|
"implementation": "A",
|
|
2646
2635
|
"type": "boolean",
|
|
2647
2636
|
"default": "true",
|
|
2648
|
-
"
|
|
2649
|
-
"gitMetadataEnabled"
|
|
2650
|
-
]
|
|
2637
|
+
"internalPropertyName": "gitMetadataEnabled"
|
|
2651
2638
|
}
|
|
2652
2639
|
],
|
|
2653
2640
|
"DD_TRACE_GOOGLE_CLOUD_PUBSUB_ENABLED": [
|
|
@@ -2690,9 +2677,7 @@
|
|
|
2690
2677
|
"implementation": "A",
|
|
2691
2678
|
"type": "array",
|
|
2692
2679
|
"default": "",
|
|
2693
|
-
"
|
|
2694
|
-
"graphqlErrorExtensions"
|
|
2695
|
-
]
|
|
2680
|
+
"internalPropertyName": "graphqlErrorExtensions"
|
|
2696
2681
|
}
|
|
2697
2682
|
],
|
|
2698
2683
|
"DD_TRACE_GRAPHQL_TAG_ENABLED": [
|
|
@@ -2779,7 +2764,8 @@
|
|
|
2779
2764
|
"default": "",
|
|
2780
2765
|
"configurationNames": [
|
|
2781
2766
|
"headerTags"
|
|
2782
|
-
]
|
|
2767
|
+
],
|
|
2768
|
+
"transform": "stripColonWhitespace"
|
|
2783
2769
|
}
|
|
2784
2770
|
],
|
|
2785
2771
|
"DD_TRACE_HONO_ENABLED": [
|
|
@@ -3047,13 +3033,6 @@
|
|
|
3047
3033
|
"default": "true"
|
|
3048
3034
|
}
|
|
3049
3035
|
],
|
|
3050
|
-
"DD_TRACE_LOG_LEVEL": [
|
|
3051
|
-
{
|
|
3052
|
-
"implementation": "C",
|
|
3053
|
-
"type": "string",
|
|
3054
|
-
"default": "debug"
|
|
3055
|
-
}
|
|
3056
|
-
],
|
|
3057
3036
|
"DD_TRACE_LOOPBACK_ENABLED": [
|
|
3058
3037
|
{
|
|
3059
3038
|
"implementation": "A",
|
|
@@ -3073,9 +3052,7 @@
|
|
|
3073
3052
|
"implementation": "A",
|
|
3074
3053
|
"type": "boolean",
|
|
3075
3054
|
"default": "false",
|
|
3076
|
-
"
|
|
3077
|
-
"memcachedCommandEnabled"
|
|
3078
|
-
]
|
|
3055
|
+
"internalPropertyName": "memcachedCommandEnabled"
|
|
3079
3056
|
}
|
|
3080
3057
|
],
|
|
3081
3058
|
"DD_TRACE_MEMCACHED_ENABLED": [
|
|
@@ -3191,9 +3168,7 @@
|
|
|
3191
3168
|
"implementation": "A",
|
|
3192
3169
|
"type": "boolean",
|
|
3193
3170
|
"default": "false",
|
|
3194
|
-
"
|
|
3195
|
-
"trace.nativeSpanEvents"
|
|
3196
|
-
]
|
|
3171
|
+
"internalPropertyName": "trace.nativeSpanEvents"
|
|
3197
3172
|
}
|
|
3198
3173
|
],
|
|
3199
3174
|
"DD_TRACE_NET_ENABLED": [
|
|
@@ -3243,9 +3218,7 @@
|
|
|
3243
3218
|
"implementation": "F",
|
|
3244
3219
|
"type": "string",
|
|
3245
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,}",
|
|
3246
|
-
"
|
|
3247
|
-
"queryStringObfuscation"
|
|
3248
|
-
]
|
|
3221
|
+
"internalPropertyName": "queryStringObfuscation"
|
|
3249
3222
|
}
|
|
3250
3223
|
],
|
|
3251
3224
|
"DD_TRACE_OPENAI_ENABLED": [
|
|
@@ -3436,10 +3409,10 @@
|
|
|
3436
3409
|
{
|
|
3437
3410
|
"implementation": "B",
|
|
3438
3411
|
"type": "string",
|
|
3412
|
+
"allowed": "continue|restart|ignore",
|
|
3413
|
+
"transform": "toLowerCase",
|
|
3439
3414
|
"default": "continue",
|
|
3440
|
-
"
|
|
3441
|
-
"tracePropagationBehaviorExtract"
|
|
3442
|
-
]
|
|
3415
|
+
"internalPropertyName": "tracePropagationBehaviorExtract"
|
|
3443
3416
|
}
|
|
3444
3417
|
],
|
|
3445
3418
|
"DD_TRACE_PROPAGATION_EXTRACT_FIRST": [
|
|
@@ -3447,19 +3420,18 @@
|
|
|
3447
3420
|
"implementation": "A",
|
|
3448
3421
|
"type": "boolean",
|
|
3449
3422
|
"default": "false",
|
|
3450
|
-
"
|
|
3451
|
-
"tracePropagationExtractFirst"
|
|
3452
|
-
]
|
|
3423
|
+
"internalPropertyName": "tracePropagationExtractFirst"
|
|
3453
3424
|
}
|
|
3454
3425
|
],
|
|
3455
3426
|
"DD_TRACE_PROPAGATION_STYLE": [
|
|
3456
3427
|
{
|
|
3457
3428
|
"implementation": "D",
|
|
3458
3429
|
"type": "array",
|
|
3459
|
-
"
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3430
|
+
"default": "datadog,tracecontext,baggage",
|
|
3431
|
+
"transform": "validatePropagationStyles",
|
|
3432
|
+
"aliases": [
|
|
3433
|
+
"OTEL_PROPAGATORS"
|
|
3434
|
+
]
|
|
3463
3435
|
}
|
|
3464
3436
|
],
|
|
3465
3437
|
"DD_TRACE_PROPAGATION_STYLE_EXTRACT": [
|
|
@@ -3469,7 +3441,8 @@
|
|
|
3469
3441
|
"configurationNames": [
|
|
3470
3442
|
"tracePropagationStyle.extract"
|
|
3471
3443
|
],
|
|
3472
|
-
"default": "datadog, tracecontext, baggage"
|
|
3444
|
+
"default": "datadog, tracecontext, baggage",
|
|
3445
|
+
"transform": "toLowerCase"
|
|
3473
3446
|
}
|
|
3474
3447
|
],
|
|
3475
3448
|
"DD_TRACE_PROPAGATION_STYLE_INJECT": [
|
|
@@ -3479,7 +3452,8 @@
|
|
|
3479
3452
|
"configurationNames": [
|
|
3480
3453
|
"tracePropagationStyle.inject"
|
|
3481
3454
|
],
|
|
3482
|
-
"default": "datadog, tracecontext, baggage"
|
|
3455
|
+
"default": "datadog, tracecontext, baggage",
|
|
3456
|
+
"transform": "toLowerCase"
|
|
3483
3457
|
}
|
|
3484
3458
|
],
|
|
3485
3459
|
"DD_TRACE_PROTOBUFJS_ENABLED": [
|
|
@@ -3508,8 +3482,8 @@
|
|
|
3508
3482
|
"implementation": "A",
|
|
3509
3483
|
"type": "int",
|
|
3510
3484
|
"configurationNames": [
|
|
3511
|
-
"
|
|
3512
|
-
"
|
|
3485
|
+
"rateLimit",
|
|
3486
|
+
"ingestion.rateLimit"
|
|
3513
3487
|
],
|
|
3514
3488
|
"default": "100"
|
|
3515
3489
|
}
|
|
@@ -3574,9 +3548,7 @@
|
|
|
3574
3548
|
"implementation": "A",
|
|
3575
3549
|
"type": "boolean",
|
|
3576
3550
|
"default": "false",
|
|
3577
|
-
"
|
|
3578
|
-
"resourceRenamingEnabled"
|
|
3579
|
-
]
|
|
3551
|
+
"internalPropertyName": "resourceRenamingEnabled"
|
|
3580
3552
|
}
|
|
3581
3553
|
],
|
|
3582
3554
|
"DD_TRACE_RESTIFY_ENABLED": [
|
|
@@ -3605,20 +3577,22 @@
|
|
|
3605
3577
|
"implementation": "B",
|
|
3606
3578
|
"type": "decimal",
|
|
3607
3579
|
"configurationNames": [
|
|
3580
|
+
"sampleRate",
|
|
3608
3581
|
"ingestion.sampleRate"
|
|
3609
3582
|
],
|
|
3610
|
-
"default": null
|
|
3583
|
+
"default": null,
|
|
3584
|
+
"transform": "sampleRate"
|
|
3611
3585
|
}
|
|
3612
3586
|
],
|
|
3613
3587
|
"DD_TRACE_SAMPLING_RULES": [
|
|
3614
3588
|
{
|
|
3615
|
-
"implementation": "
|
|
3616
|
-
"type": "
|
|
3589
|
+
"implementation": "E",
|
|
3590
|
+
"type": "json",
|
|
3617
3591
|
"configurationNames": [
|
|
3618
|
-
"samplingRules"
|
|
3619
|
-
"sampler.rules"
|
|
3592
|
+
"samplingRules"
|
|
3620
3593
|
],
|
|
3621
|
-
"default": ""
|
|
3594
|
+
"default": "[]",
|
|
3595
|
+
"transform": "toCamelCase"
|
|
3622
3596
|
}
|
|
3623
3597
|
],
|
|
3624
3598
|
"DD_TRACE_SCOPE": [
|
|
@@ -3626,9 +3600,7 @@
|
|
|
3626
3600
|
"implementation": "A",
|
|
3627
3601
|
"type": "string",
|
|
3628
3602
|
"default": null,
|
|
3629
|
-
"
|
|
3630
|
-
"scope"
|
|
3631
|
-
]
|
|
3603
|
+
"internalPropertyName": "scope"
|
|
3632
3604
|
}
|
|
3633
3605
|
],
|
|
3634
3606
|
"DD_TRACE_SELENIUM_ENABLED": [
|
|
@@ -3670,6 +3642,8 @@
|
|
|
3670
3642
|
{
|
|
3671
3643
|
"implementation": "B",
|
|
3672
3644
|
"type": "string",
|
|
3645
|
+
"allowed": "v0|v1",
|
|
3646
|
+
"transform": "toLowerCase",
|
|
3673
3647
|
"configurationNames": [
|
|
3674
3648
|
"spanAttributeSchema"
|
|
3675
3649
|
],
|
|
@@ -3680,9 +3654,7 @@
|
|
|
3680
3654
|
{
|
|
3681
3655
|
"implementation": "A",
|
|
3682
3656
|
"type": "int",
|
|
3683
|
-
"
|
|
3684
|
-
"spanLeakDebug"
|
|
3685
|
-
],
|
|
3657
|
+
"internalPropertyName": "spanLeakDebug",
|
|
3686
3658
|
"default": "0"
|
|
3687
3659
|
}
|
|
3688
3660
|
],
|
|
@@ -3695,20 +3667,21 @@
|
|
|
3695
3667
|
],
|
|
3696
3668
|
"DD_TRACE_STARTUP_LOGS": [
|
|
3697
3669
|
{
|
|
3698
|
-
"implementation": "
|
|
3670
|
+
"implementation": "C",
|
|
3699
3671
|
"type": "boolean",
|
|
3700
3672
|
"configurationNames": [
|
|
3701
3673
|
"startupLogs"
|
|
3702
3674
|
],
|
|
3703
|
-
"default": "
|
|
3675
|
+
"default": "true"
|
|
3704
3676
|
}
|
|
3705
3677
|
],
|
|
3706
3678
|
"DD_TRACE_STATS_COMPUTATION_ENABLED": [
|
|
3707
3679
|
{
|
|
3708
3680
|
"implementation": "A",
|
|
3709
3681
|
"type": "boolean",
|
|
3682
|
+
"internalPropertyName": "stats.enabled",
|
|
3710
3683
|
"configurationNames": [
|
|
3711
|
-
"stats
|
|
3684
|
+
"stats"
|
|
3712
3685
|
],
|
|
3713
3686
|
"default": "false"
|
|
3714
3687
|
}
|
|
@@ -3835,19 +3808,7 @@
|
|
|
3835
3808
|
"implementation": "A",
|
|
3836
3809
|
"type": "int",
|
|
3837
3810
|
"default": "512",
|
|
3838
|
-
"
|
|
3839
|
-
"tagsHeaderMaxLength"
|
|
3840
|
-
]
|
|
3841
|
-
}
|
|
3842
|
-
],
|
|
3843
|
-
"DD_TRACING_ENABLED": [
|
|
3844
|
-
{
|
|
3845
|
-
"implementation": "A",
|
|
3846
|
-
"type": "boolean",
|
|
3847
|
-
"default": "true",
|
|
3848
|
-
"configurationNames": [
|
|
3849
|
-
"tracing"
|
|
3850
|
-
]
|
|
3811
|
+
"internalPropertyName": "tagsHeaderMaxLength"
|
|
3851
3812
|
}
|
|
3852
3813
|
],
|
|
3853
3814
|
"DD_VERSION": [
|
|
@@ -3865,9 +3826,7 @@
|
|
|
3865
3826
|
"implementation": "A",
|
|
3866
3827
|
"type": "int",
|
|
3867
3828
|
"default": "128",
|
|
3868
|
-
"
|
|
3869
|
-
"vertexai.spanCharLimit"
|
|
3870
|
-
]
|
|
3829
|
+
"internalPropertyName": "vertexai.spanCharLimit"
|
|
3871
3830
|
}
|
|
3872
3831
|
],
|
|
3873
3832
|
"DD_VERTEXAI_SPAN_PROMPT_COMPLETION_SAMPLE_RATE": [
|
|
@@ -3875,9 +3834,7 @@
|
|
|
3875
3834
|
"implementation": "A",
|
|
3876
3835
|
"type": "decimal",
|
|
3877
3836
|
"default": "1",
|
|
3878
|
-
"
|
|
3879
|
-
"vertexai.spanPromptCompletionSampleRate"
|
|
3880
|
-
]
|
|
3837
|
+
"internalPropertyName": "vertexai.spanPromptCompletionSampleRate"
|
|
3881
3838
|
}
|
|
3882
3839
|
],
|
|
3883
3840
|
"DD_VITEST_WORKER": [
|
|
@@ -3891,50 +3848,42 @@
|
|
|
3891
3848
|
{
|
|
3892
3849
|
"implementation": "A",
|
|
3893
3850
|
"type": "int",
|
|
3894
|
-
"
|
|
3895
|
-
|
|
3896
|
-
]
|
|
3897
|
-
"default": "512"
|
|
3851
|
+
"internalPropertyName": "otelMaxExportBatchSize",
|
|
3852
|
+
"default": "512",
|
|
3853
|
+
"allowed": "[1-9]\\d*"
|
|
3898
3854
|
}
|
|
3899
3855
|
],
|
|
3900
3856
|
"OTEL_BSP_MAX_QUEUE_SIZE": [
|
|
3901
3857
|
{
|
|
3902
3858
|
"implementation": "A",
|
|
3903
3859
|
"type": "int",
|
|
3904
|
-
"
|
|
3905
|
-
|
|
3906
|
-
]
|
|
3907
|
-
"default": "2048"
|
|
3860
|
+
"internalPropertyName": "otelMaxQueueSize",
|
|
3861
|
+
"default": "2048",
|
|
3862
|
+
"allowed": "[1-9]\\d*"
|
|
3908
3863
|
}
|
|
3909
3864
|
],
|
|
3910
3865
|
"OTEL_BSP_SCHEDULE_DELAY": [
|
|
3911
3866
|
{
|
|
3912
3867
|
"implementation": "A",
|
|
3913
3868
|
"type": "int",
|
|
3914
|
-
"
|
|
3915
|
-
|
|
3916
|
-
]
|
|
3917
|
-
"default": "5000"
|
|
3869
|
+
"internalPropertyName": "otelBatchTimeout",
|
|
3870
|
+
"default": "5000",
|
|
3871
|
+
"allowed": "[1-9]\\d*"
|
|
3918
3872
|
}
|
|
3919
3873
|
],
|
|
3920
3874
|
"OTEL_EXPORTER_OTLP_ENDPOINT": [
|
|
3921
3875
|
{
|
|
3922
3876
|
"implementation": "A",
|
|
3923
3877
|
"type": "string",
|
|
3924
|
-
"default": null
|
|
3925
|
-
"configurationNames": [
|
|
3926
|
-
"otelUrl"
|
|
3927
|
-
]
|
|
3878
|
+
"default": null
|
|
3928
3879
|
}
|
|
3929
3880
|
],
|
|
3930
3881
|
"OTEL_EXPORTER_OTLP_HEADERS": [
|
|
3931
3882
|
{
|
|
3932
|
-
"implementation": "
|
|
3933
|
-
"type": "
|
|
3883
|
+
"implementation": "C",
|
|
3884
|
+
"type": "string",
|
|
3934
3885
|
"default": null,
|
|
3935
|
-
"
|
|
3936
|
-
"otelHeaders"
|
|
3937
|
-
]
|
|
3886
|
+
"internalPropertyName": "otelHeaders"
|
|
3938
3887
|
}
|
|
3939
3888
|
],
|
|
3940
3889
|
"OTEL_EXPORTER_OTLP_LOGS_ENDPOINT": [
|
|
@@ -3942,18 +3891,20 @@
|
|
|
3942
3891
|
"implementation": "A",
|
|
3943
3892
|
"type": "string",
|
|
3944
3893
|
"default": null,
|
|
3945
|
-
"
|
|
3946
|
-
|
|
3894
|
+
"internalPropertyName": "otelLogsUrl",
|
|
3895
|
+
"aliases": [
|
|
3896
|
+
"OTEL_EXPORTER_OTLP_ENDPOINT"
|
|
3947
3897
|
]
|
|
3948
3898
|
}
|
|
3949
3899
|
],
|
|
3950
3900
|
"OTEL_EXPORTER_OTLP_LOGS_HEADERS": [
|
|
3951
3901
|
{
|
|
3952
|
-
"implementation": "
|
|
3953
|
-
"type": "
|
|
3902
|
+
"implementation": "A",
|
|
3903
|
+
"type": "string",
|
|
3954
3904
|
"default": null,
|
|
3955
|
-
"
|
|
3956
|
-
|
|
3905
|
+
"internalPropertyName": "otelLogsHeaders",
|
|
3906
|
+
"aliases": [
|
|
3907
|
+
"OTEL_EXPORTER_OTLP_HEADERS"
|
|
3957
3908
|
]
|
|
3958
3909
|
}
|
|
3959
3910
|
],
|
|
@@ -3962,8 +3913,9 @@
|
|
|
3962
3913
|
"implementation": "D",
|
|
3963
3914
|
"type": "string",
|
|
3964
3915
|
"default": "http/protobuf",
|
|
3965
|
-
"
|
|
3966
|
-
|
|
3916
|
+
"internalPropertyName": "otelLogsProtocol",
|
|
3917
|
+
"aliases": [
|
|
3918
|
+
"OTEL_EXPORTER_OTLP_PROTOCOL"
|
|
3967
3919
|
]
|
|
3968
3920
|
}
|
|
3969
3921
|
],
|
|
@@ -3971,10 +3923,12 @@
|
|
|
3971
3923
|
{
|
|
3972
3924
|
"implementation": "A",
|
|
3973
3925
|
"type": "int",
|
|
3974
|
-
"
|
|
3975
|
-
|
|
3976
|
-
],
|
|
3977
|
-
"
|
|
3926
|
+
"internalPropertyName": "otelLogsTimeout",
|
|
3927
|
+
"default": "10000",
|
|
3928
|
+
"allowed": "[1-9]\\d*",
|
|
3929
|
+
"aliases": [
|
|
3930
|
+
"OTEL_EXPORTER_OTLP_TIMEOUT"
|
|
3931
|
+
]
|
|
3978
3932
|
}
|
|
3979
3933
|
],
|
|
3980
3934
|
"OTEL_EXPORTER_OTLP_METRICS_ENDPOINT": [
|
|
@@ -3982,18 +3936,20 @@
|
|
|
3982
3936
|
"implementation": "A",
|
|
3983
3937
|
"type": "string",
|
|
3984
3938
|
"default": null,
|
|
3985
|
-
"
|
|
3986
|
-
|
|
3939
|
+
"internalPropertyName": "otelMetricsUrl",
|
|
3940
|
+
"aliases": [
|
|
3941
|
+
"OTEL_EXPORTER_OTLP_ENDPOINT"
|
|
3987
3942
|
]
|
|
3988
3943
|
}
|
|
3989
3944
|
],
|
|
3990
3945
|
"OTEL_EXPORTER_OTLP_METRICS_HEADERS": [
|
|
3991
3946
|
{
|
|
3992
|
-
"implementation": "
|
|
3993
|
-
"type": "
|
|
3947
|
+
"implementation": "B",
|
|
3948
|
+
"type": "string",
|
|
3994
3949
|
"default": null,
|
|
3995
|
-
"
|
|
3996
|
-
|
|
3950
|
+
"internalPropertyName": "otelMetricsHeaders",
|
|
3951
|
+
"aliases": [
|
|
3952
|
+
"OTEL_EXPORTER_OTLP_HEADERS"
|
|
3997
3953
|
]
|
|
3998
3954
|
}
|
|
3999
3955
|
],
|
|
@@ -4002,8 +3958,9 @@
|
|
|
4002
3958
|
"implementation": "B",
|
|
4003
3959
|
"type": "string",
|
|
4004
3960
|
"default": "http/protobuf",
|
|
4005
|
-
"
|
|
4006
|
-
|
|
3961
|
+
"internalPropertyName": "otelMetricsProtocol",
|
|
3962
|
+
"aliases": [
|
|
3963
|
+
"OTEL_EXPORTER_OTLP_PROTOCOL"
|
|
4007
3964
|
]
|
|
4008
3965
|
}
|
|
4009
3966
|
],
|
|
@@ -4011,9 +3968,9 @@
|
|
|
4011
3968
|
{
|
|
4012
3969
|
"implementation": "A",
|
|
4013
3970
|
"type": "string",
|
|
4014
|
-
"
|
|
4015
|
-
|
|
4016
|
-
|
|
3971
|
+
"allowed": "Delta|Cumulative|LowMemory",
|
|
3972
|
+
"transform": "toUpperCase",
|
|
3973
|
+
"internalPropertyName": "otelMetricsTemporalityPreference",
|
|
4017
3974
|
"default": "delta"
|
|
4018
3975
|
}
|
|
4019
3976
|
],
|
|
@@ -4021,10 +3978,12 @@
|
|
|
4021
3978
|
{
|
|
4022
3979
|
"implementation": "B",
|
|
4023
3980
|
"type": "int",
|
|
4024
|
-
"
|
|
4025
|
-
|
|
4026
|
-
|
|
4027
|
-
"
|
|
3981
|
+
"allowed": "[1-9]\\d*",
|
|
3982
|
+
"internalPropertyName": "otelMetricsTimeout",
|
|
3983
|
+
"default": "10000",
|
|
3984
|
+
"aliases": [
|
|
3985
|
+
"OTEL_EXPORTER_OTLP_TIMEOUT"
|
|
3986
|
+
]
|
|
4028
3987
|
}
|
|
4029
3988
|
],
|
|
4030
3989
|
"OTEL_EXPORTER_OTLP_PROTOCOL": [
|
|
@@ -4032,18 +3991,15 @@
|
|
|
4032
3991
|
"implementation": "A",
|
|
4033
3992
|
"type": "string",
|
|
4034
3993
|
"default": "http/protobuf",
|
|
4035
|
-
"
|
|
4036
|
-
"otelProtocol"
|
|
4037
|
-
]
|
|
3994
|
+
"internalPropertyName": "otelProtocol"
|
|
4038
3995
|
}
|
|
4039
3996
|
],
|
|
4040
3997
|
"OTEL_EXPORTER_OTLP_TIMEOUT": [
|
|
4041
3998
|
{
|
|
4042
3999
|
"implementation": "A",
|
|
4043
4000
|
"type": "int",
|
|
4044
|
-
"
|
|
4045
|
-
|
|
4046
|
-
],
|
|
4001
|
+
"allowed": "[1-9]\\d*",
|
|
4002
|
+
"internalPropertyName": "otelTimeout",
|
|
4047
4003
|
"default": "10000"
|
|
4048
4004
|
}
|
|
4049
4005
|
],
|
|
@@ -4051,30 +4007,26 @@
|
|
|
4051
4007
|
{
|
|
4052
4008
|
"implementation": "A",
|
|
4053
4009
|
"type": "string",
|
|
4054
|
-
"default": null
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
"OTEL_LOG_LEVEL": [
|
|
4058
|
-
{
|
|
4059
|
-
"implementation": "C",
|
|
4060
|
-
"type": "string",
|
|
4061
|
-
"default": null
|
|
4010
|
+
"default": null,
|
|
4011
|
+
"allowed": "none|otlp",
|
|
4012
|
+
"transform": "toLowerCase"
|
|
4062
4013
|
}
|
|
4063
4014
|
],
|
|
4064
4015
|
"OTEL_METRICS_EXPORTER": [
|
|
4065
4016
|
{
|
|
4066
4017
|
"implementation": "C",
|
|
4067
4018
|
"type": "string",
|
|
4068
|
-
"default": null
|
|
4019
|
+
"default": null,
|
|
4020
|
+
"allowed": "none|otlp",
|
|
4021
|
+
"transform": "toLowerCase"
|
|
4069
4022
|
}
|
|
4070
4023
|
],
|
|
4071
4024
|
"OTEL_METRIC_EXPORT_INTERVAL": [
|
|
4072
4025
|
{
|
|
4073
4026
|
"implementation": "A",
|
|
4074
4027
|
"type": "int",
|
|
4075
|
-
"
|
|
4076
|
-
|
|
4077
|
-
],
|
|
4028
|
+
"allowed": "[1-9]\\d*",
|
|
4029
|
+
"internalPropertyName": "otelMetricsExportInterval",
|
|
4078
4030
|
"default": "10000"
|
|
4079
4031
|
}
|
|
4080
4032
|
],
|
|
@@ -4082,27 +4034,17 @@
|
|
|
4082
4034
|
{
|
|
4083
4035
|
"implementation": "A",
|
|
4084
4036
|
"type": "int",
|
|
4085
|
-
"
|
|
4086
|
-
|
|
4087
|
-
],
|
|
4037
|
+
"allowed": "[1-9]\\d*",
|
|
4038
|
+
"internalPropertyName": "otelMetricsExportTimeout",
|
|
4088
4039
|
"default": "7500"
|
|
4089
4040
|
}
|
|
4090
4041
|
],
|
|
4091
|
-
"OTEL_PROPAGATORS": [
|
|
4092
|
-
{
|
|
4093
|
-
"implementation": "A",
|
|
4094
|
-
"type": "array",
|
|
4095
|
-
"default": "",
|
|
4096
|
-
"configurationNames": [
|
|
4097
|
-
"tracePropagationStyle.otelPropagators"
|
|
4098
|
-
]
|
|
4099
|
-
}
|
|
4100
|
-
],
|
|
4101
4042
|
"OTEL_RESOURCE_ATTRIBUTES": [
|
|
4102
4043
|
{
|
|
4103
4044
|
"implementation": "B",
|
|
4104
4045
|
"type": "string",
|
|
4105
|
-
"default": ""
|
|
4046
|
+
"default": "",
|
|
4047
|
+
"transform": "parseOtelTags"
|
|
4106
4048
|
}
|
|
4107
4049
|
],
|
|
4108
4050
|
"OTEL_SDK_DISABLED": [
|
|
@@ -4112,38 +4054,30 @@
|
|
|
4112
4054
|
"default": "true"
|
|
4113
4055
|
}
|
|
4114
4056
|
],
|
|
4115
|
-
"OTEL_SERVICE_NAME": [
|
|
4116
|
-
{
|
|
4117
|
-
"implementation": "B",
|
|
4118
|
-
"type": "string",
|
|
4119
|
-
"configurationNames": [
|
|
4120
|
-
"service"
|
|
4121
|
-
],
|
|
4122
|
-
"default": null
|
|
4123
|
-
}
|
|
4124
|
-
],
|
|
4125
4057
|
"OTEL_TRACES_EXPORTER": [
|
|
4126
4058
|
{
|
|
4127
4059
|
"implementation": "F",
|
|
4128
4060
|
"type": "string",
|
|
4129
|
-
"default": "otlp"
|
|
4061
|
+
"default": "otlp",
|
|
4062
|
+
"allowed": "none|otlp",
|
|
4063
|
+
"transform": "toLowerCase"
|
|
4130
4064
|
}
|
|
4131
4065
|
],
|
|
4132
4066
|
"OTEL_TRACES_SAMPLER": [
|
|
4133
4067
|
{
|
|
4134
4068
|
"implementation": "E",
|
|
4135
4069
|
"type": "string",
|
|
4136
|
-
"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"
|
|
4137
4073
|
}
|
|
4138
4074
|
],
|
|
4139
4075
|
"OTEL_TRACES_SAMPLER_ARG": [
|
|
4140
4076
|
{
|
|
4141
4077
|
"implementation": "D",
|
|
4142
4078
|
"type": "decimal",
|
|
4143
|
-
"
|
|
4144
|
-
|
|
4145
|
-
],
|
|
4146
|
-
"default": null
|
|
4079
|
+
"default": null,
|
|
4080
|
+
"allowed": "\\d+(\\.\\d+)?"
|
|
4147
4081
|
}
|
|
4148
4082
|
]
|
|
4149
4083
|
}
|