-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCODEOWNERS
More file actions
1016 lines (939 loc) · 69.7 KB
/
Copy pathCODEOWNERS
File metadata and controls
1016 lines (939 loc) · 69.7 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
# Package code owners
# The listed owners will be automatically added as reviewers for PRs,
# to ensure code quality and consistency of the package, and identify
# possible side effects.
# PRs should still be peer-reviewed by the team opening the PR
# See https://help.github.com/articles/about-codeowners/ for syntax
# Rules are matched bottom-to-top, so one team can own subdirectories
# and another the rest of the directory.
# When adding a new team to this file, don't forget to assign it
# a slack channel in tasks/libs/pipeline_notifications.py
# Config files for various CI systems / tasks
/.* @DataDog/agent-devx
/.claude/settings.json @DataDog/agent-devx
/.claude/agents/tend.md @DataDog/single-machine-performance
/.claude/agents/weed.md @DataDog/single-machine-performance
/.claude/rules/allium.md @DataDog/single-machine-performance
/.claude/rules/bazel.md @DataDog/agent-build
/.claude/skills/codereview_guideline.md @DataDog/agent-devx
/.claude/skills/allium/ @DataDog/single-machine-performance
/.claude/skills/agent-supply-chain-newsletter/ @DataDog/agent-devx
/.claude/skills/auto-jira/ @DataDog/agent-devx
/.claude/skills/create-component/ @DataDog/agent-runtimes
/.claude/skills/create-config-field/ @DataDog/agent-configuration
/.claude/skills/create-core-check/ @DataDog/agent-runtimes
/.claude/skills/create-go-module/ @DataDog/agent-runtimes
/.claude/skills/create-invoke-task/ @DataDog/agent-devx
/.claude/skills/create-pr/ @DataDog/agent-devx
/.claude/skills/create-release-note/ @DataDog/agent-devx
/.claude/skills/create-runtime-setting/ @DataDog/agent-runtimes @DataDog/agent-configuration
/.claude/skills/create-status-provider/ @DataDog/agent-configuration
/.claude/skills/create-subcommand/ @DataDog/agent-configuration
/.claude/skills/cws-iouring-coverage/ @DataDog/agent-security
/.claude/skills/explain-lading-config @DataDog/single-machine-performance
/.claude/skills/quality-gate-size-analysis/ @DataDog/agent-build
/.claude/skills/review-pr-comments/ @DataDog/agent-devx
/.claude/skills/run-e2e/ @DataDog/agent-devx
/.claude/skills/run-jira/ @DataDog/agent-devx
/.claude/skills/run-windows-e2e/ @DataDog/windows-products
/.claude/skills/update-3rd-party-libs @DataDog/agent-build
/.claude/skills/update-otel-deps/ @DataDog/opentelemetry-agent
/.claude/skills/write-e2e/ @DataDog/agent-devx
/.claude/skills/locate-config-setting/SKILL.md @DataDog/agent-configuration
# changing the config of mockery will regenerate the mocks, so owners will have to review anyway
/.mockery.yaml # do not notify anyone
/.go-version @DataDog/agent-runtimes @DataDog/agent-build
# Go linters and pre-commit config
/.golangci.yml @DataDog/agent-devx
/.pre-commit-config.yaml @DataDog/agent-devx
/.vscode/ @DataDog/agent-devx
# Bazel configuration
/*.bazel* @DataDog/agent-build
/.adms/ @DataDog/agent-build @DataDog/agent-devx
/.bazel* @DataDog/agent-build
/.buildifier.json @DataDog/agent-build
/bazel/ @DataDog/agent-build
/bazel/configs/rust.bazelrc @DataDog/agent-discovery @DataDog/agent-runtimes @DataDog/agent-build
/deps/ @DataDog/agent-build
# The owner should really be to a team that does not exist yet. It would cover supply chain in general.
# For now, agent-build are the experts in that.
/compliance/ @DataDog/agent-build
/third_party/ @DataDog/agent-build
/.copyright-overrides.yml @DataDog/agent-build @DataDog/agent-devx
/CHANGELOG.rst @DataDog/agent-delivery
/CHANGELOG-DCA.rst @DataDog/container-integrations @DataDog/container-platform
/CHANGELOG-INSTALLSCRIPT.rst @DataDog/agent-delivery
/*.md @DataDog/agent-devx
/CHANGELOG-AIX.md @DataDog/agent-runtimes
/AGENTS.md @DataDog/agent-devx
/CLAUDE.md @DataDog/agent-devx
/NOTICE @DataDog/agent-delivery
/LICENSE* # do not notify anyone
/rust/LICENSE* # do not notify anyone
/mkdocs.yml @DataDog/agent-devx
/release.json @DataDog/agent-build @DataDog/agent-delivery @DataDog/agent-integrations
/renovate.json @DataDog/agent-build
/pyproject.toml @DataDog/agent-devx
/repository.datadog.yml @DataDog/agent-devx
/code-coverage.datadog.yml @DataDog/agent-devx
/service.datadog.yaml @DataDog/agent-delivery @DataDog/agent-devx
/static-analysis.datadog.yml @DataDog/agent-devx
/rust-toolchain.toml @DataDog/agent-build @DataDog/agent-devx
/Cargo.toml @DataDog/agent-build @DataDog/agent-devx
/Cargo.lock @DataDog/agent-build @DataDog/agent-devx
/modules.yml @DataDog/agent-runtimes
# if go.work changes then either .go-version or modules.yml changed too, so ASC might as well own it
/go.work @DataDog/agent-runtimes
/.github/CODEOWNERS # do not notify anyone
/.github/*_TEMPLATE.md @DataDog/agent-devx
/.github/chainguard/** @DataDog/agent-devx
# Removed temporarily
# /.github/dependabot.yaml @DataDog/agent-devx
/.github/workflows/cws-btfhub-sync.yml @DataDog/agent-security @DataDog/agent-devx
/.github/workflows/gohai.yml @DataDog/agent-configuration @DataDog/agent-devx
/.github/workflows/go-update-commenter.yml @DataDog/agent-runtimes @DataDog/agent-devx
/.github/workflows/update-dependencies.yml @DataDog/agent-runtimes @DataDog/agent-devx
/.github/workflows/upgrade-python-patch-version.yml @DataDog/agent-integrations @DataDog/agent-devx
/.github/workflows/buildimages-update.yml @DataDog/agent-build @DataDog/agent-runtimes @DataDog/agent-devx
/.github/workflows/collector-generate-and-update.yml @DataDog/opentelemetry-agent @DataDog/agent-devx
/.github/workflows/update-kubernetes-versions.yml @DataDog/container-integrations @DataDog/agent-devx
/.run @DataDog/agent-devx
/.run/docker/ @DataDog/container-integrations @DataDog/container-platform
/skaffold.yaml @DataDog/agent-devx @DataDog/container-platform
/.run/skaffold/ @DataDog/agent-devx @DataDog/container-platform
# Gitlab files
# Files containing job contents are owned by teams in charge of the jobs + agent-devx or agent-delivery or agent-build
# Files that only describe structure (eg. includes, rules) are owned by agent-devx
/.gitlab/.ci-linters.yml @DataDog/agent-devx @DataDog/agent-build
/.gitlab/.pre/* @DataDog/agent-devx
/.gitlab/.post/* @DataDog/agent-devx
/.gitlab/build/bazel/* @DataDog/agent-build
/.gitlab/deploy/check_deploy/* @DataDog/agent-delivery
/.gitlab/.post/do_not_merge.yml @DataDog/agent-devx
/.gitlab/deploy*/* @DataDog/agent-delivery
/.gitlab/.pre/deps_fetch/* @DataDog/agent-devx
/.gitlab/test/e2e/* @DataDog/agent-devx
/.gitlab/deploy/e2e_testing_deploy/* @DataDog/agent-devx
/.gitlab/test/e2e_pre_test/* @DataDog/agent-devx
/.gitlab/test/kernel_matrix_testing/* @DataDog/agent-devx @DataDog/ebpf-platform
/.gitlab/build/lint/* @DataDog/agent-devx
/.gitlab/.pre/maintenance_jobs/* @DataDog/agent-devx
/.gitlab/.post/notify/* @DataDog/agent-devx
/.gitlab/build/pkg_metrics/* @DataDog/agent-devx
/.gitlab/.pre/setup/* @DataDog/agent-devx
/.gitlab/deploy/trigger_distribution.yml @DataDog/agent-delivery
/.gitlab/distribute/trigger_release/* @DataDog/agent-devx @DataDog/agent-delivery
/.gitlab/build/binary_build/cws_instrumentation.yml @DataDog/agent-devx @DataDog/agent-security
/.gitlab/build/binary_build/linux.yml @DataDog/agent-devx @DataDog/agent-build
/.gitlab/test/functional_test/static_quality_gate.yml @DataDog/agent-build
/.gitlab/test/functional_test/files_inventory_check.yml @DataDog/agent-build
/.gitlab/test/install_script_testing/install_script_testing.yml @DataDog/agent-build
/.gitlab/test/integration_test/dogstatsd.yml @DataDog/agent-devx @DataDog/agent-metric-pipelines
/.gitlab/test/integration_test/linux.yml @DataDog/agent-devx
/.gitlab/test/integration_test/otel.yml @DataDog/agent-devx @DataDog/opentelemetry-agent
/.gitlab/deploy/internal_image_deploy/internal_image_deploy.yml @DataDog/agent-delivery
/.gitlab/deploy/internal_kubernetes_deploy/internal_kubernetes_deploy.yml @DataDog/agent-delivery
/.gitlab/build/package_deps_build/package_deps_build.yml @DataDog/agent-devx @DataDog/ebpf-platform
/.gitlab/build/source_test/golang_deps_diff.yml @DataDog/agent-runtimes
/.gitlab/build/source_test/* @DataDog/agent-devx
/.gitlab/build/source_test/linux.yml @DataDog/agent-devx
/.gitlab/build/source_test/macos.yml @DataDog/agent-devx @DataDog/windows-products
/.gitlab/build/source_test/notify.yml @DataDog/agent-devx
/.gitlab/build/source_test/slack.yml @DataDog/agent-devx
/.gitlab/build/source_test/tooling_unit_tests.yml @DataDog/agent-devx
/.gitlab/build/source_test/kmt_tasks.yml @DataDog/ebpf-platform
/.gitlab/build/binary_build/cluster_agent_cloudfoundry.yml @DataDog/agent-integrations @DataDog/agent-build
/.gitlab/build/binary_build/cluster_agent.yml @DataDog/container-platform @DataDog/agent-build
/.gitlab/build/binary_build/fakeintake.yml @DataDog/agent-devx
/.gitlab/build/binary_build/host_profiler.yml @DataDog/opentelemetry-agent @DataDog/profiling-full-host @DataDog/agent-build
/.gitlab/build/binary_build/system_probe.yml @DataDog/ebpf-platform @DataDog/agent-build
/.gitlab/build/binary_build/schema_generation.yml @DataDog/agent-configuration
/.gitlab/windows/build/binary_build/windows.yml @DataDog/agent-build @DataDog/windows-products
/.gitlab/build/source_test/codeql_scan.yml @DataDog/sdlc-security
/.gitlab/test/benchmarks/ @DataDog/agent-devx @DataDog/apm-ecosystems-performance @DataDog/agent-apm
/.gitlab/distribute/ @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/deploy/deploy_packages/ @DataDog/agent-delivery
/.gitlab/deploy/deploy_packages/oci.yml @DataDog/agent-delivery @DataDog/fleet
/.gitlab/windows/deploy/deploy_packages/windows.yml @DataDog/agent-delivery @DataDog/windows-products
/.gitlab/windows/distribute/winget/windows.yml @DataDog/agent-delivery @DataDog/windows-products
/.gitlab/deploy/deploy_packages/cluster_agent_cloudfoundry.yml @DataDog/agent-integrations @DataDog/agent-devx
/.gitlab/deploy/deploy_packages/e2e.yml @DataDog/agent-devx @DataDog/fleet
/.gitlab/.pre/deps_build/ @DataDog/ebpf-platform @DataDog/agent-build @DataDog/windows-products
/.gitlab/windows/test/e2e_install_packages/windows.yml @DataDog/windows-products
/.gitlab/.pre/common/ @DataDog/agent-devx
/.gitlab/test/e2e/e2e.yml @DataDog/container-integrations @DataDog/agent-devx @DataDog/fleet
/.gitlab/deploy/container_build/fakeintake.yml @DataDog/agent-devx
/.gitlab/build/binary_build/fakeintake.yml @DataDog/agent-devx
/.gitlab/test/functional_test/oracle.yml @DataDog/agent-devx @DataDog/database-monitoring
/.gitlab/windows/deploy/choco_build/windows.yml @DataDog/agent-build @DataDog/windows-products
/.gitlab/windows/test/integration_test/windows.yml @DataDog/agent-devx @DataDog/windows-products
/.gitlab/test/kernel_matrix_testing @DataDog/ebpf-platform
/.gitlab/test/kernel_matrix_testing/security_agent.yml @DataDog/agent-security
/.gitlab/.pre/common/container_publish_job_templates.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/deploy/container_build/ @DataDog/container-platform @DataDog/agent-build
/.gitlab/windows/deploy/container_build/* @DataDog/agent-build @DataDog/windows-products
/.gitlab/deploy/dev_container_deploy/ @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/deploy/dev_container_deploy/fakeintake.yml @DataDog/agent-devx
/.gitlab/deploy/dev_container_deploy/e2e.yml @DataDog/agent-devx
/.gitlab/windows/deploy/dev_container_deploy/windows.yml @DataDog/agent-delivery @DataDog/windows-products
/.gitlab/deploy/container_scan/container_scan.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/.pre/maintenance_jobs/docker.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/build/source_test/ebpf.yml @DataDog/ebpf-platform @DataDog/agent-devx
/.gitlab/windows/build/source_test/windows.yml @DataDog/agent-devx @DataDog/windows-products
/.gitlab/build/source_test/go_generate_check.yml @DataDog/agent-security
/.gitlab/build/package_build/ @DataDog/agent-build
/.gitlab/windows/build/package_build/windows.yml @DataDog/agent-build @DataDog/windows-products
/.gitlab/build/package_build/installer.yml @DataDog/agent-build @DataDog/fleet
/.gitlab/build/packaging/ @DataDog/agent-build
/.gitlab/deploy/network_device_build/ @DataDog/agent-delivery
/.gitlab/test/benchmarks/benchmarks.yml @DataDog/agent-apm
/.gitlab/test/functional_test/regression_detector.yml @DataDog/single-machine-performance
/chocolatey/ @DataDog/windows-products
/cmd/ @DataDog/agent-configuration
/cmd/trace-agent/ @DataDog/agent-apm
/cmd/agent/subcommands/controlsvc @DataDog/windows-products
/cmd/agent/subcommands/otel @DataDog/opentelemetry-agent
/cmd/agent/subcommands/check @DataDog/agent-runtimes @DataDog/agent-integrations
/cmd/agent/subcommands/dogstatsd* @DataDog/agent-metric-pipelines
/cmd/agent/subcommands/integrations @DataDog/agent-integrations @DataDog/agent-runtimes
/cmd/agent/subcommands/hostname @DataDog/agent-runtimes
/cmd/agent/subcommands/version @DataDog/agent-runtimes
/cmd/agent/subcommands/processchecks @DataDog/container-experiences
/cmd/agent/subcommands/remoteconfig @DataDog/remote-config
/cmd/agent/subcommands/snmp @DataDog/network-device-monitoring-core
/cmd/agent/subcommands/streamlogs @DataDog/agent-log-pipelines
/cmd/agent/subcommands/analyzelogs @DataDog/agent-log-pipelines
/cmd/agent/subcommands/streamep @DataDog/container-integrations
/cmd/agent/subcommands/taggerlist @DataDog/container-platform
/cmd/agent/subcommands/workloadlist @DataDog/container-platform
/cmd/agent/subcommands/run/ @DataDog/agent-runtimes
/cmd/agent/subcommands/run/internal/clcrunnerapi/ @DataDog/container-platform
/cmd/agent/windows @DataDog/windows-products
/cmd/agent/windows_resources @DataDog/windows-products
/cmd/agent/dist/conf.d/ @DataDog/agent-integrations
/cmd/agent/dist/conf.d/container.d/ @DataDog/container-integrations
/cmd/agent/dist/conf.d/containerd.d/ @DataDog/container-integrations
/cmd/agent/dist/conf.d/container_image.d/ @DataDog/container-integrations
/cmd/agent/dist/conf.d/container_lifecycle.d/ @DataDog/container-integrations
/cmd/agent/dist/conf.d/discovery.d/ @DataDog/agent-discovery
/cmd/agent/dist/conf.d/jetson.d/ @DataDog/agent-runtimes
/cmd/agent/dist/conf.d/oracle.d/ @DataDog/database-monitoring
/cmd/agent/dist/conf.d/oracle-dbm.d/ @DataDog/database-monitoring
/cmd/agent/dist/conf.d/network_path.d/ @DataDog/network-path
/cmd/agent/dist/conf.d/orchestrator_ecs.d/ @DataDog/ecs-experiences
/cmd/agent/dist/conf.d/sbom.d/ @DataDog/agent-security @DataDog/container-integrations
/cmd/agent/dist/conf.d/snmp.d/ @DataDog/network-device-monitoring-core
/cmd/agent/dist/conf.d/win32_event_log.d/ @DataDog/windows-products
/cmd/agent/dist/conf.d/windows_certificate.d/ @DataDog/windows-products
/cmd/agent/install*.sh @DataDog/agent-build
/cmd/agent/macos/ @DataDog/windows-products
/cmd/ai_prompt_logger/ @DataDog/windows-products
/cmd/cluster-agent/ @DataDog/container-platform
/cmd/cluster-agent/subcommands/autoscalerlist @DataDog/container-autoscaling @DataDog/container-integrations
/cmd/cluster-agent/subcommands/rotateparidentity @Datadog/action-platform
/cmd/cluster-agent/subcommands/start/agent_task.go @DataDog/container-platform @DataDog/fleet
/cmd/cluster-agent-cloudfoundry/ @DataDog/agent-integrations
/cmd/cluster-agent/api/v1/cloudfoundry_metadata.go @DataDog/agent-integrations
/cmd/cws-instrumentation/ @DataDog/agent-security
/cmd/dogstatsd/ @DataDog/agent-metric-pipelines
/cmd/loader/ @DataDog/agent-runtimes @DataDog/agent-apm
/cmd/otel-agent/ @DataDog/opentelemetry-agent
/cmd/privateactionrunner @DataDog/action-platform
/cmd/process-agent/ @DataDog/container-experiences
/cmd/serverless-init/ @DataDog/serverless-azure-gcp
/cmd/sbomgen/ @DataDog/agent-security
/cmd/system-probe/ @DataDog/ebpf-platform
/cmd/system-probe/modules/usm* @DataDog/universal-service-monitoring
/cmd/system-probe/modules/network_tracer* @DataDog/cloud-network-monitoring
/cmd/system-probe/modules/oom_kill_probe* @DataDog/container-integrations
/cmd/system-probe/modules/process* @DataDog/container-experiences
/cmd/system-probe/modules/eventmonitor* @DataDog/agent-security
/cmd/system-probe/modules/compliance* @DataDog/agent-cspm @DataDog/agent-security
/cmd/system-probe/modules/tcp_queue_tracer* @DataDog/container-integrations
/cmd/system-probe/modules/traceroute* @DataDog/network-path
/cmd/system-probe/modules/ping* @DataDog/network-device-monitoring-core
/cmd/system-probe/modules/language_detection* @DataDog/container-experiences @DataDog/agent-discovery
/cmd/system-probe/modules/dynamic_instrumentation* @DataDog/debugger-go
/cmd/system-probe/modules/noisy_neighbor* @DataDog/container-experiences
/cmd/system-probe/windows/ @DataDog/windows-products
/cmd/system-probe/windows_resources/ @DataDog/windows-products
/cmd/system-probe/main_windows*.go @DataDog/windows-products
/cmd/system-probe/subcommands/run/command_windows* @DataDog/windows-products
/cmd/system-probe/subcommands/runtime/ @DataDog/agent-security
/cmd/system-probe/subcommands/usm/ @DataDog/universal-service-monitoring
/cmd/system-probe/subcommands/ebpf/ @DataDog/ebpf-platform @DataDog/universal-service-monitoring
/cmd/system-probe/subcommands/compliance/ @DataDog/agent-cspm @DataDog/agent-security
/cmd/systray/ @DataDog/windows-products
/cmd/secret-generic-connector/ @DataDog/agent-configuration
/cmd/security-agent/ @DataDog/agent-security
/cmd/security-agent/subcommands/compliance/ @DataDog/agent-cspm @DataDog/agent-security
/cmd/installer/ @DataDog/fleet @DataDog/windows-products
/cmd/host-profiler/ @DataDog/opentelemetry-agent @DataDog/profiling-full-host
/dev/ @DataDog/agent-devx
/devenv/ @DataDog/agent-devx
/Dockerfiles/ @DataDog/agent-build
/Dockerfiles/agent/entrypoint.d.windows/ @DataDog/agent-build @DataDog/windows-products
/Dockerfiles/agent/entrypoint.ps1 @DataDog/agent-build @DataDog/windows-products
/Dockerfiles/agent/windows/ @DataDog/agent-build @DataDog/windows-products
/Dockerfiles/agent-ddot @DataDog/opentelemetry-agent
/Dockerfiles/agent/bouncycastle-fips @DataDog/agent-metric-pipelines
/Dockerfiles/manifests/ @DataDog/container-integrations
/docs/ @DataDog/agent-devx
/docs/dev/agent_api.md @DataDog/agent-runtimes
/docs/dev/checks/ @DataDog/agent-runtimes
/docs/cloud-workload-security/ @DataDog/documentation @DataDog/agent-security
/docs/public/components/ @DataDog/agent-runtimes
/docs/public/hostname/ @DataDog/agent-runtimes
/docs/public/architecture/dogstatsd/ @DataDog/agent-metric-pipelines
/docs/public/guidelines/deprecated-components-documentation/ @DataDog/agent-runtimes
# These files are owned by all teams, but assigning them to @DataDog/agent-community-eng causes a lot of spam
# Assigning them to a group that doesn't exist means nobody will receive notifications for them, but
# that should be fine since rarely we make PRs that only change those files alone.
/go.mod # do not notify anyone
/go.sum # do not notify anyone
/omnibus/ @DataDog/agent-build
/omnibus/package-scripts/agent-rpm/ @DataDog/agent-build @DataDog/fleet
/omnibus/package-scripts/agent-deb/ @DataDog/agent-build @DataDog/fleet
/omnibus/package-scripts/agent-dmg/ @DataDog/agent-build @DataDog/windows-products
/omnibus/package-scripts/installer-deb/ @DataDog/agent-build @DataDog/fleet
/omnibus/package-scripts/installer-rpm/ @DataDog/agent-build @DataDog/fleet
/omnibus/python-scripts/ @DataDog/agent-integrations @DataDog/windows-products
/deps/openscap/ @DataDog/agent-build @DataDog/agent-cspm @DataDog/agent-security
/omnibus/config/software/datadog-agent-integrations-*.rb @DataDog/agent-integrations
/deps/agent_integrations/ @DataDog/agent-build @DataDog/agent-integrations
/omnibus/resources/*/msi/ @DataDog/windows-products
/packages/ @DataDog/agent-build
/packages/debian/ @DataDog/agent-build @DataDog/fleet
/packages/redhat/ @DataDog/agent-build @DataDog/fleet
/packages/macos @DataDog/agent-build @DataDog/windows-products
/packages/windows @DataDog/agent-build @DataDog/windows-products
# AIX
/packaging/aix/ @DataDog/agent-build
# The following is managed by `dda inv lint-components` -- DO NOT EDIT
# BEGIN COMPONENTS
/comp @DataDog/agent-runtimes
/comp/agent @DataDog/agent-runtimes
/comp/aggregator @DataDog/agent-metric-pipelines
/comp/api @DataDog/agent-runtimes
/comp/checks @DataDog/agent-runtimes
/comp/collector @DataDog/agent-runtimes
/comp/core @DataDog/agent-runtimes
/comp/dogstatsd @DataDog/agent-metric-pipelines
/comp/forwarder @DataDog/agent-metric-pipelines
/comp/healthplatform @DataDog/agent-health @DataDog/fleet-remediation
/comp/host-profiler @DataDog/opentelemetry-agent @DataDog/profiling-full-host
/comp/logs @DataDog/agent-log-pipelines
/comp/logs-library @DataDog/agent-log-pipelines
/comp/metadata @DataDog/agent-configuration
/comp/ndmtmp @DataDog/network-device-monitoring-core
/comp/netflow @DataDog/ndm-integrations
/comp/networkpath @DataDog/network-path
/comp/otelcol @DataDog/opentelemetry-agent
/comp/process @DataDog/container-experiences
/comp/remote-config @DataDog/remote-config
/comp/snmptraps @DataDog/network-device-monitoring-core
/comp/systray @DataDog/windows-products
/comp/trace @DataDog/agent-apm
/comp/updater @DataDog/fleet @DataDog/windows-products
/comp/agent/cloudfoundrycontainer @DataDog/agent-integrations
/comp/agent/jmxlogger @DataDog/agent-metric-pipelines
/comp/checks/agentcrashdetect @DataDog/windows-products
/comp/checks/windowseventlog @DataDog/windows-products
/comp/checks/winregistry @DataDog/windows-products
/comp/core/autodiscovery @DataDog/container-platform
/comp/core/config @DataDog/agent-configuration
/comp/core/configfilesdiscovery @DataDog/agent-discovery
/comp/core/configstream @DataDog/agent-configuration
/comp/core/configstreamconsumer @DataDog/agent-configuration
/comp/core/configsync @DataDog/agent-configuration
/comp/core/diagnose @DataDog/agent-configuration
/comp/core/flare @DataDog/agent-configuration
/comp/core/gui @DataDog/agent-configuration
/comp/core/profiler @DataDog/agent-configuration
/comp/core/remoteflags @DataDog/agent-configuration
/comp/core/secrets @DataDog/agent-configuration
/comp/core/settings @DataDog/agent-configuration
/comp/core/status @DataDog/agent-configuration
/comp/core/sysprobeconfig @DataDog/ebpf-platform
/comp/core/tagger @DataDog/container-platform
/comp/core/workloadfilter @DataDog/container-platform
/comp/core/workloadmeta @DataDog/container-platform
/comp/forwarder/connectionsforwarder @DataDog/container-experiences
/comp/forwarder/eventplatform @DataDog/agent-log-pipelines
/comp/forwarder/eventplatformreceiver @DataDog/agent-log-pipelines
/comp/forwarder/orchestrator @DataDog/kubernetes-experiences
/comp/metadata/clusteragent @DataDog/container-platform
/comp/metadata/clusterchecks @DataDog/container-platform
/comp/metadata/haagent @DataDog/network-device-monitoring-core
/comp/metadata/hostgpu @DataDog/ebpf-platform
/comp/metadata/hostsysteminfo @DataDog/windows-products
/comp/metadata/packagesigning @DataDog/agent-delivery
/comp/process/connectionscheck @DataDog/cloud-network-monitoring @DataDog/universal-service-monitoring
/comp/trace/etwtracer @DataDog/windows-products
/comp/trace-telemetry @DataDog/agent-runtimes
/comp/updater/daemonchecker @DataDog/fleet
/comp/updater/ssistatus @DataDog/fleet
/comp/anomalydetection/logssource @DataDog/q-branch
/comp/anomalydetection/observer @DataDog/q-branch
/comp/anomalydetection/recorder @DataDog/q-branch
/comp/anomalydetection/reporter @DataDog/q-branch
/comp/autoscaling/datadogclient @DataDog/container-integrations
/comp/connectivitychecker @DataDog/fleet
/comp/dataobs/queryactions @DataDog/data-observability
/comp/etw @DataDog/windows-products
/comp/filterlist @DataDog/agent-metric-pipelines
/comp/fleetstatus @DataDog/fleet
/comp/haagent @DataDog/network-device-monitoring-core
/comp/languagedetection/client @DataDog/container-platform
/comp/logonduration @DataDog/windows-products
/comp/networkconfigmanagement @DataDog/ndm-integrations
/comp/notableevents @DataDog/windows-products
/comp/offlinereporter @DataDog/agent-metric-pipelines
/comp/privateactionrunner @DataDog/action-platform
/comp/publishermetadatacache @DataDog/windows-products
/comp/rdnsquerier @DataDog/ndm-integrations
/comp/serializer/logscompression @DataDog/agent-log-pipelines
/comp/serializer/metricscompression @DataDog/agent-metric-pipelines
/comp/snmpscan @DataDog/network-device-monitoring-core
/comp/snmpscanmanager @DataDog/network-device-monitoring-core
/comp/softwareinventory @DataDog/windows-products
/comp/syntheticstestscheduler @DataDog/synthetics-executing
/comp/workloadselection @DataDog/injection-platform
# END COMPONENTS
# Per-team ownership of individual event platform pipeline descriptor files.
# Each file holds the passthroughPipelineDesc entries for one owning team so
# that teams can merge pipeline config changes without Logs team review.
/comp/forwarder/eventplatform/impl/pipelines_agentdiscovery.go @DataDog/agent-discovery
/comp/forwarder/eventplatform/impl/pipelines_dbm.go @DataDog/database-monitoring
/comp/forwarder/eventplatform/impl/pipelines_ndm_core.go @DataDog/network-device-monitoring-core
/comp/forwarder/eventplatform/impl/pipelines_ndm_integrations.go @DataDog/ndm-integrations
/comp/forwarder/eventplatform/impl/pipelines_networkpath.go @DataDog/network-path
/comp/forwarder/eventplatform/impl/pipelines_container.go @DataDog/container-integrations
/comp/forwarder/eventplatform/impl/pipelines_sbom.go @DataDog/agent-security
/comp/forwarder/eventplatform/impl/pipelines_synthetics.go @DataDog/synthetics-executing
/comp/forwarder/eventplatform/impl/pipelines_eventmanagement.go @DataDog/windows-products
/comp/forwarder/eventplatform/impl/pipelines_datastreams.go @DataDog/data-streams-monitoring
/comp/forwarder/eventplatform/impl/pipelines_dataobservability.go @DataDog/data-observability
/comp/forwarder/eventplatform/impl/pipelines_softwareinventory.go @DataDog/windows-products
/comp/core/agenttelemetry @DataDog/agent-health @DataDog/fleet-remediation
# ebpf-platform also owns the stat wrappers in telemetry (previously pkg/telemetry/stat_*_wrapper.go)
/comp/core/telemetry/def/stat_gauge_wrapper.go @DataDog/agent-runtimes @DataDog/ebpf-platform
/comp/core/telemetry/def/stat_counter_wrapper.go @DataDog/agent-runtimes @DataDog/ebpf-platform
# trace-agent logging implementation should also notify agent-apm
/comp/core/log/impl-trace @DataDog/agent-apm
# remoteagent implementation should also notify their respective teams
/comp/core/remoteagent/impl-systemprobe @DataDog/agent-runtimes @DataDog/ebpf-platform
/comp/core/remoteagent/impl-trace @DataDog/agent-runtimes @DataDog/agent-apm
/comp/core/remoteagent/impl-securityagent @DataDog/agent-runtimes @DataDog/agent-security
# pkg
/pkg/ @DataDog/agent-runtimes
/pkg/api/ @DataDog/agent-runtimes
/pkg/api/security/cert/cert_getter_dca.go @DataDog/agent-runtimes @DataDog/container-platform
/pkg/aggregator/ @DataDog/agent-metric-pipelines
/pkg/collector/ @DataDog/agent-runtimes
/pkg/commonchecks/ @DataDog/agent-runtimes
/pkg/cli/ @DataDog/agent-configuration
/pkg/cli/subcommands/check @DataDog/agent-runtimes @DataDog/agent-integrations
/pkg/cli/subcommands/version @DataDog/agent-runtimes
/pkg/cli/subcommands/clusterchecks @DataDog/container-platform
/pkg/cli/subcommands/workloadfilter @DataDog/container-platform
/pkg/cli/subcommands/autoscalerlist @DataDog/container-autoscaling @DataDog/container-integrations
/pkg/cli/subcommands/processchecks @DataDog/container-experiences
/pkg/discovery/ @DataDog/agent-discovery
/pkg/errors/ @DataDog/agent-runtimes
/pkg/privileged-logs/ @DataDog/agent-discovery @DataDog/agent-log-pipelines
/pkg/fips @DataDog/agent-runtimes
/pkg/gohai @DataDog/agent-configuration
/pkg/gpu/ @DataDog/ebpf-platform @DataDog/gpu-monitoring-agent
/pkg/hosttags/ @DataDog/agent-runtimes
/pkg/jmxfetch/ @DataDog/agent-metric-pipelines
/pkg/metrics/ @DataDog/agent-metric-pipelines
/pkg/metrics/metricsource.go @DataDog/agent-metric-pipelines @DataDog/agent-integrations
/pkg/serializer/ @DataDog/agent-metric-pipelines
/pkg/serializer/internal/metrics/origin_mapping.go @DataDog/agent-metric-pipelines @DataDog/agent-integrations
/pkg/serverless/ @DataDog/serverless-azure-gcp
/pkg/status/ @DataDog/agent-configuration
/pkg/status/health @DataDog/agent-runtimes
/pkg/status/collector @DataDog/agent-runtimes
/pkg/status/clusteragent @DataDog/container-platform
/pkg/template/ @DataDog/agent-runtimes
/pkg/version/ @DataDog/agent-runtimes
/pkg/obfuscate/ @DataDog/agent-apm
/pkg/trace/ @DataDog/agent-apm
/pkg/trace/api/otlp*.go @DataDog/opentelemetry
/pkg/trace/api/loader/ @DataDog/agent-runtimes
/pkg/trace/api/loader/listeners.go @DataDog/agent-apm
/pkg/trace/traceutil/ @DataDog/agent-apm
/pkg/trace/stats/ @DataDog/agent-apm
/pkg/trace/otel/ @DataDog/opentelemetry
/pkg/trace/telemetry/ @DataDog/apm-trace-storage
/pkg/trace/transform/ @DataDog/opentelemetry
/comp/core/autodiscovery/listeners/ @DataDog/container-platform
/comp/core/autodiscovery/listeners/cloudfoundry*.go @DataDog/agent-integrations
/comp/core/autodiscovery/listeners/snmp*.go @DataDog/network-device-monitoring-core
/comp/core/autodiscovery/providers/ @DataDog/container-platform
/comp/core/autodiscovery/providers/file*.go @DataDog/agent-log-pipelines
/comp/core/autodiscovery/providers/config_reader*.go @DataDog/container-platform @DataDog/agent-log-pipelines
/comp/core/autodiscovery/providers/cloudfoundry*.go @DataDog/agent-integrations
/comp/core/autodiscovery/providers/process_log*.go @DataDog/agent-discovery @DataDog/agent-log-pipelines
/comp/core/autodiscovery/providers/remote_config*.go @DataDog/fleet
/comp/core/autodiscovery/providers/datastreams @DataDog/data-streams-monitoring
/comp/core/gui/impl/systray/ @DataDog/windows-products @DataDog/agent-configuration
/comp/healthplatform/issues/ad-misconfiguration @DataDog/container-platform @DataDog/agent-health @DataDog/fleet-remediation
/comp/healthplatform/issues/gpuenvironment @DataDog/gpu-monitoring-agent @DataDog/ebpf-platform @DataDog/agent-health @DataDog/fleet-remediation
/comp/healthplatform/issues/rofspermissions @DataDog/container-platform @DataDog/agent-health @DataDog/fleet-remediation
/pkg/cloudfoundry @DataDog/agent-integrations
/pkg/clusteragent/ @DataDog/container-platform
/pkg/clusteragent/autoscaling/ @DataDog/container-autoscaling
/pkg/clusteragent/kubeactions/ @DataDog/container-integrations
/pkg/clusteragent/evictor/ @DataDog/container-platform @DataDog/container-integrations
/pkg/clusteragent/metricsstore/ @DataDog/container-autoscaling
/pkg/clusteragent/admission/mutate/autoscaling @DataDog/container-integrations
/pkg/clusteragent/admission/mutate/appsec @DataDog/container-platform @DataDog/asm-go
/pkg/clusteragent/admission/mutate/autoinstrumentation/ @DataDog/container-platform @DataDog/injection-platform
/pkg/clusteragent/admission/mutate/cwsinstrumentation @DataDog/agent-security
/pkg/clusteragent/appsec/ @DataDog/asm-go @DataDog/container-platform
/pkg/clusteragent/orchestrator/ @DataDog/kubernetes-experiences
/pkg/clusteragent/telemetry/ @DataDog/apm-trace-storage
/pkg/collector/ @DataDog/agent-runtimes
/pkg/collector/corechecks/cluster/ @DataDog/container-integrations
/pkg/collector/corechecks/cluster/orchestrator @DataDog/kubernetes-experiences
/pkg/collector/corechecks/cluster/orchestrator/collectors/ecs/ @DataDog/ecs-experiences
/pkg/collector/corechecks/cluster/orchestrator/processors/ecs/ @DataDog/ecs-experiences
/pkg/collector/corechecks/cluster/orchestrator/transformers/ecs/ @DataDog/ecs-experiences
/pkg/collector/corechecks/containers/ @DataDog/container-integrations
/pkg/collector/corechecks/containers/csi_driver/ @DataDog/container-platform
/pkg/collector/corechecks/containerimage/ @DataDog/container-integrations
/pkg/collector/corechecks/containerlifecycle/ @DataDog/container-integrations
/pkg/collector/corechecks/discovery/ @DataDog/agent-discovery
/pkg/collector/corechecks/ebpf/ @DataDog/container-integrations
/pkg/collector/corechecks/ebpf/ebpf* @DataDog/ebpf-platform
/pkg/collector/corechecks/ebpf/noisyneighbor/ @DataDog/container-experiences
/pkg/collector/corechecks/ebpf/probe/ebpfcheck/ @DataDog/ebpf-platform
/pkg/collector/corechecks/ebpf/probe/noisyneighbor/ @DataDog/container-experiences
/pkg/collector/corechecks/ebpf/c/runtime/ebpf* @DataDog/ebpf-platform
/pkg/collector/corechecks/ebpf/c/runtime/noisy-neighbor* @DataDog/container-experiences
/pkg/collector/corechecks/embed/ @DataDog/agent-delivery
/pkg/collector/corechecks/embed/apm/ @DataDog/agent-apm
/pkg/collector/corechecks/embed/process/ @DataDog/container-experiences
/pkg/collector/corechecks/gpu/ @DataDog/ebpf-platform @DataDog/gpu-monitoring-agent
/pkg/collector/corechecks/networkconfigmanagement/ @DataDog/ndm-integrations
/pkg/collector/corechecks/network-devices/ @DataDog/ndm-integrations
/pkg/collector/corechecks/orchestrator/ @DataDog/kubernetes-experiences
/pkg/collector/corechecks/orchestrator/ecs/ @DataDog/ecs-experiences
/pkg/collector/corechecks/net/ @DataDog/agent-runtimes
/pkg/collector/corechecks/net/wlan/ @DataDog/windows-products
/pkg/collector/corechecks/oracle @DataDog/database-monitoring
/pkg/collector/corechecks/sbom/ @DataDog/agent-security @DataDog/container-integrations
/pkg/collector/corechecks/snmp/ @DataDog/network-device-monitoring-core
/pkg/collector/corechecks/system/ @DataDog/agent-runtimes
/pkg/collector/corechecks/system/**/*_windows*.go @DataDog/agent-runtimes @DataDog/windows-products
/pkg/collector/corechecks/system/battery/ @DataDog/windows-products
/pkg/collector/corechecks/system/thermal/ @DataDog/windows-products
/pkg/collector/corechecks/system/wincrashdetect/ @DataDog/windows-products
/pkg/collector/corechecks/system/windowscertificate/ @DataDog/windows-products
/pkg/collector/corechecks/system/winkmem/ @DataDog/windows-products
/pkg/collector/corechecks/system/winproc/ @DataDog/windows-products
/pkg/collector/corechecks/systemd/ @DataDog/agent-integrations
/pkg/collector/corechecks/nvidia/ @DataDog/agent-runtimes
/pkg/config/ @DataDog/agent-configuration
/pkg/config/config_template.yaml @DataDog/agent-configuration @DataDog/documentation
/pkg/config/settings/runtime_setting_profiling_period*.go @DataDog/agent-runtimes
/pkg/config/example/application_monitoring.yaml.example @DataDog/agent-apm
/pkg/config/autodiscovery/ @DataDog/container-integrations @DataDog/container-platform @DataDog/agent-configuration
/pkg/config/env @DataDog/container-integrations @DataDog/container-platform @DataDog/agent-configuration
/pkg/config/setup @DataDog/agent-configuration
/pkg/config/setup/apm_settings.go @DataDog/agent-apm @DataDog/agent-configuration
/pkg/config/setup/privateactionrunner*.go @DataDog/action-platform @DataDog/agent-configuration
/pkg/config/setup/process*.go @DataDog/container-experiences @DataDog/agent-configuration
/pkg/config/setup/system_probe.go @DataDog/ebpf-platform @DataDog/agent-configuration
/pkg/config/setup/system_probe_cws.go @DataDog/agent-security @DataDog/agent-configuration
/pkg/config/setup/system_probe_usm*.go @DataDog/universal-service-monitoring @DataDog/agent-configuration
/pkg/config/setup/security_agent.go @DataDog/agent-security @DataDog/agent-configuration
/pkg/config/remote/ @DataDog/remote-config
/pkg/config/remote/meta/ @DataDog/remote-config
/pkg/configstreambootstrap @DataDog/agent-configuration
/pkg/containerlifecycle/ @DataDog/container-integrations
/pkg/diagnose/ @DataDog/agent-configuration
/pkg/diagnose/connectivity/ @DataDog/agent-configuration
/pkg/diagnose/firewallscanner/ @DataDog/network-device-monitoring-core
/pkg/diagnose/ports/ @DataDog/agent-configuration
/pkg/diagnose/ports/*windows*.go @DataDog/windows-products
/pkg/eventmonitor/ @DataDog/ebpf-platform @DataDog/agent-security
/pkg/dyninst/ @DataDog/debugger-go
/pkg/flare/ @DataDog/agent-configuration
/pkg/flare/*_win.go @DataDog/windows-products @DataDog/agent-configuration
/pkg/flare/*_windows.go @DataDog/windows-products @DataDog/agent-configuration
/pkg/flare/*_windows_test.go @DataDog/windows-products @DataDog/agent-configuration
/pkg/fleet/ @DataDog/fleet @DataDog/windows-products
/pkg/fleet/installer/setup/djm/ @DataDog/fleet @DataDog/data-observability
/pkg/inventory/ @DataDog/windows-products
/pkg/inventory/software/ @DataDog/windows-products
/pkg/inventory/systeminfo/ @DataDog/windows-products
/pkg/opentelemetry-mapping-go @DataDog/opentelemetry-agent
/pkg/pidfile/ @DataDog/agent-runtimes
/pkg/persistentcache/ @DataDog/agent-runtimes
/pkg/procmgr/ @DataDog/agent-runtimes
/pkg/procmgr/rust/src/platform/windows.rs @DataDog/agent-runtimes @DataDog/windows-products
/pkg/procmgr/rust/src/transport/named_pipe.rs @DataDog/agent-runtimes @DataDog/windows-products
/pkg/privateactionrunner/ @DataDog/action-platform
/pkg/privateactionrunner/bundles/remoteaction @DataDog/action-platform @DataDog/dd-agent-mcp
/pkg/privateactionrunner/bundles/remoteaction/networkconfigmanagement @DataDog/action-platform @DataDog/ndm-integrations
/pkg/privateactionrunner/bundles/remoteaction/networks @DataDog/action-platform @Datadog/network-path
/pkg/proto/ @DataDog/agent-runtimes
/pkg/proto/datadog/dogstatsdhttp @DataDog/agent-metric-pipelines
/pkg/proto/datadog/kubemetadata @DataDog/container-platform
/pkg/proto/datadog/languagedetection @DataDog/container-experiences
/pkg/proto/datadog/privateactionrunner @DataDog/action-platform
/pkg/proto/datadog/process @DataDog/container-experiences
/pkg/proto/datadog/trace @DataDog/agent-apm
/pkg/proto/datadog/workloadmeta @DataDog/container-platform
/pkg/remoteconfig/ @DataDog/remote-config
/pkg/remoteflags/ @DataDog/agent-configuration
/pkg/runtime/ @DataDog/agent-runtimes
/pkg/redact/ @DataDog/kubernetes-experiences
/pkg/system-probe/ @DataDog/ebpf-platform
/pkg/system-probe/api/client/client_windows.go @DataDog/windows-products
/pkg/system-probe/api/server/listener_windows.go @DataDog/windows-products
/pkg/system-probe/config/adjust_npm.go @DataDog/ebpf-platform @DataDog/cloud-network-monitoring
/pkg/system-probe/config/adjust_usm.go @DataDog/ebpf-platform @DataDog/universal-service-monitoring
/pkg/system-probe/config/adjust_security.go @DataDog/ebpf-platform @DataDog/agent-security
/pkg/tagset/ @DataDog/agent-runtimes
/pkg/util/ @DataDog/agent-runtimes
/pkg/util/aggregatingqueue @DataDog/container-integrations @DataDog/container-platform
/pkg/util/cloudproviders/cloudfoundry/ @DataDog/agent-integrations
/pkg/util/clusteragent/ @DataDog/container-platform
/pkg/util/confmaputils @DataDog/opentelemetry-agent @DataDog/profiling-full-host
/pkg/util/containerd/ @DataDog/container-integrations
/pkg/util/containers/ @DataDog/container-integrations
/pkg/util/containers/metrics/ecsfargate/ @DataDog/ecs-experiences @DataDog/container-integrations
/pkg/util/containers/metrics/ecsmanagedinstances/ @DataDog/ecs-experiences @DataDog/container-integrations
/pkg/util/crio/ @DataDog/container-integrations
/pkg/util/docker/ @DataDog/container-integrations
/pkg/util/ecs/ @DataDog/ecs-experiences
/pkg/util/fargate/ @DataDog/ecs-experiences
/pkg/util/filesystem/ @DataDog/agent-runtimes
/pkg/util/filesystem/rights_*.go @DataDog/agent-configuration
/pkg/util/funcs/ @DataDog/ebpf-platform
/pkg/util/gpu/ @DataDog/container-platform @DataDog/gpu-monitoring-agent
/pkg/util/installinfo/ @DataDog/agent-configuration
/pkg/util/kernel/ @DataDog/ebpf-platform
/pkg/util/safeelf/ @DataDog/ebpf-platform
/pkg/util/slices/ @DataDog/ebpf-platform
/pkg/util/ktime @DataDog/agent-security
/pkg/util/kubelet/ @DataDog/container-integrations @DataDog/container-platform @DataDog/kubernetes-experiences
/pkg/util/kubernetes/ @DataDog/container-integrations @DataDog/container-platform @DataDog/kubernetes-experiences
/pkg/util/podman/ @DataDog/container-integrations
/pkg/util/port/ @DataDog/agent-runtimes
/pkg/util/port/portlist/*windows*.go @DataDog/windows-products
/pkg/util/prometheus @DataDog/container-integrations
/pkg/util/quantile/ @DataDog/opentelemetry-agent
/pkg/util/tags/ @DataDog/container-platform
/pkg/util/tmplvar/ @DataDog/container-platform
/pkg/util/trivy/ @DataDog/agent-security @DataDog/container-integrations
/pkg/util/uuid/ @DataDog/agent-runtimes
/pkg/util/cgroups/ @DataDog/container-integrations
/pkg/util/retry/ @DataDog/container-platform
/pkg/util/intern/ @DataDog/ebpf-platform
/pkg/util/crashreport/ @DataDog/windows-products
/pkg/util/pdhutil/ @DataDog/windows-products
/pkg/util/winutil/ @DataDog/windows-products
/pkg/util/winutil/iisconfig @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/util/testutil/flake @DataDog/agent-devx
/pkg/util/testutil/patternscanner.go @DataDog/universal-service-monitoring @DataDog/ebpf-platform
/pkg/util/testutil/docker @DataDog/universal-service-monitoring @DataDog/ebpf-platform
/pkg/util/trie @DataDog/container-integrations
/pkg/languagedetection @DataDog/container-experiences @DataDog/agent-discovery
/pkg/logonduration @DataDog/windows-products
/pkg/logs/ @DataDog/agent-log-pipelines
/pkg/logs/launchers/container @DataDog/agent-log-pipelines @DataDog/container-integrations
/pkg/logs/tailers/container @DataDog/agent-log-pipelines @DataDog/container-integrations
/pkg/logs/launchers/windowsevent @DataDog/agent-log-pipelines @DataDog/windows-products
/pkg/logs/tailers/windowsevent @DataDog/agent-log-pipelines @DataDog/windows-products
/pkg/logs/util/windowsevent @DataDog/agent-log-pipelines @DataDog/windows-products
/comp/logs-library/diagnostic @DataDog/agent-log-pipelines
/pkg/logs/message @DataDog/agent-log-pipelines
/pkg/process/ @DataDog/container-experiences
/pkg/process/util/address*.go @DataDog/cloud-network-monitoring
/pkg/process/checks/net*.go @DataDog/cloud-network-monitoring
/pkg/process/metadata/parser/ @DataDog/universal-service-monitoring @DataDog/container-experiences @DataDog/cloud-network-monitoring
/pkg/process/metadata/parser/*windows* @DataDog/universal-service-monitoring @DataDog/container-experiences @DataDog/cloud-network-monitoring @DataDog/windows-products
/pkg/process/monitor/ @DataDog/universal-service-monitoring
/pkg/process/net/ @DataDog/universal-service-monitoring @DataDog/cloud-network-monitoring
/pkg/proto/datadog/remoteconfig/ @DataDog/remote-config
/pkg/proto/pbgo/ # do not notify anyone
/pkg/proto/pbgo/trace @DataDog/agent-apm
/pkg/proto/pbgo/languagedetection @DataDog/agent-apm
/pkg/proto/pbgo/process @DataDog/container-experiences
/pkg/proto/pbgo/core @DataDog/agent-runtimes
/pkg/proto/pbgo/core/kubemetadata.pb.go @DataDog/container-platform
/pkg/proto/pbgo/core/remoteconfig.pb.go @DataDog/remote-config
/pkg/proto/pbgo/core/remoteconfig_gen.go @DataDog/remote-config
/pkg/proto/pbgo/core/remoteconfig_gen_test.go @DataDog/remote-config
/pkg/proto/pbgo/core/workloadfilter.pb.go @DataDog/container-platform
/pkg/proto/pbgo/core/workloadmeta.pb.go @DataDog/container-platform
/pkg/proto/pbgo/mocks/core @DataDog/agent-runtimes
/pkg/proto/pbgo/privateactionrunner @DataDog/action-platform
/pkg/orchestrator/ @DataDog/kubernetes-experiences
/pkg/network/ @DataDog/cloud-network-monitoring
/pkg/network/*usm* @DataDog/universal-service-monitoring
/pkg/network/*_windows*.go @DataDog/windows-products
/pkg/network/*usm*windows*.go @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/network/config/config_test.go @DataDog/cloud-network-monitoring @DataDog/universal-service-monitoring @DataDog/windows-products
/pkg/network/config/usm*.go @DataDog/universal-service-monitoring
/pkg/network/driver_*.go @DataDog/windows-products
/pkg/network/dns/*_windows*.go @DataDog/windows-products
/pkg/network/driver/ @DataDog/windows-products
/pkg/network/ebpf/c/prebuilt/usm* @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/runtime/usm* @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/prebuilt/shared-libraries* @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/runtime/shared-libraries* @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/shared-libraries/ @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/protocols/ @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/protocols/tls @DataDog/cloud-network-monitoring @DataDog/universal-service-monitoring
/pkg/network/encoding/marshal/*usm* @DataDog/universal-service-monitoring
/pkg/network/encoding/marshal/*_windows*.go @DataDog/windows-products
/pkg/network/encoding/marshal/*usm*windows*.go @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/network/go/ @DataDog/universal-service-monitoring
/pkg/network/protocols/ @DataDog/universal-service-monitoring
/pkg/network/protocols/http/driver_*.go @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/network/protocols/http/etw*.go @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/network/protocols/http/*_windows*.go @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/network/tracer/testutil/proxy/ @DataDog/universal-service-monitoring
/pkg/network/tracer/*_windows*.go @DataDog/windows-products
/pkg/network/usm/ @DataDog/universal-service-monitoring
/pkg/network/usm/tests/*_windows*.go @DataDog/windows-products @DataDog/universal-service-monitoring
/pkg/networkconfigmanagement/ @DataDog/ndm-integrations
/pkg/ebpf/ @DataDog/ebpf-platform
/pkg/ebpf/map_cleaner*.go @DataDog/universal-service-monitoring
/pkg/compliance/ @DataDog/agent-cspm @DataDog/agent-security
/pkg/databasemonitoring @DataDog/database-monitoring
/pkg/kubestatemetrics @DataDog/container-integrations
/pkg/security/ @DataDog/agent-security
/pkg/networkdevice/ @DataDog/network-device-monitoring-core
/pkg/snmp/ @DataDog/network-device-monitoring-core
/pkg/ssi/ @DataDog/injection-platform
/pkg/tagger/ @DataDog/container-platform
/pkg/windowsdriver/ @DataDog/windows-products
/comp/core/workloadmeta/collectors/internal/cloudfoundry @DataDog/agent-integrations
/comp/core/workloadmeta/collectors/internal/containerd @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/crio @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/docker @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/ecs @DataDog/ecs-experiences
/comp/core/workloadmeta/collectors/internal/kubeapiserver @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/kubelet @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/kubemetadata @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/nvml @DataDog/ebpf-platform @DataDog/gpu-monitoring-agent
/comp/core/workloadmeta/collectors/internal/podman @DataDog/container-platform @DataDog/container-integrations
/comp/core/workloadmeta/collectors/internal/process @DataDog/container-experiences @DataDog/container-platform
/comp/core/tagger/collectors @DataDog/container-platform @DataDog/container-integrations
/pkg/sbom/ @DataDog/agent-security @DataDog/container-integrations
/pkg/networkpath/ @DataDog/network-path
/pkg/networkpath/traceroute/ @DataDog/windows-products @DataDog/network-path
/pkg/collector/corechecks/networkpath/ @DataDog/network-path
# release notes accompany code changes, so code owners will review anyway
/releasenotes/ # do not notify anyone
/releasenotes-dca/ # do not notify anyone
/rtloader/ @DataDog/agent-runtimes
/tasks/ @DataDog/agent-devx
/tasks/macos.py @DataDog/windows-products
/tasks/msi.py @DataDog/windows-products
/tasks/agent.py @DataDog/agent-runtimes
/tasks/build_tags.py @DataDog/agent-build
/tasks/build_tags.bzl @DataDog/agent-build
/tasks/anomalydetection.py @DataDog/q-branch
/tasks/loader.py @DataDog/agent-runtimes
/tasks/go_deps.py @DataDog/agent-runtimes
/tasks/dogstatsd.py @DataDog/agent-metric-pipelines
/tasks/update_go.py @DataDog/agent-runtimes
/tasks/python_version.py @DataDog/agent-integrations
/tasks/unit_tests/update_go_tests.py @DataDog/agent-runtimes
/tasks/unit_tests/python_version_tests.py @DataDog/agent-integrations
/tasks/unit_tests/kmt_tests.py @DataDog/ebpf-platform
/tasks/unit_tests/macos_tests.py @DataDog/windows-products
/tasks/unit_tests/winbuild_tests.py @DataDog/windows-products
/tasks/pkg_template.py @DataDog/agent-runtimes
/tasks/cluster_agent_cloudfoundry.py @DataDog/agent-integrations
/tasks/devcontainer.py @DataDog/agent-devx @DataDog/container-platform
/tasks/skaffold.py @DataDog/agent-devx @DataDog/container-platform
/tasks/new_e2e_tests.py @DataDog/agent-devx
/tasks/process_agent.py @DataDog/container-experiences
/tasks/privateactionrunner.py @DataDog/action-platform
/tasks/system_probe.py @DataDog/ebpf-platform
/tasks/ebpf.py @DataDog/ebpf-platform
/tasks/kmt.py @DataDog/ebpf-platform
/tasks/gpu.py @DataDog/ebpf-platform @DataDog/gpu-monitoring-agent
/tasks/kernel_matrix_testing/ @DataDog/ebpf-platform
/tasks/ebpf_verifier/ @DataDog/ebpf-platform
/tasks/trace_agent.py @DataDog/agent-apm
/tasks/protobuf.py @DataDog/agent-build
/tasks/quality_gates.py @DataDog/agent-build
/tasks/static_quality_gates/ @DataDog/agent-build
/tasks/files_inventory.py @DataDog/agent-build
/tasks/rtloader.py @DataDog/agent-runtimes
/tasks/secret_generic_connector.py @DataDog/agent-configuration
/tasks/security_agent.py @DataDog/agent-security
/tasks/sbomgen.py @DataDog/agent-security
/tasks/libs/anomalydetection/ @DataDog/q-branch
/tasks/libs/build/ @DataDog/agent-build
/tasks/libs/cws/ @DataDog/agent-security
/tasks/libs/gpu/ @DataDog/ebpf-platform @DataDog/gpu-monitoring-agent
/tasks/systray.py @DataDog/windows-products
/tasks/winbuildscripts/ @DataDog/windows-products
/tasks/winbuild.py @DataDog/windows-products
/tasks/windows_resources.py @DataDog/windows-products
/tasks/virustotal.py @DataDog/windows-products
/tasks/collector.py @DataDog/opentelemetry-agent
/tasks/components.py @DataDog/agent-runtimes
/tasks/components_templates @DataDog/agent-runtimes
/tasks/libs/ciproviders/ @DataDog/agent-devx
/tasks/libs/common/omnibus.py @DataDog/agent-build
/tasks/omnibus.py @DataDog/agent-build
/tasks/release.py @DataDog/agent-delivery
/tasks/release_metrics/ @DataDog/agent-delivery
/tasks/libs/releasing/ @DataDog/agent-delivery
/tasks/schema/ @DataDog/agent-configuration
/tasks/unit_tests/components_tests.py @DataDog/agent-runtimes
/tasks/unit_tests/build_tags_tests.py @DataDog/agent-build
/tasks/unit_tests/libs/build/ @DataDog/agent-build
/tasks/unit_tests/omnibus_tests.py @DataDog/agent-build
/tasks/unit_tests/testdata/components_src/ @DataDog/agent-runtimes
/tasks/unit_tests/testdata/collector/ @DataDog/opentelemetry-agent
/tasks/unit_tests/experimental_gates_tests.py @DataDog/agent-build
/tasks/unit_tests/static_quality_gates/ @DataDog/agent-build
/tasks/installer.py @DataDog/fleet
/tasks/host_profiler.py @DataDog/opentelemetry-agent @DataDog/profiling-full-host
/test/ @DataDog/agent-devx
/test/benchmarks/ @DataDog/agent-metric-pipelines
/test/benchmarks/kubernetes_state/ @DataDog/container-integrations
/test/integration/ @DataDog/serverless-azure-gcp
/test/integration/docker/ @DataDog/opentelemetry-agent
/test/e2e-framework/AGENTS.md @DataDog/agent-devx
/test/e2e-framework/CLAUDE.md @DataDog/agent-devx
/test/e2e-framework/testing/testcommon/check @DataDog/agent-runtimes
/test/e2e-framework/testing/utils/e2e/client/ecs/ @DataDog/ecs-experiences
/test/e2e-framework/testing/provisioners/aws/ecs/ @DataDog/ecs-experiences
/test/e2e-framework/testing/environments/ecs.go @DataDog/ecs-experiences
/test/e2e-framework/scenarios/aws/ecs/ @DataDog/ecs-experiences
/test/e2e-framework/resources/aws/ecs/ @DataDog/ecs-experiences
/test/e2e-framework/components/ecs/ @DataDog/ecs-experiences
/test/e2e-framework/components/datadog/agent/ecs.go @DataDog/ecs-experiences
/test/e2e-framework/components/datadog/agent/ecsFargate.go @DataDog/ecs-experiences
/test/e2e-framework/components/datadog/ecsagentparams/ @DataDog/ecs-experiences
/test/e2e-framework/components/datadog/otel-standalone/ @DataDog/opentelemetry-agent
/test/e2e-framework/components/windows/ @DataDog/windows-products
/test/fakeintake/ @DataDog/agent-devx
/test/fakeintake/aggregator/ndmAggregator.go @DataDog/network-device-monitoring-core
/test/fakeintake/aggregator/ndmAggregator_test.go @DataDog/network-device-monitoring-core
/test/fakeintake/aggregator/ndmflowAggregator.go @DataDog/ndm-integrations
/test/fakeintake/aggregator/ndmflowAggregator_test.go @DataDog/ndm-integrations
/test/fakeintake/aggregator/agenthealthAggregator.go @DataDog/agent-health @DataDog/fleet-remediation
/test/fakeintake/aggregator/agenthealthAggregator_test.go @DataDog/agent-health @DataDog/fleet-remediation
/test/fakeintake/client/fixtures/api_v2_agenthealth_response @DataDog/agent-health @DataDog/fleet-remediation
/test/new-e2e/ @DataDog/agent-devx
/test/new-e2e/test-infra-definition @DataDog/agent-devx
/test/new-e2e/system-probe @DataDog/ebpf-platform
/test/new-e2e/system-probe/config/vmconfig-security-agent.json @DataDog/ebpf-platform @DataDog/agent-security
/test/new-e2e/scenarios/system-probe @DataDog/ebpf-platform
/test/new-e2e/tests/anomalydetection @DataDog/q-branch
/test/new-e2e/tests/agent-platform @DataDog/agent-devx
/test/new-e2e/tests/agent-platform/common/agent_integration.go @DataDog/agent-integrations
/test/new-e2e/tests/agent-platform/tests/macos* @DataDog/windows-products
/test/new-e2e/tests/agent-runtimes @DataDog/agent-runtimes
/test/new-e2e/tests/agent-configuration @DataDog/agent-configuration
/test/new-e2e/tests/agent-health @DataDog/agent-health @DataDog/fleet-remediation
/test/new-e2e/tests/agent-metric-pipelines @DataDog/agent-metric-pipelines
/test/new-e2e/tests/agent-subcommands @DataDog/agent-configuration
/test/new-e2e/tests/agent-subcommands/config* @DataDog/agent-configuration
/test/new-e2e/tests/agent-subcommands/check* @DataDog/agent-runtimes
/test/new-e2e/tests/agent-subcommands/health* @DataDog/agent-runtimes
/test/new-e2e/tests/agent-subcommands/hostname* @DataDog/agent-runtimes
/test/new-e2e/tests/agent-subcommands/configcheck* @DataDog/agent-runtimes @DataDog/agent-integrations
/test/new-e2e/tests/agent-subcommands/run* @DataDog/agent-runtimes
/test/new-e2e/tests/agent-subcommands/flare* @DataDog/agent-configuration
/test/new-e2e/tests/agent-subcommands/status* @DataDog/agent-configuration
/test/new-e2e/tests/autoscaling @DataDog/container-autoscaling
/test/new-e2e/tests/containers @DataDog/container-integrations @DataDog/container-platform
/test/new-e2e/tests/containers/cluster_agent_sgc_binary_test.go @DataDog/agent-configuration
/test/new-e2e/tests/containers/ecs_test.go @DataDog/ecs-experiences
/test/new-e2e/tests/cspm @DataDog/agent-cspm @DataDog/agent-security
/test/new-e2e/tests/discovery @DataDog/agent-discovery
/test/new-e2e/tests/ddot @DataDog/agent-runtimes
/test/new-e2e/tests/fips-compliance @DataDog/agent-runtimes
/test/new-e2e/tests/ha-agent @DataDog/network-device-monitoring-core
/test/new-e2e/tests/language-detection @DataDog/container-experiences
/test/new-e2e/tests/ndm @DataDog/network-device-monitoring-core
/test/new-e2e/tests/ndm/netflow @DataDog/ndm-integrations
/test/new-e2e/tests/netpath @DataDog/windows-products @DataDog/network-path
/test/new-e2e/tests/npm @DataDog/cloud-network-monitoring
/test/new-e2e/tests/npm/ec2_1host_wkit_test.go @DataDog/cloud-network-monitoring @DataDog/windows-products
/test/new-e2e/tests/npm/ecs_1host_test.go @DataDog/ecs-experiences
/test/new-e2e/tests/orchestrator @DataDog/kubernetes-experiences
/test/new-e2e/tests/orchestrator/ecs_test.go @DataDog/ecs-experiences
/test/new-e2e/tests/otel @DataDog/opentelemetry-agent
/test/new-e2e/tests/privateactionrunner @DataDog/action-platform
/test/new-e2e/tests/process @DataDog/container-experiences
/test/new-e2e/tests/process/ecs_test.go @DataDog/ecs-experiences
/test/new-e2e/tests/process/fargate_test.go @DataDog/ecs-experiences
/test/new-e2e/tests/sysprobe-functional @DataDog/windows-products
/test/new-e2e/tests/security-agent-functional @DataDog/windows-products @DataDog/agent-security
/test/new-e2e/tests/cws @DataDog/agent-security
/test/new-e2e/tests/cws/fargate_test.go @DataDog/agent-security @DataDog/ecs-experiences
/test/new-e2e/tests/agent-log-pipelines @DataDog/agent-log-pipelines
/test/new-e2e/tests/windows @DataDog/windows-products @DataDog/windows-products
/test/new-e2e/tests/apm @DataDog/agent-apm
/test/new-e2e/tests/remote-config @DataDog/remote-config
/test/new-e2e/tests/ssi @DataDog/injection-platform
/test/new-e2e/tests/ssi-gradual-rollout @DataDog/apm-release-platform
/test/new-e2e/tests/fleet @DataDog/fleet @DataDog/windows-products
/test/new-e2e/tests/installer @DataDog/fleet @DataDog/windows-products
/test/new-e2e/tests/installer/script @DataDog/fleet @DataDog/data-observability
/test/new-e2e/tests/sbom @DataDog/agent-security
# windows-products primary owner for windows tests so we get failure notifications
/test/new-e2e/tests/installer/windows @DataDog/windows-products @DataDog/fleet
/test/new-e2e/tests/gpu @DataDog/ebpf-platform @DataDog/gpu-monitoring-agent
/test/new-e2e/tests/usm @DataDog/universal-service-monitoring
/test/new-e2e/examples/ecs_test.go @DataDog/ecs-experiences
/test/otel/ @DataDog/opentelemetry-agent
/test/static/ @DataDog/agent-build
# Also change the run-time check for approver at: tasks/static_quality_gates/decisions.py:EXCEPTION_APPROVERS
/test/static/static_quality_gates.yml @DataDog/agent-build @DataDog/container-platform @cmourot @aiuto @quentinus95
/test/benchmarks/apm_scripts/ @DataDog/agent-apm
/test/regression/ @DataDog/single-machine-performance
/test/regression/ebpf @DataDog/single-machine-performance @DataDog/ebpf-platform
/test/regression/cases/quality_gate_security_* @DataDog/single-machine-performance @DataDog/agent-security
/tools/ @DataDog/agent-devx
/tools/host-profiler/ @DataDog/profiling-full-host
/tools/bazel* @DataDog/agent-build
/tools/ci @DataDog/agent-devx
/tools/ci/*bazel* @DataDog/agent-build
/tools/ebpf/ @DataDog/ebpf-platform
/tools/gdb/ @DataDog/agent-runtimes
/tools/go-update/ @DataDog/agent-runtimes
/tools/NamedPipeCmd/ @DataDog/windows-products
/tools/retry_file_dump/ @DataDog/agent-metric-pipelines
/tools/windows/ @DataDog/windows-products
/tools/windows/DatadogAgentInstaller/WixSetup/localization-en-us.wxl @DataDog/windows-products @DataDog/documentation
/tools/agent_QA/ @DataDog/agent-devx
/tools/build-ddot-byoc/ @DataDog/opentelemetry-agent
/internal/remote-agent @DataDog/agent-runtimes
/internal/tools/ @DataDog/agent-devx
/internal/third_party/client-go @DataDog/container-platform
/internal/third_party/kubernetes @DataDog/container-integrations
/internal/third_party/golang/ @DataDog/container-integrations
/q_branch/ @DataDog/q-branch
/internal/qbranch/ @DataDog/q-branch
/comp/anomalydetection/ @DataDog/q-branch # Useful for AGENTS.md files etc. at the root of all AD components