forked from DataDog/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
2109 lines (1994 loc) · 72.9 KB
/
config.yaml
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
title: "Docs"
baseURL: "http://localhost:1313/"
metadataformat: "yaml"
canonifyURLs: true
pygmentsuseclasses: true
pygmentsCodeFences: true
# taxonomies
taxonomies:
tag: "tags"
video: "videos"
example: "examples"
preserveTaxonomyNames: true
# language
defaultContentLanguage: "en"
defaultContentLanguageInSubdir: false
languages:
en:
#languageName: "English"
#languageCode: "en-US"
disclaimer: ""
weight: 0
menu:
# Home Page
main:
# GETTING STARTED
- identifier: menu_references_getting_started
name: "Getting Started"
url: "getting_started/"
pre: "nav_start"
weight: 30
# TAGGING
- identifier: menu_references_tagging
name: "Tagging"
url: "tagging/"
pre: "nav_tagging"
weight: 35
- identifier: customnav_getting_started_assigning_tags
name: "Assigning tags"
url: "tagging/assigning_tags"
weight: 350
parent: menu_references_tagging
- identifier: customnav_getting_started_using_tags
name: "Using tags"
url: "tagging/using_tags"
weight: 351
parent: menu_references_tagging
# AGENT
- identifier: menu_references_agent
name: "Agent"
url: "agent/"
pre: "nav_agent"
weight: 40
## Basic agent usage
- identifier: customnav_agentnav_basic_usage
name: "Basic Agent Usage"
url: "agent/basic_agent_usage/"
weight: 10
parent: menu_references_agent
- identifier: amazonlinux
name: "Amazon Linux"
url: "agent/basic_agent_usage/amazonlinux/"
weight: 110
parent: customnav_agentnav_basic_usage
- identifier: centos
name: "CentOS"
url: "agent/basic_agent_usage/centos/"
weight: 115
parent: customnav_agentnav_basic_usage
- identifier: deb
name: "Debian"
url: "agent/basic_agent_usage/deb/"
weight: 120
parent: customnav_agentnav_basic_usage
- identifier: customnav_agentnav_docker
name: "Docker"
url: "agent/basic_agent_usage/docker/"
weight: 125
parent: customnav_agentnav_basic_usage
- identifier: fedora
name: "Fedora"
url: "agent/basic_agent_usage/fedora/"
weight: 130
parent: customnav_agentnav_basic_usage
- identifier: heroku
name: "Heroku"
url: "agent/basic_agent_usage/heroku/"
weight: 135
parent: customnav_agentnav_basic_usage
- identifier: osx
name: "Mac OS X"
url: "agent/basic_agent_usage/osx/"
weight: 145
parent: customnav_agentnav_basic_usage
- identifier: redhat
name: "Red Hat"
url: "agent/basic_agent_usage/redhat/"
weight: 150
parent: customnav_agentnav_basic_usage
- identifier: suse
name: "SUSE"
url: "agent/basic_agent_usage/suse/"
weight: 155
parent: customnav_agentnav_basic_usage
- identifier: ubuntu
name: "Ubuntu"
url: "agent/basic_agent_usage/ubuntu/"
weight: 160
parent: customnav_agentnav_basic_usage
- identifier: windows
name: "Windows"
url: "agent/basic_agent_usage/windows/"
weight: 165
parent: customnav_agentnav_basic_usage
- identifier: source
name: "From Source"
url: "agent/basic_agent_usage/source/"
weight: 170
parent: customnav_agentnav_basic_usage
- identifier: kubernetes
name: "Kubernetes"
url: "agent/kubernetes/"
weight: 15
parent: menu_references_agent
- identifier: kubernetes_daemonset
name: "DaemonSet Setup"
url: "agent/kubernetes/daemonset_setup"
weight: 150
parent: kubernetes
- identifier: kubernetes_host
name: "Host Setup"
url: "agent/kubernetes/host_setup"
weight: 155
parent: kubernetes
- identifier: kubernetes_event
name: "Event Collection"
url: "agent/kubernetes/event_collection"
weight: 160
parent: kubernetes
- identifier: kubernetes_integrations
name: "Custom Integrations"
url: "agent/kubernetes/integrations"
weight: 165
parent: kubernetes
- identifier: kubernetes_metrics
name: "Metrics"
url: "agent/kubernetes/metrics"
weight: 170
parent: kubernetes
- identifier: kubernetes_legacy
name: "Legacy Versions"
url: "agent/kubernetes/legacy"
weight: 175
parent: kubernetes
- identifier: autodiscovery
name: "Autodiscovery"
url: "agent/autodiscovery"
weight: 20
parent: menu_references_agent
- identifier: proxy
name: "Proxy"
url: "agent/proxy"
weight: 30
parent: menu_references_agent
- identifier: network
name: "Network"
url: "agent/network"
weight: 40
parent: menu_references_agent
- identifier: prometheus
name: "Prometheus Checks"
url: "agent/prometheus"
weight: 60
parent: menu_references_agent
- identifier: custom_python_package
name: "Adding Python packages"
url: "agent/custom_python_package"
weight: 70
parent: menu_references_agent
# Troubleshooting
- identifier: troubleshooting
name: "Troubleshooting"
url: "agent/troubleshooting/"
weight: 60
parent: menu_references_agent
- identifier: customnav_agentnav_security
name: "Security"
url: "agent/security"
weight: 80
parent: menu_references_agent
#- identifier: customnav_agentnav_faq
# name: "FAQ"
# url: "agent/faq/"
# weight: 100
# parent: menu_references_agent
# AGENT - Subnav end
# INTEGRATIONS
- identifier: menu_references_integrations
name: "Integrations"
url: "integrations/"
pre: "nav_integrations"
weight: 50
# INTEGRATIONS - Subnav start
# INTEGRATIONS - Subnav end
# Watchdog
- identifier: customnav_watchdog
name: "Watchdog"
url: "watchdog/"
pre: "nav_watchdog"
weight: 55
# GRAPHING
- identifier: menu_references_graphing
name: "Graphing"
url: "graphing/"
pre: "nav_graphing"
weight: 60
# GRAPHING - Subnav start
- identifier: customnav_graphingnav_dashboards
name: "Dashboards"
url: "graphing/dashboards/"
weight: 10
parent: menu_references_graphing
# Graphing dashboard subnav
- identifier: customnav_graphingnav_screenboard
name: "Screenboard"
url: "graphing/dashboards/screenboard/"
weight: 100
parent: customnav_graphingnav_dashboards
- identifier: customnav_graphingnav_timeboard
name: "Timeboard"
url: "graphing/dashboards/timeboard/"
weight: 110
parent: customnav_graphingnav_dashboards
- identifier: customnav_graphingnav_template_variables
name: "Template Variables"
url: "graphing/dashboards/template_variables/"
weight: 120
parent: customnav_graphingnav_dashboards
- identifier: customnav_graphingnav_shared_graph
name: "Shared Graphs"
url: "graphing/dashboards/shared_graph/"
weight: 130
parent: customnav_graphingnav_dashboards
- identifier: customnav_graphingnav_widgets
name: "Widgets"
url: "graphing/dashboards/widgets/"
weight: 140
parent: customnav_graphingnav_dashboards
# Metrics
- identifier: customnav_graphingnav_metrics
name: "Metrics"
url: "graphing/metrics/"
weight: 20
parent: menu_references_graphing
- identifier: customnav_graphingnav_distribution
name: "Distributions"
url: "graphing/metrics/distributions"
weight: 210
parent: customnav_graphingnav_metrics
- identifier: customnav_graphingnav_notebooks
name: "Notebooks"
url: "graphing/notebooks/"
weight: 30
parent: menu_references_graphing
- identifier: customnav_graphingnav_events
name: "Event Stream"
url: "graphing/event_stream/"
weight: 40
parent: menu_references_graphing
- identifier: customnav_graphingnav_infrastructure
name: "Infrastructure"
url: "graphing/infrastructure/"
weight: 50
parent: menu_references_graphing
- identifier: customnav_infrastructurenav_hostmap
name: "Host Map"
url: "graphing/infrastructure/hostmap/"
weight: 510
parent: customnav_graphingnav_infrastructure
- identifier: customnav_infrastructurenav_containermap
name: "Container Map"
url: "graphing/infrastructure/containermap/"
weight: 35
parent: customnav_graphingnav_infrastructure
- identifier: customnav_infrastructurenav_livecontainers
name: "Live Containers"
url: "graphing/infrastructure/livecontainers/"
weight: 520
parent: customnav_graphingnav_infrastructure
- identifier: customnav_infrastructurenav_process
name: "Live Processes"
url: "graphing/infrastructure/process/"
weight: 530
parent: customnav_graphingnav_infrastructure
# GRAPHING - Functions
- identifier: customnav_graphingnav_functions
name: "From the query to the graph "
url: "graphing/functions/"
weight: 60
parent: menu_references_graphing
- identifier: customnav_graphingnav_algorithms
name: "Algorithms"
url: "graphing/functions/algorithms/"
weight: 610
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_arithmetic
name: "Arithmetic"
url: "graphing/functions/arithmetic/"
weight: 620
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_count
name: "Count"
url: "graphing/functions/count/"
weight: 630
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_interpolation
name: "Interpolation"
url: "graphing/functions/interpolation/"
weight: 640
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_rank
name: "Rank"
url: "graphing/functions/rank/"
weight: 650
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_rate
name: "Rate"
url: "graphing/functions/rate/"
weight: 660
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_regression
name: "Regression"
url: "graphing/functions/regression/"
weight: 670
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_rollup
name: "Rollup"
url: "graphing/functions/rollup/"
weight: 680
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_smoothing
name: "Smoothing"
url: "graphing/functions/smoothing/"
weight: 690
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_timeshift
name: "Timeshift"
url: "graphing/functions/timeshift/"
weight: 695
parent: customnav_graphingnav_functions
- identifier: customnav_graphingnav_graphingjson
name: "Graphing JSON"
url: "graphing/graphing_json/"
weight: 70
parent: menu_references_graphing
# - identifier: customnav_graphingnav_faq
# name: "FAQ"
# url: "graphing/faq/"
# weight: 90
# parent: menu_references_graphing
# GRAPHING - Subnav end
# ALERTING
- identifier: menu_references_monitoring
name: "Alerting"
url: "monitors/"
pre: "nav_alerting"
weight: 70
# ALERTING - Subnav start
- identifier: customnav_monitornav_monitor_types
name: "Monitor Types"
url: "monitors/monitor_types/"
weight: 30
parent: menu_references_monitoring
- identifier: customnav_monitortypenav_anomaly
name: "Anomaly"
url: "monitors/monitor_types/anomaly/"
weight: 310
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_apm
name: "APM"
url: "monitors/monitor_types/apm/"
weight: 320
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_composite
name: "Composite"
url: "monitors/monitor_types/composite/"
weight: 330
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_custom_check
name: "Custom Check"
url: "monitors/monitor_types/custom_check/"
weight: 340
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_event
name: "Event"
url: "monitors/monitor_types/event/"
weight: 350
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_forecasts
name: "Forecasts"
url: "monitors/monitor_types/forecasts/"
weight: 360
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_host
name: "Host"
url: "monitors/monitor_types/host/"
weight: 370
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_integration
name: "Integration"
url: "monitors/monitor_types/integration/"
weight: 380
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_monitor
name: "Log"
url: "monitors/monitor_types/log"
weight: 385
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_metric
name: "Metric"
url: "monitors/monitor_types/metric/"
weight: 390
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_network
name: "Network"
url: "monitors/monitor_types/network/"
weight: 400
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_outlier
name: "Outlier"
url: "monitors/monitor_types/outlier/"
weight: 410
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitortypenav_process
name: "Process"
url: "monitors/monitor_types/process/"
weight: 420
parent: customnav_monitornav_monitor_types
- identifier: customnav_monitornav_manage_monitor
name: "Manage Monitor"
url: "monitors/manage_monitor/"
weight: 130
parent: menu_references_monitoring
- identifier: customnav_monitornav_check_summary
name: "Check Summary"
url: "monitors/check_summary/"
weight: 140
parent: menu_references_monitoring
- identifier: customnav_monitornav_notifications
name: "Notifications"
url: "monitors/notifications/"
weight: 150
parent: menu_references_monitoring
- identifier: customnav_monitornav_downtimes
name: "Downtimes"
url: "monitors/downtimes/"
weight: 160
parent: menu_references_monitoring
#- identifier: customnav_monitornav_faq
# name: "FAQ"
# url: "monitors/faq/"
# weight: 170
# parent: menu_references_monitoring
# ALERTING - Subnav end
# TRACING/APM
- identifier: menu_references_tracing
name: "APM (Tracing)"
url: "tracing/"
pre: "nav_tracing"
weight: 80
# TRACING/APM - Subnav start
- identifier: customnav_tracingnav_setup
name: "APM setup"
url: "tracing/setup/"
weight: 10
parent: menu_references_tracing
# Setup -subnav
- identifier: customnav_tracingnav_apm_first_class_dimensions
name: "First Class Dimensions"
url: "tracing/setup/first_class_dimensions"
weight: 110
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_docker
name: "Docker"
url: "tracing/setup/docker/"
weight: 120
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_kubernetes
name: "Kubernetes"
url: "tracing/setup/kubernetes/"
weight: 130
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_java
name: "Java"
url: "tracing/setup/java/"
weight: 140
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_python
name: "Python"
url: "tracing/setup/python/"
weight: 150
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_ruby
name: "Ruby"
url: "tracing/setup/ruby/"
weight: 160
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_go
name: "Go"
url: "tracing/setup/go/"
weight: 170
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_javascript
name: "Node.js"
url: "tracing/setup/nodejs/"
weight: 180
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_dotnet
name: ".NET (Coming soon)"
url: "tracing/setup/dotnet/"
weight: 190
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_php
name: "PHP (Coming soon)"
url: "tracing/setup/php/"
weight: 195
parent: customnav_tracingnav_setup
- identifier: customnav_tracingnav_libraries
name: "Community Libraries"
url: "developers/libraries/#apm-tracing-client-libraries"
weight: 199
parent: customnav_tracingnav_setup
# Using the APM UI
- identifier: customnav_tracingnav_visualization
name: "Use the APM UI"
url: "tracing/visualization/"
weight: 20
parent: menu_references_tracing
- identifier: customnav_tracingnav_services_list
name: "Services List"
url: "tracing/visualization/services_list"
weight: 210
parent: customnav_tracingnav_visualization
- identifier: customnav_tracingnav_service
name: "Service page"
url: "tracing/visualization/service"
weight: 215
parent: customnav_tracingnav_visualization
- identifier: customnav_tracingnav_resource
name: "Resource page"
url: "tracing/visualization/resource"
weight: 220
parent: customnav_tracingnav_visualization
- identifier: customnav_tracingnav_trace
name: "Trace page"
url: "tracing/visualization/trace"
weight: 230
parent: customnav_tracingnav_visualization
# Trace Search
- identifier: customnav_tracingnav_trace_search
name: "Trace Search"
url: "tracing/search"
weight: 30
parent: menu_references_tracing
# Trace analytics
- identifier: customnav_tracingnav_graph
name: "Trace Analytics"
url: "tracing/analytics"
weight: 35
parent: menu_references_tracing
# Service Map
- identifier: customnav_tracingnav_servicemap
name: "Service Map"
url: "tracing/servicemap"
weight: 38
parent: menu_references_tracing
# Trace API
- identifier: customnav_tracingnav_api
name: "Trace API"
url: "api/#tracing"
weight: 50
parent: menu_references_tracing
# Getting further
- identifier: customnav_tracingnav_getting_further
name: "Getting further"
url: "tracing/getting_further/"
weight: 40
parent: menu_references_tracing
- identifier: customnav_tracingnav_apdex
name: "Apdex"
url: "tracing/getting_further/configure_an_apdex_for_your_traces_with_datadog_apm"
weight: 410
parent: customnav_tracingnav_getting_further
- identifier: customnav_tracingnav_resource_monitor
name: "Resource Monitor"
url: "tracing/getting_further/resource_monitor"
weight: 420
parent: customnav_tracingnav_getting_further
- identifier: customnav_tracingnav_apm_monitor
name: "Service Monitor"
url: "monitors/monitor_types/apm"
weight: 430
parent: customnav_tracingnav_getting_further
- identifier: customnav_tracingnav_apm_widget
name: "APM in Dashboard"
url: "graphing/dashboards/widgets/#service-summary"
weight: 440
parent: customnav_tracingnav_getting_further
- identifier: customnav_tracingnav_metrics_namespace
name: "Trace metrics namespace"
url: "tracing/getting_further/metrics_namespace"
weight: 450
parent: customnav_tracingnav_getting_further
- identifier: customnav_tracingnav_apm_sampling_storage
name: "Storage & Sampling"
url: "tracing/getting_further/trace_sampling_and_storage"
weight: 460
parent: customnav_tracingnav_getting_further
- identifier: customnav_tracingnav_apm_event
name: "APM events"
url: "tracing/getting_further/apm_events"
weight: 470
parent: customnav_tracingnav_getting_further
# Trace API
- identifier: customnav_tracingnav_api
name: "Trace API"
url: "api/#tracing"
weight: 50
parent: menu_references_tracing
#- identifier: customnav_tracingnav_faq
# name: "FAQ"
# url: "tracing/faq/"
# weight: 100
# parent: menu_references_tracing
- identifier: customnav_tracingnav_security
name: "Security"
url: "tracing/security"
weight: 60
parent: menu_references_tracing
# TRACING/APM - Subnav end
# LOGS
- identifier: menu_references_logs
name: "Log Management"
url: "logs/"
pre: "nav_logs"
weight: 90
# Log collection
- identifier: customnav_lognav_collection
name: "Log Collection & Integrations"
url: "logs/log_collection/"
weight: 20
parent: menu_references_logs
- identifier: customnav_lognav_aws
name: "AWS"
url: "integrations/amazon_web_services/#log-collection"
weight: 210
parent: customnav_lognav_collection
- identifier: docker_log_collection
name: "Docker"
url: "logs/log_collection/docker"
weight: 220
parent: customnav_lognav_collection
- identifier: customnav_lognav_csharp
name: "Csharp"
url: "logs/log_collection/csharp/"
weight: 230
parent: customnav_lognav_collection
- identifier: customnav_lognav_go
name: "Go"
url: "logs/log_collection/go/"
weight: 240
parent: customnav_lognav_collection
- identifier: customnav_lognav_java
name: "Java"
url: "logs/log_collection/java/"
weight: 250
parent: customnav_lognav_collection
- identifier: customnav_lognav_nodejs
name: "Nodejs"
url: "logs/log_collection/nodejs/"
weight: 260
parent: customnav_lognav_collection
- identifier: customnav_lognav_php
name: "PHP"
url: "logs/log_collection/php/"
weight: 270
parent: customnav_lognav_collection
- identifier: customnav_lognav_python
name: "Python"
url: "logs/log_collection/python/"
weight: 280
parent: customnav_lognav_collection
- identifier: customnav_lognav_ruby
name: "Ruby"
url: "logs/log_collection/ruby/"
weight: 290
parent: customnav_lognav_collection
- identifier: customnav_lognav_other
name: "Other Integrations"
url: "integrations/#cat-log-collection"
weight: 299
parent: customnav_lognav_collection
# LOGS - Processing
- identifier: customnav_lognav_processing
name: "Processing"
url: "logs/processing/"
weight: 30
parent: menu_references_logs
- identifier: customnav_lognav_pipelines
name: "Pipelines"
url: "logs/processing/pipelines/"
weight: 310
parent: customnav_lognav_processing
- identifier: customnav_lognav_processors
name: "Processors"
url: "logs/processing/processors/"
weight: 320
parent: customnav_lognav_processing
- identifier: customnav_lognav_parsing
name: "Parsing"
url: "logs/processing/parsing/"
weight: 330
parent: customnav_lognav_processing
- identifier: customnav_lognav_attributes_naming_convention
name: "Naming Convention"
url: "logs/processing/attributes_naming_convention/"
weight: 340
parent: customnav_lognav_processing
# LOGS - Live tail
- identifier: customnav_lognav_live_tail
name: "Live Tail"
url: "logs/live_tail/"
weight: 40
parent: menu_references_logs
# LOGS - Explorer
- identifier: customnav_lognav_explorer
name: "Explorer"
url: "logs/explorer/"
weight: 50
parent: menu_references_logs
- identifier: customnav_lognav_search
name: "Search"
url: "logs/explorer/search"
weight: 510
parent: customnav_lognav_explorer
- identifier: customnav_lognav_saved_views
name: "Saved Views"
url: "logs/explorer/saved_views"
weight: 520
parent: customnav_lognav_explorer
- identifier: customnav_lognav_analytics
name: "Log Analytics"
url: "logs/explorer/analytics"
weight: 530
parent: customnav_lognav_explorer
- identifier: customnav_lognav_logging_without_limits
name: "Logging without Limits"
url: "logs/logging_without_limits/"
weight: 60
parent: menu_references_logs
- identifier: customnav_lognav_monitor
name: "Log monitor"
url: "monitors/monitor_types/log"
weight: 70
parent: menu_references_logs
# LOGS - Archives
- identifier: customnav_lognav_archives
name: "Archives"
url: "logs/archives/s3"
weight: 80
parent: menu_references_logs
- identifier: customnav_lognav_archives_s3
name: "AWS S3"
url: "logs/archives/s3"
weight: 810
parent: customnav_lognav_archives
#- identifier: customnav_lognav_faq
# name: "FAQ"
# url: "logs/faq/"
# weight: 90
# parent: menu_references_logs
- identifier: customnav_loggnav_security
name: "Security"
url: "logs/security"
weight: 100
parent: menu_references_logs
# LOGS - Subnav end
# DEVELOPERS
- identifier: menu_references_developers
name: "Developer Tools"
url: "developers/"
pre: "nav_developers"
weight: 100
# DEVELOPERS - Subnav start
- identifier: customnav_developersnav_dogstatsd
name: "DogStatsD"
url: "developers/dogstatsd/"
weight: 30
parent: menu_references_developers
- identifier: customnav_developersnav_dogstatsd_data_types
name: "Data Types and Tags"
url: "developers/dogstatsd/data_types"
weight: 301
parent: customnav_developersnav_dogstatsd
- identifier: customnav_developersnav_dogstatsd_datagram_shell
name: "Datagram and Shell Usage"
url: "developers/dogstatsd/datagram_shell"
weight: 302
parent: customnav_developersnav_dogstatsd
- identifier: customnav_developersnav_dogstatsd_unix_socket
name: "Unix Domain Socket usage"
url: "developers/dogstatsd/unix_socket"
weight: 303
parent: customnav_developersnav_dogstatsd
- identifier: customnav_developersnav_metrics
name: "Metrics"
url: "developers/metrics/"
weight: 40
parent: menu_references_developers
- identifier: customnav_developersnav_metrics_custom
name: "Custom Metrics"
url: "developers/metrics/custom_metrics/"
weight: 400
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_metrics_counts
name: "Counts"
url: "developers/metrics/counts"
weight: 401
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_metrics_distributions
name: "Distributions"
url: "developers/metrics/distributions"
weight: 402
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_metrics_gauges
name: "Gauges"
url: "developers/metrics/gauges"
weight: 403
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_metrics_histograms
name: "Histograms"
url: "developers/metrics/histograms"
weight: 404
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_metrics_rates
name: "Rates"
url: "developers/metrics/rates"
weight: 405
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_metrics_sets
name: "Sets"
url: "developers/metrics/sets"
weight: 406
parent: customnav_developersnav_metrics
- identifier: customnav_developersnav_libraries
name: "Libraries"
url: "developers/libraries/"
weight: 50
parent: menu_references_developers
- identifier: customnav_developersnav_office_hours
name: "Community Office Hours"
url: "developers/office_hours/"
weight: 60
parent: menu_references_developers
- identifier: customnav_developersnav_agent_checks
name: "Write an Agent Check"
url: "developers/agent_checks"
weight: 70
parent: menu_references_developers
- identifier: customnav_developersnav_prometheus
name: "Write a Prometheus Check"
url: "developers/prometheus"
weight: 80
parent: menu_references_developers
# Integrations core doc
- identifier: customnav_integrationsnav_new_integration
name: "Integrations"
url: "developers/integrations/"
weight: 90
parent: menu_references_developers
- identifier: customnav_integrationsnav_new_check_howto
name: "Create a new Integration"
url: "developers/integrations/new_check_howto"
weight: 901
parent: customnav_integrationsnav_new_integration
- identifier: customnav_integrationsnav_python
name: "Python"
url: "developers/integrations/python"
weight: 902
parent: customnav_integrationsnav_new_integration
- identifier: customnav_integrationsnav_legacy
name: "Legacy"
url: "developers/integrations/legacy"
weight: 903
parent: customnav_integrationsnav_new_integration
#- identifier: customnav_developersnav_faq
# name: "FAQ"
# url: "developers/faq/"
# weight: 140
# parent: menu_references_developers
# DEVELOPERS - Subnav end
# API
- identifier: menu_references_api
name: "API"
url: "api/"
pre: "nav_api"
weight: 110
# ACCOUNT MANAGEMENT
- identifier: menu_references_account_management
name: "Account management"
url: "account_management/"
pre: "nav_account"
weight: 120
# ACCOUNT MANAGEMENT - Subnav start
- identifier: customnav_accountmanagementnav_team
name: "Team management"
url: "account_management/team/"
weight: 30
parent: menu_references_account_management
- identifier: customnav_accountmanagementnav_org
name: "Organization settings"
url: "account_management/org_settings/"
weight: 40
parent: menu_references_account_management
- identifier: customnav_accountmanagementnav_saml
name: "SSO with SAML"
url: "account_management/saml/"
weight: 50
parent: menu_references_account_management
# SAML subnav
- identifier: saml_activedirectory
name: "Active Directory"
url: "account_management/saml/activedirectory"
weight: 510
parent: customnav_accountmanagementnav_saml
- identifier: saml_azure
name: "Azure"
url: "account_management/saml/azure"
weight: 520
parent: customnav_accountmanagementnav_saml
- identifier: saml_google