-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathsupported-configurations.yaml
More file actions
2718 lines (2706 loc) · 106 KB
/
supported-configurations.yaml
File metadata and controls
2718 lines (2706 loc) · 106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
version: '2'
supportedConfigurations:
DD_AAS_DOTNET_EXTENSION_VERSION:
- implementation: A
type: string
default: unknown
product: AzureAppService
const_name: SiteExtensionVersionKey
documentation: |-
Configuration key which has the running version of the Azure App Services Site Extension.
This env var is set in the <c>applicationHost.xdt</c> file.
DD_AAS_ENABLE_CUSTOM_METRICS:
- implementation: A
type: boolean
default: 'false'
product: AzureAppService
const_name: AasEnableCustomMetrics
documentation: Used to force the loader to start dogstatsd (in case automatic instrumentation is disabled)
DD_AAS_ENABLE_CUSTOM_TRACING:
- implementation: A
type: boolean
default: 'false'
product: AzureAppService
const_name: AasEnableCustomTracing
documentation: Used to force the loader to start the trace agent (in case automatic instrumentation is disabled)
DD_AGENT_HOST:
- implementation: D
type: string
default: localhost
aliases:
- DD_TRACE_AGENT_HOSTNAME
- DATADOG_TRACE_AGENT_HOSTNAME
const_name: AgentHost
documentation: |-
Configuration key for the Agent host where the Tracer can send traces.
Overridden by <see cref="Datadog.Trace.Configuration.ExporterSettings.AgentUri"/> if present.
Default value is "localhost".
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.AgentUri"/>
DD_AGENT_FEATURE_POLLING_ENABLED:
- implementation: A
type: boolean
default: 'true'
const_name: AgentFeaturePollingEnabled
documentation: |-
Configuration key to disable polling the /info endpoint in the trace agent for feature discovery.
Default value is true (polling enabled).
<seealso cref="TracerSettings.AgentFeaturePollingEnabled"/>
DD_API_KEY:
- implementation: A
type: string
default: null
const_name: ApiKey
documentation: Configuration key for setting the API key, used by the Agent.
DD_API_SECURITY_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: AppSec
aliases:
- DD_EXPERIMENTAL_API_SECURITY_ENABLED
const_name: ApiSecurityEnabled
documentation: When ASM is enabled, collects in spans endpoints apis schemas analyzed by the waf, default value is true.
DD_API_SECURITY_ENDPOINT_COLLECTION_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: AppSec
const_name: ApiSecurityEndpointCollectionEnabled
documentation: with a default value of true, it allows a customer to disable the collection of endpoints for API Security.
DD_API_SECURITY_ENDPOINT_COLLECTION_MESSAGE_LIMIT:
- implementation: A
type: int
default: '300'
product: AppSec
const_name: ApiSecurityEndpointCollectionMessageLimit
documentation: with a default value of 300, it defines the maximum number of endpoints to be collected (serialized) for API Security.
DD_API_SECURITY_PARSE_RESPONSE_BODY:
- implementation: A
type: boolean
default: 'true'
product: AppSec
const_name: ApiSecurityParseResponseBody
documentation: Enables the parsing of the response body in the API Security module. Defaults to true
DD_API_SECURITY_SAMPLE_DELAY:
- implementation: A
type: decimal
default: '30'
product: AppSec
const_name: ApiSecuritySampleDelay
documentation: Api security sample delay in seconds , should be a float. Set to 0 for testing purposes. default value of 30.
DD_APM_ENABLE_RARE_SAMPLER:
- implementation: A
type: boolean
default: 'false'
const_name: RareSamplerEnabled
documentation: |-
Enables rare trace sampling in the Datadog Agent. When enabled, the Agent can keep a small number of "rare" traces (up to 5 traces per second per Agent) that were not kept by head-based sampling
DD_APM_RECEIVER_PORT:
- implementation: A
type: int
default: '8126'
const_name: TraceAgentPortKey
documentation: |-
Used to force a specific port binding for the Trace Agent.
Default value is 8126.
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.AgentUri"/>
DD_APM_RECEIVER_SOCKET:
- implementation: A
type: string
default: null
const_name: TracesUnixDomainSocketPath
documentation: |-
Configuration key for the unix domain socket where the Tracer can send traces.
Default value is <c>null</c>.
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.TracesUnixDomainSocketPath"/>
DD_APM_TRACING_ENABLED:
- implementation: A
type: boolean
default: 'true'
const_name: ApmTracingEnabled
documentation: |-
Configuration key for enabling or disabling the generation of APM traces.
Default value is true (enabled).
DD_APPLICATION_MONITORING_CONFIG_FILE_ENABLED:
- implementation: A
type: boolean
default: 'true'
const_name: ApplicationMonitoringConfigFileEnabled
documentation: |-
Configuration key for deactivating reading the application monitoring config file through libdatadog (hands off config).
True by default
DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING:
- implementation: D
type: string
default: identification
product: AppSec
const_name: UserEventsAutomatedTracking
documentation: |-
Deprecate. Automatic tracking of user events mode. Values can be disabled, safe or extended.
This config is in the process of being deprecated. Please use DD_APPSEC_AUTO_USER_INSTRUMENTATION_MODE
instead.
Values will be automatically translated:
disabled = disabled
safe = anon
extended = ident
DD_APPSEC_AUTO_USER_INSTRUMENTATION_MODE:
- implementation: B
type: string
default: identification
product: AppSec
const_name: UserEventsAutoInstrumentationMode
documentation: Automatic instrumentation of user event mode. Values can be ident, disabled, anon.
DD_APPSEC_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: AppSec
const_name: Enabled
documentation: |-
Configuration key for enabling or disabling the AppSec.
Default value is false (disabled).
DD_APPSEC_EXTRA_HEADERS:
- implementation: A
type: string
default: null
product: AppSec
const_name: ExtraHeaders
documentation: |-
Comma separated keys indicating the optional custom headers the user wants to send.
Default value is null.
DD_APPSEC_HTTP_BLOCKED_TEMPLATE_HTML:
- implementation: B
type: string
default: null
product: AppSec
const_name: HtmlBlockedTemplate
documentation: Blocking response template for HTML content. This template is used in combination with the status code to craft and send a response upon blocking the request.
DD_APPSEC_HTTP_BLOCKED_TEMPLATE_JSON:
- implementation: B
type: string
default: null
product: AppSec
const_name: JsonBlockedTemplate
documentation: Blocking response template for Json content. This template is used in combination with the status code to craft and send a response upon blocking the request.
DD_APPSEC_IPHEADER:
- implementation: A
type: string
default: null
product: AppSec
const_name: CustomIpHeader
documentation: |-
Configuration key indicating the optional name of the custom header to take into account for the ip address.
Default value is null (do not override).
DD_APPSEC_KEEP_TRACES:
- implementation: A
type: boolean
default: 'true'
product: AppSec
const_name: KeepTraces
documentation: |-
Specifies if the AppSec traces should be explicitly kept or dropped.
Default is true, to keep all traces, false means drop all traces (by setting AutoReject as sampling priority).
For internal testing only.
DD_APPSEC_MAX_STACK_TRACE_DEPTH:
- implementation: A
type: int
default: '32'
product: AppSec
const_name: MaxStackTraceDepth
documentation: with a default value of 32, defines the maximum depth of a stack trace to be reported due to RASP events. O for unlimited.
DD_APPSEC_MAX_STACK_TRACE_DEPTH_TOP_PERCENT:
- implementation: A
type: int
default: '75'
product: AppSec
const_name: MaxStackTraceDepthTopPercent
documentation: with a default value of 75, defines the percentage of frames taken from the top of the stack when trimming. Min 0, Max 100
DD_APPSEC_MAX_STACK_TRACES:
- implementation: A
type: int
default: '2'
product: AppSec
const_name: MaxStackTraces
documentation: with a default value of 2, defines the maximum number of stack traces to be reported due to RASP events. 0 for unlimited.
DD_APPSEC_OBFUSCATION_PARAMETER_KEY_REGEXP:
- implementation: E
type: string
default: (?i)(?:p(?:ass)?w(?:or)?d|pass(?:_?phrase)?|secret|(?:api_?|private_?|public_?)key)|token|consumer_?(?:id|key|secret)|sign(?:ed|ature)|bearer|authorization
product: AppSec
const_name: ObfuscationParameterKeyRegex
documentation: The regex that will be used to obfuscate possible sensitive data in keys that are highlighted WAF as potentially malicious
DD_APPSEC_OBFUSCATION_PARAMETER_VALUE_REGEXP:
- implementation: F
type: string
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,})
product: AppSec
const_name: ObfuscationParameterValueRegex
documentation: The regex that will be used to obfuscate possible sensitive data in values that are highlighted WAF as potentially malicious
DD_APPSEC_RASP_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: AppSec
const_name: RaspEnabled
documentation: default value to true. Set to false to disable exploit prevention.
DD_APPSEC_RULES:
- implementation: B
type: string
default: null
product: AppSec
const_name: Rules
documentation: |-
Override the default rules file provided. Must be a path to a valid JSON rules file.
Default value is null (do not override).
DD_APPSEC_SCA_ENABLED:
- implementation: B
type: boolean
default: null
product: AppSec
const_name: ScaEnabled
documentation: Activate SCA (Software Composition Analysis), used in the backend
DD_APPSEC_STACK_TRACE_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: AppSec
const_name: StackTraceEnabled
documentation: with a default value of true, it allows a customer to disable the generation of stack traces, for any ASM-specific purpose such as RASP.
DD_APPSEC_TRACE_RATE_LIMIT:
- implementation: A
type: int
default: '100'
product: AppSec
const_name: TraceRateLimit
documentation: Limits the amount of AppSec traces sent per second with an integer value, strictly positive.
DD_APPSEC_WAF_DEBUG:
- implementation: A
type: boolean
default: 'false'
product: AppSec
const_name: WafDebugEnabled
documentation: Activate debug logs for the WAF
DD_APPSEC_WAF_TIMEOUT:
- implementation: B
type: int
default: '100000'
product: AppSec
const_name: WafTimeout
documentation: WAF timeout in microseconds of each WAF execution (the timeout value passed to ddwaf_run).
DD_AZURE_APP_SERVICES:
- implementation: C
type: string
default: null
product: AzureAppService
const_name: AzureAppServicesContextKey
documentation: |-
Configuration key which is used as a flag to tell us whether we are instrumenting an Azure App Service using the AAS Site Extension
DD_CIVISIBILITY_AGENTLESS_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: CIVisibility
const_name: AgentlessEnabled
documentation: |-
Configuration key for enabling or disabling Agentless in CI Visibility.
Default value is false (disabled).
DD_CIVISIBILITY_AGENTLESS_URL:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: AgentlessUrl
documentation: Configuration key for setting the agentless url endpoint
DD_CIVISIBILITY_AUTO_INSTRUMENTATION_PROVIDER:
- implementation: B
type: boolean
default: 'false'
product: CIVisibility
documentation: |-
Configuration key for identifying the auto instrumentation provider for CI Visibility.
This is used to track which instrumentation method was used (e.g., single-step, manual, etc.).
DD_CIVISIBILITY_CODE_COVERAGE_COLLECTORPATH:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: CodeCoverageCollectorPath
documentation: Configuration key for setting the code coverage collector path
DD_CIVISIBILITY_CODE_COVERAGE_ENABLED:
- implementation: B
type: boolean
default: null
product: CIVisibility
const_name: CodeCoverage
documentation: Configuration key for enabling or disabling Code Coverage in CI Visibility.
DD_CIVISIBILITY_CODE_COVERAGE_ENABLE_JIT_OPTIMIZATIONS:
- implementation: A
type: boolean
default: 'true'
product: CIVisibility
const_name: CodeCoverageEnableJitOptimizations
documentation: Configuration key for enabling or disabling jit optimizations in the Code Coverage
DD_CIVISIBILITY_CODE_COVERAGE_MODE:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: CodeCoverageMode
documentation: Configuration key for selecting the code coverage mode LineExecution or LineCallCount
DD_CIVISIBILITY_CODE_COVERAGE_PATH:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: CodeCoveragePath
documentation: Configuration key for setting the code coverage jsons destination path.
DD_CIVISIBILITY_CODE_COVERAGE_SNK_FILEPATH:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: CodeCoverageSnkFile
documentation: Configuration key for re-signing assemblies after the Code Coverage modification.
DD_CIVISIBILITY_DI_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: CIVisibility
const_name: DynamicInstrumentationEnabled
documentation: Configuration key for a kill-switch that allows to explicitly disable dynamic instrumentation even if the remote setting is enabled.
DD_CIVISIBILITY_EARLY_FLAKE_DETECTION_ENABLED:
- implementation: C
type: boolean
default: null
product: CIVisibility
const_name: EarlyFlakeDetectionEnabled
documentation: Configuration key for enabling or disabling the early flake detection feature in CI Visibility
DD_CIVISIBILITY_ENABLED:
- implementation: B
type: boolean
default: null
product: CIVisibility
const_name: Enabled
documentation: |-
Configuration key for enabling or disabling CI Visibility.
Default value is false (disabled).
DD_CIVISIBILITY_EXTERNAL_CODE_COVERAGE_PATH:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: ExternalCodeCoveragePath
documentation: Configuration key for setting the external code coverage file path
DD_CIVISIBILITY_FLAKY_RETRY_COUNT:
- implementation: A
type: int
default: '5'
product: CIVisibility
const_name: FlakyRetryCount
documentation: Configuration key for the maximum number of retry attempts for a single test case.
DD_CIVISIBILITY_FLAKY_RETRY_ENABLED:
- implementation: B
type: boolean
default: null
product: CIVisibility
const_name: FlakyRetryEnabled
documentation: Configuration key for a kill-switch that allows to explicitly disable retries even if the remote setting is enabled.
DD_CIVISIBILITY_FORCE_AGENT_EVP_PROXY:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: ForceAgentsEvpProxy
documentation: Configuration key for forcing Agent's EVP Proxy
DD_CIVISIBILITY_GAC_INSTALL_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: CIVisibility
const_name: InstallDatadogTraceInGac
documentation: Configuration key for enabling or disabling Datadog.Trace GAC installation
DD_CIVISIBILITY_GIT_UPLOAD_ENABLED:
- implementation: B
type: boolean
default: null
product: CIVisibility
const_name: GitUploadEnabled
documentation: |-
Configuration key for enabling or disabling Uploading Git Metadata in CI Visibility
Default Value is false (disabled)
DD_CIVISIBILITY_IMPACTED_TESTS_DETECTION_ENABLED:
- implementation: B
type: boolean
default: null
product: CIVisibility
const_name: ImpactedTestsDetectionEnabled
documentation: Configuration key for enabling Impacted Tests Detection.
DD_CIVISIBILITY_ITR_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: CIVisibility
const_name: IntelligentTestRunnerEnabled
documentation: |-
Configuration key for enabling or disabling Intelligent Test Runner in CI Visibility
Default Value is false (disabled)
DD_CIVISIBILITY_KNOWN_TESTS_ENABLED:
- implementation: A
type: boolean
default: null
product: CIVisibility
const_name: KnownTestsEnabled
documentation: Configuration key for enabling or disabling the known tests feature in CI Visibility
DD_CIVISIBILITY_LOGS_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: CIVisibility
const_name: Logs
documentation: |-
Configuration key for enabling or disabling Logs direct submission.
Default value is false (disabled).
DD_CIVISIBILITY_RUM_FLUSH_WAIT_MILLIS:
- implementation: A
type: int
default: '500'
product: CIVisibility
const_name: RumFlushWaitMillis
documentation: Configuration key for set the rum flushing wait in milliseconds
DD_CIVISIBILITY_TESTSSKIPPING_ENABLED:
- implementation: A
type: boolean
default: null
product: CIVisibility
const_name: TestsSkippingEnabled
documentation: Configuration key for enabling or disabling Intelligent Test Runner test skipping feature in CI Visibility
DD_CIVISIBILITY_TOTAL_FLAKY_RETRY_COUNT:
- implementation: A
type: int
default: '1000'
product: CIVisibility
const_name: TotalFlakyRetryCount
documentation: Configuration key for the maximum number of retry attempts for the entire session.
DD_CODE_ORIGIN_FOR_SPANS_ENABLED:
- implementation: B
type: boolean
default: 'false'
product: Debugger
const_name: CodeOriginForSpansEnabled
documentation: |-
Configuration key to enable tag code origin for span.
Default value is false.
DD_CODE_ORIGIN_FOR_SPANS_MAX_USER_FRAMES:
- implementation: A
type: int
default: '8'
product: Debugger
const_name: CodeOriginMaxUserFrames
documentation: |-
Configuration key for setting the number of frames to be tagged in exit span code origin.
Default value is <c>8</c>.
DD_CUSTOM_TRACE_ID:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: Jenkins CI environment variable for custom trace ID correlation.
DD_DATA_STREAMS_ENABLED:
- implementation: B
type: boolean
default: 'true'
product: DataStreamsMonitoring
const_name: Enabled
documentation: |-
Enables data streams monitoring support
<see cref="Datadog.Trace.Configuration.TracerSettings.IsDataStreamsMonitoringEnabled"/>
DD_DATA_STREAMS_LEGACY_HEADERS:
- implementation: A
type: boolean
default: 'false'
product: DataStreamsMonitoring
const_name: LegacyHeadersEnabled
documentation: |-
Configuration key for enabling legacy binary headers in Data Streams Monitoring.
false by default if DSM is in default state, true otherwise
<see cref="Datadog.Trace.Configuration.TracerSettings.IsDataStreamsLegacyHeadersEnabled"/>
DD_DATA_STREAMS_TRANSACTION_EXTRACTORS:
- implementation: A
type: array
default: null
product: DataStreamsMonitoring
const_name: TransactionExtractors
documentation: |-
Configuration key for transaction extractors in Data Streams Monitoring.
<see cref="Datadog.Trace.Configuration.TracerSettings.DataStreamsTransactionExtractors"/>
DD_DBM_PROPAGATION_MODE:
- implementation: A
type: string
default: disabled
const_name: DbmPropagationMode
documentation: |-
Configuration key for setting DBM propagation mode
Default value is disabled, expected values are either: disabled, service or full
<seealso cref="Datadog.Trace.Configuration.TracerSettings.DbmPropagationMode"/>
DD_DIAGNOSTIC_SOURCE_ENABLED:
- implementation: A
type: boolean
default: 'true'
const_name: DiagnosticSourceEnabled
documentation: |-
Configuration key for enabling or disabling the use of System.Diagnostics.DiagnosticSource.
Default value is <c>true</c> (enabled).
DD_DISABLED_INTEGRATIONS:
- implementation: A
type: string
default: null
const_name: DisabledIntegrations
documentation: |-
Configuration key for a list of integrations to disable. All other integrations remain enabled.
Default is empty (all integrations are enabled).
Supports multiple values separated with semi-colons.
<seealso cref="Datadog.Trace.Configuration.MutableSettings.DisabledIntegrationNames"/>
DD_DOGSTATSD_ARGS:
- implementation: A
type: string
default: null
const_name: DogStatsDArgs
documentation: Configuration key for arguments to pass to the DogStatsD process.
DD_DOGSTATSD_PATH:
- implementation: A
type: string
default: null
const_name: DogStatsDPath
documentation: Configuration key for when a standalone instance of DogStatsD needs to be started.
DD_DOGSTATSD_PIPE_NAME:
- implementation: A
type: string
default: null
const_name: MetricsPipeName
documentation: |-
Configuration key for the named pipe that DogStatsD binds to.
Default value is <c>null</c>.
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.MetricsPipeName"/>
DD_DOGSTATSD_PORT:
- implementation: A
type: int
default: '8125'
const_name: DogStatsdPort
documentation: |-
Configuration key for the DogStatsd port where the Tracer can send metrics.
Default value is 8125.
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.DogStatsdPort"/>
DD_DOGSTATSD_SOCKET:
- implementation: A
type: string
default: null
const_name: MetricsUnixDomainSocketPath
documentation: |-
Configuration key for the unix domain socket that DogStatsD binds to.
Default value is <c>null</c>.
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.MetricsUnixDomainSocketPath"/>
DD_DOGSTATSD_URL:
- implementation: B
type: string
default: udp://127.0.0.1:8125
const_name: MetricsUri
documentation: |-
Configuration key for the location where the Tracer can send DogStatsD metrics.
Default value is "udp://127.0.0.1:8125".
<seealso cref="Datadog.Trace.Configuration.ExporterSettings.AgentUri"/>
DD_DOTNET_TRACER_HOME:
- implementation: A
type: string
default: null
documentation: |-
It indicates the home directory of the Datadog tracer.
On Windows, it is often set to the installation path, such as C:\Program Files\Datadog\.NET Tracer.
On Linux/Docker, it is typically set to /opt/datadog.
DD_DYNAMIC_INSTRUMENTATION_DIAGNOSTICS_INTERVAL:
- implementation: A
type: int
default: '3600'
product: Debugger
const_name: DiagnosticsInterval
documentation: |-
Configuration key for the interval (in seconds) between sending probe statuses.
Default value is 3600.
DD_DYNAMIC_INSTRUMENTATION_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: Debugger
const_name: DynamicInstrumentationEnabled
documentation: |-
Configuration key for enabling or disabling Dynamic Instrumentation.
Default value is false (disabled).
DD_DYNAMIC_INSTRUMENTATION_MAX_DEPTH_TO_SERIALIZE:
- implementation: A
type: int
default: '3'
product: Debugger
const_name: MaxDepthToSerialize
documentation: |-
Configuration key for the max object depth to serialize for probe snapshots.
Default value is 1.
DD_DYNAMIC_INSTRUMENTATION_MAX_TIME_TO_SERIALIZE:
- implementation: A
type: int
default: '200'
product: Debugger
const_name: MaxTimeToSerialize
documentation: |-
Configuration key for the maximum duration (in milliseconds) to run serialization for probe snapshots.
Default value is 150 ms.
DD_DYNAMIC_INSTRUMENTATION_REDACTED_EXCLUDED_IDENTIFIERS:
- implementation: A
type: string
default: null
product: Debugger
const_name: RedactedExcludedIdentifiers
documentation: Configuration key for set of identifiers that are excluded from redaction decisions.
DD_DYNAMIC_INSTRUMENTATION_REDACTED_IDENTIFIERS:
- implementation: A
type: array
default: ''
product: Debugger
const_name: RedactedIdentifiers
documentation: Configuration key for set of identifiers that are used in redaction decisions.
DD_DYNAMIC_INSTRUMENTATION_REDACTED_TYPES:
- implementation: A
type: array
default: ''
product: Debugger
const_name: RedactedTypes
documentation: Configuration key for set of types that are used in redaction decisions.
DD_DYNAMIC_INSTRUMENTATION_REDACTION_EXCLUDED_IDENTIFIERS:
- implementation: B
type: string
default: null
product: Debugger
const_name: RedactionExcludedIdentifiers
documentation: Configuration key for set of identifiers that are excluded from redaction decisions.
DD_DYNAMIC_INSTRUMENTATION_UPLOAD_BATCH_SIZE:
- implementation: A
type: int
default: '100'
product: Debugger
const_name: UploadBatchSize
documentation: |-
Configuration key for the maximum upload batch size.
Default value is 100.
DD_DYNAMIC_INSTRUMENTATION_UPLOAD_FLUSH_INTERVAL:
- implementation: A
type: int
default: '0'
product: Debugger
const_name: UploadFlushInterval
documentation: |-
Configuration key for the interval (in milliseconds) between flushing statuses.
Default value is 0 (dynamic).
DD_ENV:
- implementation: B
type: string
default: null
const_name: Environment
documentation: |-
Configuration key for the application's environment. Sets the "env" tag on every <see cref="Span"/>.
<seealso cref="Datadog.Trace.Configuration.MutableSettings.Environment"/>
DD_EXCEPTION_REPLAY_CAPTURE_FULL_CALLSTACK_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: Debugger
const_name: ExceptionReplayCaptureFullCallStackEnabled
documentation: |-
Configuration key to enable capturing the variables of all the frames in exception call stack.
Default value is false.
DD_EXCEPTION_REPLAY_CAPTURE_MAX_FRAMES:
- implementation: B
type: int
default: '4'
product: Debugger
const_name: ExceptionReplayCaptureMaxFrames
documentation: Configuration key for the maximum number of frames in a call stack we would like to capture values for.
DD_EXCEPTION_REPLAY_ENABLED:
- implementation: B
type: boolean
default: 'false'
product: Debugger
aliases:
- DD_EXCEPTION_DEBUGGING_ENABLED
const_name: ExceptionReplayEnabled
documentation: |-
Configuration key for enabling or disabling Exception Replay.
Default value is false (disabled).
DD_EXCEPTION_REPLAY_AGENTLESS_ENABLED:
- implementation: A
type: boolean
default: 'false'
product: Debugger
documentation: |-
Configuration key for enabling or disabling agentless Exception Replay uploads.
Default value is false.
DD_EXCEPTION_REPLAY_AGENTLESS_URL:
- implementation: A
type: string
default: null
product: Debugger
documentation: |-
Configuration key for overriding the agentless Exception Replay intake URL.
Default value is derived from DD_SITE (https://debugger-intake.{site}/api/v2/debugger).
DD_EXCEPTION_REPLAY_MAX_EXCEPTION_ANALYSIS_LIMIT:
- implementation: A
type: int
default: '100'
product: Debugger
const_name: MaxExceptionAnalysisLimit
documentation: |-
Configuration key for setting the maximum number of exceptions to be analyzed by Exception Replay within a 1-second time interval.
Default value is <c>100</c>.
DD_EXCEPTION_REPLAY_RATE_LIMIT_SECONDS:
- implementation: A
type: int
default: '3600'
product: Debugger
const_name: RateLimitSeconds
documentation: |-
Configuration key for the interval used to track exceptions
Default value is <c>1</c>h.
DD_EXPERIMENTAL_APPSEC_USE_UNSAFE_ENCODER:
- implementation: A
type: boolean
default: 'false'
product: AppSec
const_name: UseUnsafeEncoder
documentation: Use new unsafe encoder for the waf
DD_EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED:
- implementation: A
type: boolean
default: 'false'
const_name: PropagateProcessTags
documentation: |-
Enables propagation of process-level tags across traces. Type: `boolean`. Default: `false`
DD_GIT_BRANCH:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git branch name.
DD_GIT_COMMIT_AUTHOR_DATE:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit author date.
DD_GIT_COMMIT_AUTHOR_EMAIL:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit author email.
DD_GIT_COMMIT_AUTHOR_NAME:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit author name.
DD_GIT_COMMIT_COMMITTER_DATE:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit committer date.
DD_GIT_COMMIT_COMMITTER_EMAIL:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit committer email.
DD_GIT_COMMIT_COMMITTER_NAME:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit committer name.
DD_GIT_COMMIT_MESSAGE:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git commit message.
DD_GIT_COMMIT_SHA:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: GitCommitSha
documentation: |-
Configuration key for the application's git commit hash. Sets the "_dd.git.commit.sha" tag on every <see cref="Span"/>.
<seealso cref="Datadog.Trace.Configuration.MutableSettings.GitCommitSha"/>
DD_GIT_PULL_REQUEST_BASE_BRANCH:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for pull request base branch.
DD_GIT_PULL_REQUEST_BASE_BRANCH_SHA:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for pull request base branch SHA.
DD_GIT_REPOSITORY_URL:
- implementation: A
type: string
default: null
product: CIVisibility
const_name: GitRepositoryUrl
documentation: |-
Configuration key for the application's git repo URL. Sets the "_dd.git.repository_url" tag on every <see cref="Span"/>.
<seealso cref="Datadog.Trace.Configuration.MutableSettings.GitRepositoryUrl"/>
DD_GIT_TAG:
- implementation: A
type: string
default: null
product: CIVisibility
documentation: CI Visibility environment variable for git tag.
DD_HTTP_CLIENT_ERROR_STATUSES:
- implementation: A
type: string
default: 400-499
const_name: DeprecatedHttpClientErrorStatusCodes
documentation: |-
Configuration key for the application's client http statuses to set spans as errors by.
<seealso cref="Datadog.Trace.Configuration.MutableSettings.HttpClientErrorStatusCodes"/>
DD_HTTP_SERVER_ERROR_STATUSES:
- implementation: A
type: string
default: 500-599
const_name: DeprecatedHttpServerErrorStatusCodes
documentation: |-
Configuration key for the application's server http statuses to set spans as errors by.
<seealso cref="Datadog.Trace.Configuration.MutableSettings.HttpServerErrorStatusCodes"/>
DD_HTTP_SERVER_TAG_QUERY_STRING:
- implementation: A
type: boolean
default: 'true'
const_name: QueryStringReportingEnabled
documentation: |-
Configuration key for enabling/disabling reporting query string
Default value is true
<seealso cref="Datadog.Trace.Configuration.TracerSettings.QueryStringReportingEnabled"/>
DD_HTTP_SERVER_TAG_QUERY_STRING_SIZE:
- implementation: A
type: int
default: '5000'
const_name: QueryStringReportingSize
documentation: |-
Configuration key for setting the max size of the querystring to report, before obfuscation
Default value is 5000, 0 means that we don't limit the size.
<seealso cref="Datadog.Trace.Configuration.TracerSettings.QueryStringReportingSize"/>
DD_IAST_COOKIE_FILTER_PATTERN:
- implementation: A
type: string
default: .*
product: Iast
const_name: CookieFilterRegex
documentation: |-
Configuration key for number of rows to taint on each Db query in IAST.
Default value is 1
DD_IAST_DB_ROWS_TO_TAINT:
- implementation: A
type: int
default: '1'
product: Iast
const_name: DataBaseRowsToTaint
documentation: |-
Configuration key for number of rows to taint on each Db query in IAST.
Default value is 1
DD_IAST_DEDUPLICATION_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: Iast
const_name: IsIastDeduplicationEnabled
documentation: |-
Configuration key for enabling or disabling the vulnerability duplication detection.
When enabled, a vulnerability will only be reported once in the lifetime of an app,
instead of on every usage. Default value is true (enabled).
DD_IAST_ENABLED:
- implementation: B
type: boolean
default: 'false'
product: Iast
const_name: Enabled
documentation: |-
Configuration key for enabling or disabling the IAST.
Default value is false (disabled).
DD_IAST_MAX_CONCURRENT_REQUESTS:
- implementation: A
type: int
default: '2'
product: Iast
const_name: MaxConcurrentRequests
documentation: |-
Configuration key for the maximum number of requests
to be analyzed by IAST concurrently. Defaults to 2.
DD_IAST_MAX_RANGE_COUNT:
- implementation: A
type: int
default: '10'
product: Iast
const_name: MaxRangeCount
documentation: |-
Configuration key for the maximum number of ranges
a tainted object can hold. Defaults to 10.
DD_IAST_REDACTION_ENABLED:
- implementation: A
type: boolean
default: 'true'
product: Iast
const_name: RedactionEnabled
documentation: |-
Configuration key for specifying a custom regex to obfuscate source keys.
Default value is in TracerSettings
DD_IAST_REDACTION_NAME_PATTERN:
- implementation: C
type: string
default: (?i)(?: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)
product: Iast
const_name: RedactionKeysRegex
documentation: |-
Configuration key for specifying a custom regex to obfuscate source keys.
Default value is in TracerSettings
DD_IAST_REDACTION_VALUE_PATTERN:
- implementation: C
type: string
default: (?i)(?: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,})
product: Iast
const_name: RedactionValuesRegex
documentation: |-
Configuration key for specifying a custom regex to obfuscate source values.
Default value is in TracerSettings
DD_IAST_REGEXP_TIMEOUT:
- implementation: A
type: decimal
default: '200.0'
product: Iast
const_name: RegexTimeout
documentation: |-
Configuration key for specifying a timeout in milliseconds to the execution of regexes in IAST
Default value is 200ms
DD_IAST_REQUEST_SAMPLING:
- implementation: A
type: int
default: '30'
product: Iast
const_name: RequestSampling
documentation: |-
Configuration key for controlling the percentage of requests