-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmain.en.yaml
More file actions
9350 lines (9350 loc) · 319 KB
/
main.en.yaml
File metadata and controls
9350 lines (9350 loc) · 319 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
menu:
main:
- name: Essentials
identifier: essentials_heading
weight: 1000000
- name: In The App
identifier: platform_heading
weight: 2000000
- name: Incident Response
identifier: incident_response_heading
weight: 3000000
- name: Actions & Remediations
identifier: actions_heading
weight: 4000000
- name: Infrastructure
identifier: infrastructure_heading
weight: 5000000
- name: Cloud Cost
identifier: cloud_cost_heading
weight: 6000000
- name: Application Performance
identifier: apm_heading
weight: 7000000
- name: Data Observability
identifier: data_observability_heading
weight: 8000000
- name: Digital Experience
identifier: digital_experience_heading
weight: 9000000
- name: Software Delivery
identifier: software_delivery_heading
weight: 10000000
- name: Developer Integrations
identifier: developer_integrations_heading
weight: 11000000
- name: Security
identifier: security_platform_heading
weight: 12000000
- name: AI Observability
identifier: ai_observability_heading
weight: 13000000
- name: Log Management
identifier: log_management_heading
weight: 14000000
- name: Administration
identifier: administration_heading
weight: 15000000
- name: Getting Started
identifier: getting_started
url: getting_started/
pre: hex-ringed
parent: essentials_heading
weight: 10000
- name: Agent
identifier: getting_started_agent
url: getting_started/agent/
parent: getting_started
weight: 1
- name: API
identifier: getting_started_api
url: getting_started/api/
parent: getting_started
weight: 2
- name: APM Tracing
identifier: getting_started_collect_traces
url: getting_started/tracing/
parent: getting_started
weight: 3
- name: Containers
identifier: getting_started_containers
url: getting_started/containers/
parent: getting_started
weight: 5
- name: Autodiscovery
identifier: getting_started_containers_autodiscovery
url: getting_started/containers/autodiscovery
parent: getting_started_containers
weight: 501
- name: Datadog Operator
identifier: getting_started_containers_operator
url: getting_started/containers/datadog_operator
parent: getting_started_containers
weight: 502
- name: Dashboards
identifier: getting_started_dashboards
url: getting_started/dashboards/
parent: getting_started
weight: 6
- name: Database Monitoring
identifier: getting_started_database_monitoring
url: getting_started/database_monitoring/
parent: getting_started
weight: 7
- name: Datadog
identifier: getting_started_datadog
url: getting_started/application/
parent: getting_started
weight: 8
- name: Datadog Site
identifier: getting_started_datadog_site
url: getting_started/site/
parent: getting_started
weight: 9
- name: DevSecOps
identifier: getting_started_devsecops
url: getting_started/devsecops
parent: getting_started
weight: 10
- name: Incident Management
identifier: getting_started_incident_management
url: getting_started/incident_management/
parent: getting_started
weight: 11
- name: Integrations
identifier: getting_started_integrations
url: getting_started/integrations/
parent: getting_started
weight: 12
- name: AWS
identifier: getting_started_with_aws
url: getting_started/integrations/aws/
weight: 1201
parent: getting_started_integrations
- name: Azure
identifier: getting_started_with_azure
url: getting_started/integrations/azure/
weight: 1202
parent: getting_started_integrations
- name: Google Cloud
identifier: getting_started_with_google_cloud
url: getting_started/integrations/google_cloud/
weight: 1203
parent: getting_started_integrations
- name: OCI
identifier: getting_started_with_oci
url: getting_started/integrations/oci/
weight: 1204
parent: getting_started_integrations
- name: Terraform
identifier: getting_started_with_terraform
url: getting_started/integrations/terraform/
weight: 1205
parent: getting_started_integrations
- name: Internal Developer Portal
identifier: getting_started_internal_developer_portal
url: getting_started/internal_developer_portal/
parent: getting_started
weight: 13
- name: Logs
identifier: getting_started_logs
url: getting_started/logs/
parent: getting_started
weight: 14
- name: Monitors
identifier: getting_started_monitors
url: getting_started/monitors/
parent: getting_started
weight: 15
- name: Notebooks
identifier: getting_started_notebooks
url: getting_started/notebooks/
parent: getting_started
weight: 16
- name: OpenTelemetry
identifier: getting_started_opentelemetry
url: getting_started/opentelemetry/
parent: getting_started
weight: 17
- name: Profiler
identifier: getting_started_profiler
url: getting_started/profiler/
parent: getting_started
weight: 18
- name: Search
identifier: getting_started_search
url: getting_started/search/
parent: getting_started
weight: 19
- name: Product-Specific Search
identifier: getting_started_search_product_specific
url: getting_started/search/product_specific_reference
parent: getting_started_search
weight: 1901
- name: Session Replay
identifier: getting_started_session_replay
url: getting_started/session_replay/
parent: getting_started
weight: 20
- name: Security
identifier: getting_started_security
url: getting_started/security/
parent: getting_started
weight: 21
- name: App and API Protection
identifier: getting_started_application_security
url: getting_started/security/application_security
parent: getting_started_security
weight: 2101
- name: Cloud Security
identifier: getting_started_cloud_security_management
url: getting_started/security/cloud_security_management/
parent: getting_started_security
weight: 2102
- name: Cloud SIEM
identifier: getting_started_cloud_siem
url: getting_started/security/cloud_siem/
parent: getting_started_security
weight: 2103
- name: Code Security
identifier: getting_started_code_security
url: getting_started/code_security/
parent: getting_started_security
weight: 2104
- name: Serverless for AWS Lambda
identifier: getting_started_serverless
url: getting_started/serverless/
parent: getting_started
weight: 22
- name: Software Delivery
identifier: getting_started_software_delivery
url: getting_started/software_delivery/
parent: getting_started
weight: 23
- name: CI Visibility
identifier: getting_started_ci_visibility
url: getting_started/ci_visibility/
parent: getting_started_software_delivery
weight: 2301
- name: Feature Flags
identifier: getting_started_feature_flags
url: getting_started/feature_flags/
parent: getting_started_software_delivery
weight: 2302
- name: Test Optimization
identifier: getting_started_test_optimization
url: getting_started/test_optimization/
parent: getting_started_software_delivery
weight: 2303
- name: Test Impact Analysis
identifier: getting_started_test_impact_analysis
url: getting_started/test_impact_analysis/
parent: getting_started_software_delivery
weight: 2304
- name: MCP Tools
identifier: getting_started_software_delivery_mcp_tools
url: getting_started/software_delivery_mcp_tools/
parent: getting_started_software_delivery
weight: 2305
- name: Synthetic Monitoring and Testing
identifier: getting_started_synthetics
url: getting_started/synthetics/
parent: getting_started
weight: 24
- name: API Tests
identifier: getting_started_api_test
url: getting_started/synthetics/api_test
parent: getting_started_synthetics
weight: 2401
- name: Browser Tests
identifier: getting_started_browser_test
url: getting_started/synthetics/browser_test
parent: getting_started_synthetics
weight: 2402
- name: Mobile App Tests
identifier: getting_started_mobile_app
url: getting_started/synthetics/mobile_app_testing
parent: getting_started_synthetics
weight: 2403
- name: Continuous Testing
identifier: getting_started_continuous_testing
url: getting_started/continuous_testing/
parent: getting_started_synthetics
weight: 2404
- name: Private Locations
identifier: getting_started_private_location
url: getting_started/synthetics/private_location
parent: getting_started_synthetics
weight: 2405
- name: Tags
identifier: tagging_
url: getting_started/tagging/
parent: getting_started
weight: 26
- name: Assigning Tags
identifier: assigning_tags
url: getting_started/tagging/assigning_tags
parent: tagging_
weight: 2601
- name: Unified Service Tagging
identifier: unified_service_tagging
url: getting_started/tagging/unified_service_tagging
parent: tagging_
weight: 2602
- name: Using Tags
identifier: using_tags
url: getting_started/tagging/using_tags
parent: tagging_
weight: 2603
- name: Workflow Automation
identifier: getting_started_workflow_automation
url: getting_started/workflow_automation/
parent: getting_started
weight: 29
- name: Learning Center
identifier: getting_started_learning_center
url: getting_started/learning_center/
parent: getting_started
weight: 30
- name: Support
identifier: getting_started_support
url: getting_started/support/
parent: getting_started
weight: 31
- name: Glossary
url: glossary/
pre: features
identifier: glossary
parent: essentials_heading
weight: 20000
- name: Standard Attributes
url: /standard-attributes
pre: search
parent: essentials_heading
identifier: agent_standard_attributes
weight: 30000
- name: Guides
url: all_guides/
pre: compass
identifier: guides
parent: essentials_heading
weight: 40000
- name: Agent
url: agent/
pre: agent-fill
parent: essentials_heading
weight: 50000
identifier: agent
- name: Architecture
url: agent/architecture/
parent: agent
identifier: architecture
weight: 2
- name: IoT
url: agent/iot/
parent: agent
identifier: agent_iot
weight: 3
- name: Supported Platforms
url: agent/supported_platforms/
parent: agent
identifier: agent_supported_platforms
weight: 4
- name: AIX
identifier: basic_agent_usage_aix
url: agent/supported_platforms/aix/
weight: 401
parent: agent_supported_platforms
- name: Linux
identifier: basic_agent_usage_linux
url: agent/supported_platforms/linux/
weight: 402
parent: agent_supported_platforms
- name: Ansible
identifier: basic_agent_usage_ansible
url: agent/supported_platforms/ansible/
parent: agent_supported_platforms
weight: 403
- name: Chef
identifier: basic_agent_usage_chef
url: agent/supported_platforms/chef/
weight: 404
parent: agent_supported_platforms
- name: Heroku
identifier: basic_agent_usage_heroku
url: agent/supported_platforms/heroku/
weight: 405
parent: agent_supported_platforms
- name: MacOS
identifier: basic_agent_usage_osx
url: agent/supported_platforms/osx/
weight: 406
parent: agent_supported_platforms
- name: Puppet
identifier: basic_agent_usage_puppet
url: agent/supported_platforms/puppet/
weight: 407
parent: agent_supported_platforms
- name: SaltStack
identifier: basic_agent_usage_saltstack
url: agent/supported_platforms/saltstack/
weight: 408
parent: agent_supported_platforms
- name: SCCM
identifier: basic_agent_usage_sccm
url: agent/supported_platforms/sccm/
weight: 409
parent: agent_supported_platforms
- name: Windows
identifier: basic_agent_usage_windows
url: agent/supported_platforms/windows/
weight: 410
parent: agent_supported_platforms
- name: From Source
identifier: basic_agent_usage_source
url: agent/supported_platforms/source/
weight: 411
parent: agent_supported_platforms
- name: Log Collection
url: agent/logs/
identifier: agent_logs
parent: agent
weight: 5
- name: Log Agent tags
url: agent/logs/agent_tags/
parent: agent_logs
identifier: agent_logs_tags
weight: 501
- name: Advanced Configurations
identifier: agent_logs_advanced_log_collection
url: agent/logs/advanced_log_collection
parent: agent_logs
weight: 502
- name: Proxy
identifier: agent_logs_proxy
url: agent/logs/proxy
parent: agent_logs
weight: 503
- name: Transport
identifier: agent_logs_transport
url: agent/logs/log_transport
parent: agent_logs
weight: 504
- name: Multi-Line Detection
identifier: multi_line_detection
url: agent/logs/auto_multiline_detection
parent: agent_logs
weight: 506
- name: Configuration
url: agent/configuration
parent: agent
identifier: agent_configuration
weight: 6
- name: Commands
identifier: agent_configuration_commands
url: agent/configuration/agent-commands/
parent: agent_configuration
weight: 601
- name: Configuration Files
identifier: agent_configuration_files
url: agent/configuration/agent-configuration-files/
parent: agent_configuration
weight: 602
- name: Log Files
identifier: agent_configuration_log_files
url: agent/configuration/agent-log-files/
parent: agent_configuration
weight: 603
- name: Status Page
identifier: agent_configuration_status_page
url: agent/configuration/agent-status-page/
parent: agent_configuration
weight: 604
- name: Network Traffic
identifier: agent_configuration_network_traffic
url: agent/configuration/network/
parent: agent_configuration
weight: 605
- name: Proxy Configuration
identifier: agent_configuration_proxy
url: agent/configuration/proxy/
parent: agent_configuration
weight: 606
- name: Squid proxy configuration
identifier: proxy_squid
url: agent/configuration/proxy_squid
parent: agent_configuration_proxy
weight: 6001
- name: FIPS Compliance
identifier: agent_configuration_fips_compliance
url: agent/configuration/fips-compliance/
parent: agent_configuration
weight: 607
- name: Dual Shipping
identifier: agent_configuration_dual_shipping
url: agent/configuration/dual-shipping/
parent: agent_configuration
weight: 608
- name: Secrets Management
identifier: agent_configuration_secrets_management
url: agent/configuration/secrets-management/
parent: agent_configuration
weight: 609
- name: Fleet Automation
identifier: agent_fleet_automation
url: agent/fleet_automation
parent: agent
weight: 8
- name: Remote Agent Management
identifier: remote_agent_management
url: agent/fleet_automation/remote_management
parent: agent_fleet_automation
weight: 802
- name: Troubleshooting
url: agent/troubleshooting/
parent: agent
weight: 9
identifier: agent_troubleshooting
- name: Container Hostname Detection
identifier: agent_troubleshooting_hostname_containers
url: agent/troubleshooting/hostname_containers/
parent: agent_troubleshooting
weight: 1001
- name: Debug Mode
identifier: agent_troubleshooting_debug_mode
url: agent/troubleshooting/debug_mode/
parent: agent_troubleshooting
weight: 1002
- name: Agent Flare
identifier: agent_troubleshooting_agent_flare
url: agent/troubleshooting/send_a_flare/
parent: agent_troubleshooting
weight: 1003
- name: Agent Check Status
identifier: agent_troubleshooting_agent_check_status
url: agent/troubleshooting/agent_check_status/
parent: agent_troubleshooting
weight: 1004
- name: NTP Issues
identifier: agent_troubleshooting_ntp
url: agent/troubleshooting/ntp/
parent: agent_troubleshooting
weight: 1005
- name: Permission Issues
identifier: agent_troubleshooting_permissions
url: agent/troubleshooting/permissions/
parent: agent_troubleshooting
weight: 1006
- name: Integrations Issues
identifier: agent_troubleshooting_integrations
url: agent/troubleshooting/integrations/
parent: agent_troubleshooting
weight: 1007
- name: Site Issues
identifier: agent_troubleshooting_site
url: agent/troubleshooting/site/
parent: agent_troubleshooting
weight: 1008
- name: Autodiscovery Issues
identifier: agent_troubleshooting_autodiscovery
url: agent/troubleshooting/autodiscovery/
parent: agent_troubleshooting
weight: 1009
- name: Windows Container Issues
identifier: agent_troubleshooting_windows_containers
url: agent/troubleshooting/windows_containers
weight: 1010
parent: agent_troubleshooting
- name: Agent Runtime Configuration
identifier: agent_troubleshooting_runtime_configuration
url: agent/troubleshooting/config
weight: 1011
parent: agent_troubleshooting
- name: High CPU or Memory Consumption
identifier: agent_troubleshooting_high_cpu_memory_consumption
url: agent/troubleshooting/high_memory_usage/
weight: 1012
parent: agent_troubleshooting
- name: Guides
url: agent/guide/
identifier: agent_guides
parent: agent
weight: 12
- name: Data Security
identifier: agent_security
url: data_security/agent/
parent: agent
weight: 13
- name: Integrations
url: integrations/
identifier: integrations_top_level
pre: integrations
parent: essentials_heading
weight: 50000
- name: Guides
url: integrations/guide/
identifier: integration_guides
parent: integrations_top_level
weight: 1
- name: OpenTelemetry
url: opentelemetry/
identifier: opentelemetry_top_level
pre: open-telemetry
parent: essentials_heading
weight: 70000
- name: Getting Started
url: /opentelemetry/getting_started/
identifier: otel_guides_getting_started
parent: opentelemetry_top_level
weight: 1
- name: Datadog Example Application
url: /opentelemetry/getting_started/datadog_example
parent: otel_guides_getting_started
weight: 101
identifier: otel_guides_getting_started_datadog_example
- name: OpenTelemetry Demo Application
url: /opentelemetry/getting_started/otel_demo_to_datadog
parent: otel_guides_getting_started
weight: 102
identifier: otel_guides_getting_started_otel_demo_to_datadog
- name: Feature Compatibility
url: opentelemetry/compatibility/
identifier: otel_compatibility
parent: opentelemetry_top_level
weight: 2
- name: Instrument Your Applications
url: /opentelemetry/instrument/
identifier: otel-instrumentation
parent: opentelemetry_top_level
weight: 3
- name: Using OTel SDK
url: opentelemetry/instrument/otel_sdks/
identifier: otel_sdks
parent: otel-instrumentation
weight: 301
- name: Using Datadog SDK
url: /opentelemetry/instrument/dd_sdks
identifier: otel-dd-sdk-parent
parent: otel-instrumentation
weight: 302
- name: Configuration
url: opentelemetry/config/environment_variable_support/
identifier: otel_env_var
parent: otel-dd-sdk-parent
weight: 3021
- name: APIs
url: /opentelemetry/instrument/dd_sdks/api_support
identifier: otel-api-dd-sdk
parent: otel-dd-sdk-parent
weight: 3022
- name: Instrumentation Libraries
url: /opentelemetry/instrument/dd_sdks/instrumentation_libraries/
identifier: otel_instrumentation_libraries
parent: otel-dd-sdk-parent
weight: 3023
- name: Send Data to Datadog
identifier: otel_collect
url: /opentelemetry/setup/
parent: opentelemetry_top_level
weight: 4
- name: DDOT Collector (Recommended)
url: /opentelemetry/setup/ddot_collector
identifier: otel-setup-ddot
parent: otel_collect
weight: 401
- name: Install the DDOT Collector
url: /opentelemetry/setup/ddot_collector/install/kubernetes_daemonset
identifier: otel-setup-ddot-install
parent: otel-setup-ddot
weight: 4011
- name: Use Custom OTel Components
url: /opentelemetry/setup/ddot_collector/custom_components
identifier: otel-setup-ddot-custom
parent: otel-setup-ddot
weight: 4012
- name: Migrate to the DDOT Collector
url: /opentelemetry/migrate/ddot_collector
identifier: otel-setup-ddot-migrate
parent: otel-setup-ddot
weight: 4013
- name: Other Setup Options
url: /opentelemetry/setup/
identifier: otel-setup-other
parent: otel_collect
weight: 402
- name: OpenTelemetry Collector
url: /opentelemetry/setup/collector_exporter/
identifier: otel-setup-collector-exporter
parent: otel-setup-other
weight: 4021
- name: Deploy
url: /opentelemetry/setup/collector_exporter/deploy
identifier: otel-setup-collector-exporter-deploy
parent: otel-setup-collector-exporter
weight: 40211
- name: Batch and Memory Settings
url: opentelemetry/config/collector_batch_memory/
identifier: otel_batch_memory
parent: otel-setup-collector-exporter
weight: 40212
- name: Hostnames and Tagging
url: opentelemetry/config/hostname_tagging/
identifier: otel_hostnames_tagging
parent: otel-setup-collector-exporter
weight: 40213
- name: Log Collection
url: opentelemetry/config/log_collection/
identifier: otel_log_collection
parent: otel-setup-collector-exporter
weight: 40214
- name: OTLP Receiver
url: opentelemetry/config/otlp_receiver/
identifier: otel_otlp_receiver
parent: otel-setup-collector-exporter
weight: 40215
- name: OTLP Ingest in the Agent
url: /opentelemetry/setup/otlp_ingest_in_the_agent
identifier: otel-setup-otlp-ingest
parent: otel-setup-other
weight: 4022
- name: Direct OTLP Ingest
url: /opentelemetry/setup/otlp_ingest
identifier: otel-setup-intake-endpoint
parent: otel-setup-other
weight: 4023
- name: Logs Endpoint
url: /opentelemetry/setup/otlp_ingest/logs
parent: otel-setup-intake-endpoint
weight: 40231
identifier: otel_setup_agentless_logs
- name: Metrics Endpoint
url: /opentelemetry/setup/otlp_ingest/metrics
parent: otel-setup-intake-endpoint
weight: 40232
identifier: otel_setup_agentless_metrics
- name: Semantic Mapping
url: opentelemetry/mapping/
identifier: otel_schema
parent: opentelemetry_top_level
weight: 5
- name: Resource Attribute Mapping
url: opentelemetry/mapping/semantic_mapping/
identifier: otel_semantic_mapping
parent: otel_schema
weight: 501
- name: Metrics Mapping
url: opentelemetry/mapping/metrics_mapping/
identifier: otel_metrics_mapping
parent: otel_schema
weight: 502
- name: Infrastructure Host Mapping
url: opentelemetry/mapping/host_metadata/
identifier: otel_host_metadata
parent: otel_schema
weight: 503
- name: Hostname Mapping
url: opentelemetry/mapping/hostname/
identifier: otel_hostname
parent: otel_schema
weight: 504
- name: Service-entry Spans Mapping
url: opentelemetry/mapping/service_entry_spans/
identifier: otel_service_entry_spans
parent: otel_schema
weight: 505
- name: Ingestion Sampling
url: opentelemetry/ingestion_sampling
identifier: otel_ingestion_sampling
parent: opentelemetry_top_level
weight: 6
- name: Correlate Data
url: opentelemetry/correlate/
identifier: otel_explore
parent: opentelemetry_top_level
weight: 7
- name: Logs and Traces
url: /opentelemetry/correlate/logs_and_traces/
identifier: otel_logs
parent: otel_explore
weight: 701
- name: Metrics and Traces
url: /opentelemetry/correlate/metrics_and_traces/
identifier: otel_metrics_traces
parent: otel_explore
weight: 702
- name: RUM and Traces
url: /opentelemetry/correlate/rum_and_traces/
identifier: otel_rum
parent: otel_explore
weight: 703
- name: DBM and Traces
url: /opentelemetry/correlate/dbm_and_traces/
identifier: otel_dbm
parent: otel_explore
weight: 704
- name: Integrations
url: opentelemetry/integrations/
identifier: otel_integrations
parent: opentelemetry_top_level
weight: 8
- name: Apache Metrics
url: opentelemetry/integrations/apache_metrics/
identifier: otel_apache_metrics
parent: otel_integrations
weight: 801
- name: Apache Spark Metrics
url: opentelemetry/integrations/spark_metrics/
identifier: otel_apache_spark_metrics
parent: otel_integrations
weight: 802
- name: Collector Health Metrics
url: opentelemetry/integrations/collector_health_metrics/
identifier: otel_health_metrics
parent: otel_integrations
weight: 803
- name: Datadog Extension
url: opentelemetry/integrations/datadog_extension/
identifier: otel_datadog_extension
parent: otel_integrations
weight: 804
- name: Docker Metrics
url: opentelemetry/integrations/docker_metrics/
identifier: otel_docker_metrics
parent: otel_integrations
weight: 805
- name: HAProxy Metrics
url: opentelemetry/integrations/haproxy_metrics/
identifier: otel_haproxy_metrics
parent: otel_integrations
weight: 806
- name: Host Metrics
url: opentelemetry/integrations/host_metrics/
identifier: otel_host_metrics
parent: otel_integrations
weight: 807
- name: IIS Metrics
url: opentelemetry/integrations/iis_metrics/
identifier: otel_iis_metrics
parent: otel_integrations
weight: 808
- name: Kafka Metrics
url: opentelemetry/integrations/kafka_metrics/
identifier: otel_kafka_metrics
parent: otel_integrations
weight: 809
- name: Kubernetes Metrics
url: opentelemetry/integrations/kubernetes_metrics/
identifier: otel_kubernetes_metrics
parent: otel_integrations
weight: 810
- name: MySQL Metrics
url: opentelemetry/integrations/mysql_metrics/
identifier: otel_mysql_metrics
parent: otel_integrations
weight: 811
- name: NGINX Metrics
url: opentelemetry/integrations/nginx_metrics/
identifier: otel_nginx_metrics
parent: otel_integrations
weight: 812
- name: Podman Metrics
url: opentelemetry/integrations/podman_metrics/
identifier: otel_podman_metrics
parent: otel_integrations
weight: 813
- name: Runtime Metrics
url: opentelemetry/integrations/runtime_metrics/
identifier: otel_runtime_metrics
parent: otel_integrations
weight: 814
- name: Trace Metrics
url: opentelemetry/integrations/trace_metrics/
identifier: otel_trace_metrics
parent: otel_integrations
weight: 815
- name: Troubleshooting
url: opentelemetry/troubleshooting/
identifier: otel_troubleshooting
parent: opentelemetry_top_level
weight: 9
- name: Guides and Resources
url: /opentelemetry/guide
identifier: otel_guides
parent: opentelemetry_top_level
weight: 10
- name: Produce Delta Temporality Metrics
url: /opentelemetry/guide/otlp_delta_temporality
parent: otel_guides
weight: 1001
identifier: otel_guides_otlp_delta_temporality
- name: Visualize Histograms as Heatmaps
url: /opentelemetry/guide/otlp_histogram_heatmaps
parent: otel_guides
weight: 1002
identifier: otel_guides_otlp_histogram_heatmaps
- name: Instrument Unsupported Runtimes
url: /opentelemetry/guide/instrument_unsupported_runtimes
parent: otel_guides
weight: 1003
identifier: otel_guides_instrument_unsupported_runtimes
- name: Migration Guides
url: /opentelemetry/migrate/
identifier: otel_guides_migration
parent: otel_guides
weight: 1004
- name: Migrate to OTel Collector v0.120.0+
url: /opentelemetry/migrate/collector_0_120_0
parent: otel_guides_migration
weight: 10031
identifier: otel_guides_migration_collector_0_120_0
- name: Migrate to OTel Collector v0.95.0+
url: /opentelemetry/migrate/collector_0_95_0
parent: otel_guides_migration
weight: 10032
identifier: otel_guides_migration_collector_0_95_0
- name: New Operation Name Mappings
url: /opentelemetry/migrate/migrate_operation_names/
parent: otel_guides_migration
weight: 10033
identifier: otel_guides_migration_operation_names
- name: Agent with DDOT Collector
url: /opentelemetry/migrate/ddot_collector/
parent: otel_guides_migration
weight: 10034
identifier: otel_guides_migration_ddot_collector
- name: Reference
url: /opentelemetry/reference
identifier: otel_reference
parent: opentelemetry_top_level
weight: 11
- name: Terms and Concepts
url: /opentelemetry/reference/concepts
identifier: otel_concepts
parent: otel_reference
weight: 1101
- name: Trace Context Propagation
url: /opentelemetry/reference/trace_context_propagation
identifier: otel_propagation
parent: otel_reference
weight: 1102
- name: Trace IDs
url: /opentelemetry/reference/trace_ids
identifier: otel_trace_ids
parent: otel_reference
weight: 1103
- name: OTLP Metric Types
url: /opentelemetry/reference/otlp_metric_types
identifier: otel_otlp_metric_types
parent: otel_reference
weight: 1104
- name: Extend Datadog
url: extend/
pre: dev-code
identifier: dev_tools
parent: essentials_heading
weight: 70000
- name: Authorization
url: extend/authorization/
parent: dev_tools
identifier: dev_tools_authorization
weight: 1
- name: OAuth2 in Datadog
url: extend/authorization/oauth2_in_datadog/
parent: dev_tools_authorization
identifier: dev_tools_authorization_oauth2_in_datadog
weight: 101
- name: Authorization Endpoints
url: extend/authorization/oauth2_endpoints/
parent: dev_tools_authorization
identifier: dev_tools_authorization_oauth2_endpoints
weight: 102
- name: DogStatsD
url: extend/dogstatsd/
parent: dev_tools
identifier: dev_tools_dogstatsd
weight: 2
- name: Datagram Format
identifier: dev_tools_dogstatsd_datagram_format
url: extend/dogstatsd/datagram_shell
parent: dev_tools_dogstatsd
weight: 201
- name: Unix Domain Socket
identifier: dev_tools_dogstatsd_unix_socket
url: /extend/dogstatsd/unix_socket
parent: dev_tools_dogstatsd
weight: 202
- name: High Throughput Data
identifier: dev_tools_dogstatsd_high_throughput
url: extend/dogstatsd/high_throughput/
parent: dev_tools_dogstatsd
weight: 203
- name: Data Aggregation
identifier: dev_tools_dogstatsd_data_agregation
url: extend/dogstatsd/data_aggregation/
parent: dev_tools_dogstatsd
weight: 204
- name: DogStatsD Mapper
identifier: dev_tools_dogstatsd_mapper
url: extend/dogstatsd/dogstatsd_mapper/
parent: dev_tools_dogstatsd
weight: 205
- name: Custom Checks
url: extend/custom_checks/
parent: dev_tools
identifier: custom_checks
weight: 3
- name: Writing a Custom Agent Check
identifier: dev_tools_write_agent_check
url: extend/custom_checks/write_agent_check/
parent: custom_checks
weight: 301