-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
CODEOWNERS
Validating CODEOWNERS rules...
632 lines (579 loc) · 42.8 KB
/
CODEOWNERS
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
# 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-infra
# 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-shared-components @DataDog/agent-delivery
# Go linters and pre-commit config
/.golangci.yml @DataDog/agent-devx-loops
/.custom-gcl.yml @DataDog/agent-devx-loops
/.pre-commit-config.yaml @DataDog/agent-devx-loops
/.vscode/ @DataDog/agent-devx-loops
/CHANGELOG.rst @DataDog/agent-delivery
/CHANGELOG-DCA.rst @DataDog/container-integrations @DataDog/container-platform
/CHANGELOG-INSTALLSCRIPT.rst @DataDog/agent-delivery
/*.md @DataDog/agent-devx-infra @DataDog/documentation
/NOTICE @DataDog/agent-delivery @DataDog/documentation
/LICENSE* # do not notify anyone
# Todo: is this file still needed?
/Makefile.trace @DataDog/agent-delivery
/mkdocs.yml @DataDog/agent-devx-infra
/release.json @DataDog/agent-delivery @DataDog/agent-metrics-logs @DataDog/windows-kernel-integrations @DataDog/agent-release-management @DataDog/agent-security
/requirements.txt @DataDog/agent-devx-infra
/pyproject.toml @DataDog/agent-devx-infra @DataDog/agent-devx-loops
/repository.datadog.yml @DataDog/agent-devx-infra
/generate_tools.go @DataDog/agent-devx-infra
/service.datadog.yaml @DataDog/agent-delivery
/static-analysis.datadog.yaml @DataDog/software-integrity-and-trust @DataDog/agent-devx-infra
/.circleci/ @DataDog/agent-devx-infra
/.github/CODEOWNERS # do not notify anyone
/.github/*_TEMPLATE.md @DataDog/agent-all
/.github/dependabot.yaml @DataDog/agent-devx-infra
/.github/workflows/serverless-benchmarks.yml @DataDog/serverless
/.github/workflows/serverless-binary-size.yml @DataDog/serverless
/.github/workflows/serverless-integration.yml @DataDog/serverless
/.github/workflows/serverless-vuln-scan.yml @DataDog/serverless
/.github/workflows/windows-*.yml @DataDog/windows-agent
/.github/workflows/cws-btfhub-sync.yml @DataDog/agent-security
/.github/workflows/gohai.yml @DataDog/agent-shared-components
/.github/workflows/go-update-commenter.yml @DataDog/agent-shared-components
/.github/workflows/buildimages-update.yml @DataDog/agent-delivery @DataDog/agent-shared-components
/.run @DataDog/agent-devx-loops
/.run/docker/ @DataDog/container-integrations @DataDog/container-platform
# Gitlab files
# Files containing job contents are owned by teams in charge of the jobs + agent-devx-infra or agent-delivery
# Files that only describe structure (eg. includes, rules) are owned by agent-devx-infra
/.gitlab/ @DataDog/agent-devx-infra
/.gitlab/binary_build/cluster_agent_cloudfoundry.yml @DataDog/platform-integrations @DataDog/agent-delivery
/.gitlab/binary_build/cluster_agent.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/binary_build/fakeintake.yml @DataDog/agent-devx-loops
/.gitlab/binary_build/otel_agent.yml @DataDog/opentelemetry @DataDog/agent-delivery
/.gitlab/binary_build/serverless.yml @DataDog/serverless @DataDog/agent-delivery
/.gitlab/binary_build/system_probe.yml @DataDog/ebpf-platform @DataDog/agent-delivery
/.gitlab/binary_build/windows.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/benchmarks/ @DataDog/agent-devx-infra @DataDog/apm-reliability-and-performance @DataDog/agent-apm
/.gitlab/deploy_containers/ @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/deploy_dca/ @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/deploy_packages/ @DataDog/agent-delivery
/.gitlab/deploy_packages/windows.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/deploy_packages/winget.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/deploy_packages/cluster_agent_cloudfoundry.yml @DataDog/platform-integrations @DataDog/agent-devx-infra
/.gitlab/deploy_packages/e2e.yml @DataDog/agent-devx-loops @DataDog/agent-e2e-testing @DataDog/fleet
/.gitlab/deps_build/ @DataDog/ebpf-platform @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/windows_python_build.yml @DataDog/windows-agent
/.gitlab/kitchen_* @DataDog/agent-delivery
/.gitlab/kitchen_testing/windows.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/kitchen_testing/new-e2e_testing/windows.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/common/ @DataDog/agent-devx-infra
/.gitlab/common/test_infra_version.yml @DataDog/agent-devx-loops @DataDog/agent-devx-infra
/.gitlab/e2e/e2e.yml @DataDog/container-integrations @DataDog/agent-devx-loops
/.gitlab/container_build/fakeintake.yml @DataDog/agent-e2e-testing @DataDog/agent-devx-loops
/.gitlab/binary_build/fakeintake.yml @DataDog/agent-e2e-testing @DataDog/agent-devx-loops
/.gitlab/functional_test/security_agent.yml @DataDog/agent-security @DataDog/agent-devx-infra
/.gitlab/functional_test/serverless.yml @DataDog/serverless @DataDog/agent-devx-infra
/.gitlab/functional_test_cleanup.yml @DataDog/agent-security @DataDog/windows-kernel-integrations @DataDog/agent-devx-infra
/.gitlab/functional_test/system_probe_windows.yml @DataDog/agent-devx-infra @DataDog/windows-kernel-integrations
/.gitlab/functional_test/common.yml @DataDog/agent-devx-infra @DataDog/windows-kernel-integrations
/.gitlab/choco_build/choco_build.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/choco_deploy/choco_deploy.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/integration_test/windows.yml @DataDog/agent-devx-infra @DataDog/windows-agent
/.gitlab/kernel_matrix_testing @DataDog/ebpf-platform
/.gitlab/kernel_matrix_testing/security_agent.yml @DataDog/agent-security
/.gitlab/common/container_publish_job_templates.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/container_build/ @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/container_build/include.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/container_build/docker_windows_agent6.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/container_build/docker_windows_agent7.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/dev_container_deploy/ @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/dev_container_deploy/fakeintake.yml @DataDog/agent-devx-loops
/.gitlab/dev_container_deploy/e2e.yml @DataDog/agent-devx-loops @DataDog/agent-e2e-testing
/.gitlab/dev_container_deploy/docker_windows.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/container_scan/container_scan.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/internal_image_deploy.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/maintenance_jobs/docker.yml @DataDog/container-integrations @DataDog/agent-delivery
/.gitlab/source_test/ebpf.yml @DataDog/ebpf-platform @DataDog/agent-devx-infra
/.gitlab/source_test/windows.yml @DataDog/agent-devx-infra @DataDog/windows-agent
/.gitlab/source_test/go_generate_check.yml @DataDog/agent-security
/.gitlab/package_build/ @DataDog/agent-delivery
/.gitlab/package_build/windows.yml @DataDog/agent-delivery @DataDog/windows-agent
/.gitlab/packaging/ @DataDog/agent-delivery
/.gitlab/benchmarks/benchmarks.yml @DataDog/agent-apm
/.gitlab/functional_test/regression_detector.yml @DataDog/single-machine-performance
/.gitlab/software_composition_analysis/ @DataDog/software-integrity-and-trust
/.gitlab/source_test_stats/windows.yml @DataDog/agent-platform @DataDog/windows-agent
/chocolatey/ @DataDog/windows-agent
/cmd/ @DataDog/agent-shared-components
/cmd/trace-agent/ @DataDog/agent-apm
/cmd/agent/subcommands/controlsvc @DataDog/windows-agent
/cmd/agent/subcommands/dogstatsd* @DataDog/agent-metrics-logs
/cmd/agent/subcommands/integrations @DataDog/agent-integrations @DataDog/agent-shared-components
/cmd/agent/subcommands/remoteconfig @Datadog/remote-config
/cmd/agent/subcommands/snmp @DataDog/network-device-monitoring
/cmd/agent/subcommands/streamlogs @DataDog/agent-metrics-logs
/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/internal/clcrunnerapi/ @DataDog/container-platform
/cmd/agent/windows @DataDog/windows-agent
/cmd/agent/windows_resources @DataDog/windows-agent
/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/jetson.d/ @DataDog/agent-devx-infra
/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/Networks @DataDog/network-device-monitoring
/cmd/agent/dist/conf.d/sbom.d/ @DataDog/container-integrations
/cmd/agent/dist/conf.d/snmp.d/ @DataDog/network-device-monitoring
/cmd/agent/dist/conf.d/win32_event_log.d/ @DataDog/windows-agent
/cmd/agent/install*.sh @DataDog/agent-delivery
/cmd/cluster-agent/ @DataDog/container-platform
/cmd/cluster-agent/commands/ @DataDog/container-platform
/cmd/cluster-agent-cloudfoundry/ @DataDog/platform-integrations
/cmd/cluster-agent/api/v1/cloudfoundry_metadata.go @DataDog/platform-integrations
/cmd/cws-instrumentation/ @DataDog/agent-security
/cmd/dogstatsd/ @DataDog/agent-metrics-logs
/cmd/otel-agent/ @DataDog/opentelemetry
/cmd/process-agent/ @DataDog/processes
/cmd/serverless/ @DataDog/serverless
/cmd/serverless/dependencies*.txt @DataDog/serverless @DataDog/agent-shared-components
/cmd/serverless-init/ @DataDog/serverless
/cmd/system-probe/ @DataDog/ebpf-platform
/cmd/system-probe/config/adjust_npm.go @DataDog/ebpf-platform @DataDog/Networks
/cmd/system-probe/config/adjust_usm.go @DataDog/ebpf-platform @DataDog/universal-service-monitoring
/cmd/system-probe/config/adjust_security.go @DataDog/ebpf-platform @DataDog/agent-security
/cmd/system-probe/modules/network_tracer* @DataDog/Networks
/cmd/system-probe/modules/oom_kill_probe* @DataDog/container-integrations
/cmd/system-probe/modules/process* @DataDog/processes
/cmd/system-probe/modules/eventmonitor* @DataDog/agent-security
/cmd/system-probe/modules/tcp_queue_tracer* @DataDog/container-integrations
/cmd/system-probe/modules/traceroute* @DataDog/network-device-monitoring @Datadog/Networks
/cmd/system-probe/modules/ping* @DataDog/network-device-monitoring
/cmd/system-probe/modules/service_discover* @DataDog/apm-onboarding @DataDog/universal-service-monitoring
/cmd/system-probe/runtime/ @DataDog/agent-security
/cmd/system-probe/windows/ @DataDog/windows-kernel-integrations
/cmd/system-probe/windows_resources/ @DataDog/windows-kernel-integrations
/cmd/system-probe/main_windows*.go @DataDog/windows-kernel-integrations
/cmd/systray/ @DataDog/windows-agent
/cmd/security-agent/ @DataDog/agent-security
/cmd/updater/ @DataDog/fleet @DataDog/windows-agent
/cmd/installer/ @DataDog/fleet @DataDog/windows-agent
/dev/ @DataDog/agent-devx-loops
/devenv/ @DataDog/agent-devx-loops
/Dockerfiles/ @DataDog/container-integrations
/Dockerfiles/agent/entrypoint.d.windows/ @DataDog/container-integrations @DataDog/windows-agent
/Dockerfiles/agent/entrypoint.ps1 @DataDog/container-integrations @DataDog/windows-agent
/Dockerfiles/agent/windows/ @DataDog/container-integrations @DataDog/windows-agent
/Dockerfiles/agent-ot/Dockerfile.byoc @DataDog/opentelemetry
/docs/ @DataDog/documentation @DataDog/agent-devx-loops
/docs/dev/checks/ @DataDog/documentation @DataDog/agent-metrics-logs
/docs/cloud-workload-security/ @DataDog/documentation @DataDog/agent-security
/docs/public/components/ @DataDog/documentation @DataDog/agent-shared-components
/docs/public/architecture/dogstatsd/ @DataDog/documentation @DataDog/agent-metrics-logs
/docs/public/guidelines/deprecated-components-documentation/ @DataDog/documentation @DataDog/agent-shared-components
/google-marketplace/ @DataDog/container-ecosystems
# These files are owned by all teams, but assigning them to @DataDog/agent-all 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
/Makefile.trace @DataDog/agent-apm
/omnibus/ @DataDog/agent-delivery
/omnibus/config/patches/openscap/ @DataDog/agent-cspm
/omnibus/config/software/datadog-agent-integrations-*.rb @DataDog/agent-integrations
/omnibus/config/software/datadog-security-agent*.rb @Datadog/agent-security @DataDog/agent-delivery
/omnibus/config/software/openscap.rb @DataDog/agent-cspm
/omnibus/config/software/sds.rb @DataDog/agent-processing-and-routing
/omnibus/config/software/snmp-traps.rb @DataDog/network-device-monitoring
/omnibus/resources/*/msi/ @DataDog/windows-agent
# The following is managed by `inv lint-components` -- DO NOT EDIT
# BEGIN COMPONENTS
/comp @DataDog/agent-shared-components
/comp/agent @DataDog/agent-shared-components
/comp/aggregator @DataDog/agent-metrics-logs
/comp/api @DataDog/agent-shared-components
/comp/checks @DataDog/agent-metrics-logs
/comp/collector @DataDog/agent-metrics-logs
/comp/core @DataDog/agent-shared-components
/comp/dogstatsd @DataDog/agent-metrics-logs
/comp/forwarder @DataDog/agent-processing-and-routing
/comp/logs @DataDog/agent-metrics-logs
/comp/metadata @DataDog/agent-shared-components
/comp/ndmtmp @DataDog/network-device-monitoring
/comp/netflow @DataDog/network-device-monitoring
/comp/networkpath @DataDog/Networks @DataDog/network-device-monitoring
/comp/otelcol @DataDog/opentelemetry
/comp/process @DataDog/processes
/comp/remote-config @DataDog/remote-config
/comp/snmptraps @DataDog/network-device-monitoring
/comp/systray @DataDog/windows-agent
/comp/trace @DataDog/agent-apm
/comp/updater @DataDog/fleet @DataDog/windows-agent
/comp/agent/cloudfoundrycontainer @DataDog/platform-integrations
/comp/agent/jmxlogger @DataDog/agent-metrics-logs
/comp/aggregator/diagnosesendermanager @DataDog/agent-shared-components
/comp/checks/agentcrashdetect @DataDog/windows-kernel-integrations
/comp/checks/windowseventlog @DataDog/windows-agent
/comp/checks/winregistry @DataDog/windows-agent
/comp/core/agenttelemetry @DataDog/agent-metrics-logs
/comp/core/autodiscovery @DataDog/container-platform
/comp/core/sysprobeconfig @DataDog/ebpf-platform
/comp/core/tagger @DataDog/container-platform
/comp/core/workloadmeta @DataDog/container-platform
/comp/metadata/packagesigning @DataDog/agent-delivery
/comp/trace/etwtracer @DataDog/windows-agent
/comp/autoscaling/datadogclient @DataDog/container-integrations
/comp/etw @DataDog/windows-agent
/comp/languagedetection/client @DataDog/container-platform
/comp/rdnsquerier @DataDog/network-device-monitoring
/comp/serializer/compression @DataDog/agent-metrics-logs
# END COMPONENTS
# pkg
/pkg/ @DataDog/agent-shared-components
/pkg/api/ @DataDog/agent-shared-components
/pkg/aggregator/ @DataDog/agent-metrics-logs
/pkg/collector/ @DataDog/agent-metrics-logs
/pkg/commonchecks/ @DataDog/agent-metrics-logs
/pkg/cli/ @DataDog/agent-shared-components
/pkg/cli/subcommands/clusterchecks @DataDog/container-platform
/pkg/dogstatsd/ @DataDog/agent-metrics-logs
/pkg/errors/ @DataDog/agent-shared-components
/pkg/forwarder/ @DataDog/agent-processing-and-routing
/pkg/gohai @DataDog/agent-shared-components
/pkg/jmxfetch/ @DataDog/agent-metrics-logs
/pkg/metrics/ @DataDog/agent-metrics-logs
/pkg/metrics/metricsource.go @DataDog/agent-metrics-logs @DataDog/agent-integrations
/pkg/serializer/ @DataDog/agent-processing-and-routing
/pkg/serializer/internal/metrics/origin_mapping.go @DataDog/agent-processing-and-routing @DataDog/agent-integrations
/pkg/serverless/ @DataDog/serverless
/pkg/serverless/appsec/ @DataDog/asm-go
/pkg/status/ @DataDog/agent-shared-components
/pkg/status/templates/trace-agent.tmpl @DataDog/agent-apm
/pkg/status/templates/process-agent.tmpl @DataDog/processes
/pkg/telemetry/ @DataDog/agent-shared-components
/pkg/telemetry/stat_gauge_wrapper.go @DataDog/ebpf-platform
/pkg/telemetry/stat_counter_wrapper.go @DataDog/ebpf-platform
/pkg/version/ @DataDog/agent-shared-components
/pkg/obfuscate/ @DataDog/agent-apm
/pkg/trace/ @DataDog/agent-apm
/pkg/trace/api/otlp*.go @DataDog/opentelemetry
/pkg/trace/traceutil/otel*.go @DataDog/opentelemetry
/pkg/trace/stats/ @DataDog/agent-apm @DataDog/opentelemetry
/pkg/trace/telemetry/ @DataDog/telemetry-and-analytics
/comp/core/autodiscovery/listeners/ @DataDog/container-platform
/comp/core/autodiscovery/listeners/cloudfoundry*.go @DataDog/platform-integrations
/comp/core/autodiscovery/listeners/snmp*.go @DataDog/network-device-monitoring
/comp/core/autodiscovery/providers/ @DataDog/container-platform
/comp/core/autodiscovery/providers/file*.go @DataDog/agent-metrics-logs
/comp/core/autodiscovery/providers/config_reader*.go @DataDog/container-platform @DataDog/agent-metrics-logs
/comp/core/autodiscovery/providers/cloudfoundry*.go @DataDog/platform-integrations
/comp/core/autodiscovery/providers/remote_config*.go @DataDog/remote-config
/pkg/cloudfoundry @Datadog/platform-integrations
/pkg/clusteragent/ @DataDog/container-platform
/pkg/clusteragent/autoscaling/ @DataDog/container-integrations
/pkg/clusteragent/admission/mutate/autoscaling @DataDog/container-integrations
/pkg/clusteragent/admission/mutate/autoinstrumentation/ @DataDog/container-platform @DataDog/apm-onboarding
/pkg/clusteragent/orchestrator/ @DataDog/container-app
/pkg/clusteragent/telemetry/ @DataDog/telemetry-and-analytics
/pkg/collector/ @DataDog/agent-metrics-logs
/pkg/collector/corechecks/cluster/ @DataDog/container-integrations
/pkg/collector/corechecks/cluster/orchestrator @DataDog/container-app
/pkg/collector/corechecks/containers/ @DataDog/container-integrations
/pkg/collector/corechecks/containerimage/ @DataDog/container-integrations
/pkg/collector/corechecks/containerlifecycle/ @DataDog/container-integrations
/pkg/collector/corechecks/ebpf/ @DataDog/container-integrations
/pkg/collector/corechecks/ebpf/ebpf* @DataDog/ebpf-platform
/pkg/collector/corechecks/ebpf/probe/ebpfcheck/ @DataDog/ebpf-platform
/pkg/collector/corechecks/ebpf/c/runtime/ebpf* @DataDog/ebpf-platform
/pkg/collector/corechecks/embed/ @Datadog/agent-devx-infra
/pkg/collector/corechecks/embed/apm/ @Datadog/agent-devx-infra @DataDog/agent-apm
/pkg/collector/corechecks/embed/process/ @Datadog/agent-devx-infra @DataDog/processes
/pkg/collector/corechecks/network-devices/ @DataDog/network-device-monitoring
/pkg/collector/corechecks/orchestrator/ @DataDog/container-app
/pkg/collector/corechecks/kubernetes/ @DataDog/container-integrations
/pkg/collector/corechecks/net/ @DataDog/platform-integrations
/pkg/collector/corechecks/oracle @DataDog/database-monitoring
/pkg/collector/corechecks/sbom/ @DataDog/container-integrations
/pkg/collector/corechecks/servicediscovery/ @DataDog/apm-onboarding @DataDog/universal-service-monitoring
/pkg/collector/corechecks/snmp/ @DataDog/network-device-monitoring
/pkg/collector/corechecks/system/ @DataDog/platform-integrations
/pkg/collector/corechecks/system/**/*_windows*.go @DataDog/platform-integrations @DataDog/windows-agent
/pkg/collector/corechecks/system/wincrashdetect/ @DataDog/windows-kernel-integrations
/pkg/collector/corechecks/system/winkmem/ @DataDog/windows-agent
/pkg/collector/corechecks/system/winproc/ @DataDog/windows-agent
/pkg/collector/corechecks/systemd/ @DataDog/agent-integrations
/pkg/collector/corechecks/nvidia/ @DataDog/agent-devx-infra
/pkg/collector/corechecks/windows_event_log/ @DataDog/windows-agent
/pkg/config/ @DataDog/agent-shared-components
/pkg/config/config_template.yaml @DataDog/agent-shared-components @DataDog/documentation
/pkg/config/setup/apm.go @DataDog/agent-apm
/pkg/config/autodiscovery/ @DataDog/container-integrations @DataDog/container-platform
/pkg/config/env @DataDog/container-integrations @DataDog/container-platform
/pkg/config/logs @Datadog/agent-shared-components
/pkg/config/logs/internal/seelog/seelog_config.go @Datadog/agent-shared-components
/pkg/config/setup @DataDog/agent-shared-components
/pkg/config/setup/process*.go @DataDog/processes
/pkg/config/setup/system_probe.go @DataDog/ebpf-platform
/pkg/config/setup/system_probe_cws.go @DataDog/agent-security
/pkg/config/setup/system_probe_cws_notwin.go @DataDog/agent-security
/pkg/config/setup/system_probe_cws_windows.go @DataDog/windows-kernel-integrations
/pkg/config/setup/security_agent.go @DataDog/agent-security
/pkg/config/remote/ @DataDog/remote-config
/pkg/config/remote/meta/ @DataDog/remote-config @DataDog/software-integrity-and-trust
/pkg/containerlifecycle/ @Datadog/container-integrations
/pkg/diagnose/ @Datadog/container-platform
/pkg/diagnose/connectivity/ @DataDog/agent-shared-components
/pkg/diagnose/ports/ @DataDog/agent-shared-components
/pkg/eventmonitor/ @DataDog/ebpf-platform @DataDog/agent-security
/pkg/dynamicinstrumentation/ @DataDog/debugger
/pkg/epforwarder/ @DataDog/agent-processing-and-routing
/pkg/flare/ @DataDog/agent-shared-components
/pkg/flare/*_win.go @Datadog/windows-agent
/pkg/flare/*_windows.go @Datadog/windows-agent
/pkg/flare/*_windows_test.go @Datadog/windows-agent
/pkg/fleet/ @DataDog/fleet @DataDog/windows-agent
/pkg/otlp/ @DataDog/opentelemetry
/pkg/otlp/*_serverless*.go @DataDog/serverless
/pkg/otlp/*_not_serverless*.go @DataDog/opentelemetry
/pkg/pidfile/ @DataDog/agent-shared-components
/pkg/persistentcache/ @DataDog/agent-metrics-logs
/pkg/proto/ @DataDog/agent-shared-components
/pkg/proto/datadog/languagedetection @DataDog/processes
/pkg/proto/datadog/process @DataDog/processes
/pkg/proto/datadog/trace @DataDog/agent-apm
/pkg/proto/datadog/workloadmeta @DataDog/container-platform
/pkg/remoteconfig/ @DataDog/remote-config
/pkg/runtime/ @DataDog/agent-shared-components
/pkg/tagset/ @DataDog/agent-shared-components
/pkg/util/ @DataDog/agent-shared-components
/pkg/util/aggregatingqueue @DataDog/container-integrations @DataDog/container-platform
/pkg/util/cloudproviders/cloudfoundry/ @DataDog/platform-integrations
/pkg/util/clusteragent/ @DataDog/container-platform
/pkg/util/containerd/ @DataDog/container-integrations
/pkg/util/containers/ @DataDog/container-integrations
/pkg/util/containers/collectors/cloudfoundry.go @DataDog/platform-integrations
/pkg/util/docker/ @DataDog/container-integrations
/pkg/util/ecs/ @DataDog/container-integrations
/pkg/util/funcs/ @DataDog/ebpf-platform
/pkg/util/kernel/ @DataDog/ebpf-platform
/pkg/util/kubernetes/ @DataDog/container-integrations @DataDog/container-platform @DataDog/container-app
/pkg/util/orchestrator/ @DataDog/container-app
/pkg/util/podman/ @DataDog/container-integrations
/pkg/util/prometheus @DataDog/container-integrations
/pkg/util/trivy/ @DataDog/container-integrations @DataDog/agent-security
/pkg/util/uuid/ @DataDog/agent-shared-components
/pkg/util/cgroups/ @DataDog/container-integrations
/pkg/util/retry/ @DataDog/container-platform
/pkg/util/intern/ @DataDog/ebpf-platform
/pkg/util/crashreport/ @DataDog/windows-kernel-integrations
/pkg/util/pdhutil/ @DataDog/windows-agent
/pkg/util/winutil/ @DataDog/windows-agent
/pkg/util/testutil/flake @DataDog/agent-devx-loops
/pkg/util/trie @DataDog/container-integrations
/pkg/languagedetection @DataDog/processes @DataDog/universal-service-monitoring
/pkg/linters/ @DataDog/agent-devx-loops
/pkg/linters/components/ @DataDog/agent-shared-components
/pkg/logs/ @DataDog/agent-metrics-logs
/pkg/logs/launchers/windowsevent @DataDog/agent-metrics-logs @DataDog/windows-agent
/pkg/logs/tailers/windowsevent @DataDog/agent-metrics-logs @DataDog/windows-agent
/pkg/logs/util/windowsevent @DataDog/agent-metrics-logs @DataDog/windows-agent
/pkg/logs/client @DataDog/agent-processing-and-routing
/pkg/logs/diagnostic @DataDog/agent-processing-and-routing
/pkg/logs/message @DataDog/agent-processing-and-routing
/pkg/logs/pipeline @DataDog/agent-processing-and-routing
/pkg/logs/processor @DataDog/agent-processing-and-routing
/pkg/logs/sds @DataDog/agent-processing-and-routing
/pkg/logs/sender @DataDog/agent-processing-and-routing
/pkg/process/ @DataDog/processes
/pkg/process/util/address*.go @DataDog/Networks
/pkg/process/util/netns*.go @DataDog/Networks
/pkg/process/checks/net*.go @DataDog/Networks
/pkg/process/metadata/parser/ @DataDog/universal-service-monitoring @DataDog/processes @DataDog/Networks
/pkg/process/metadata/parser/*windows* @DataDog/universal-service-monitoring @DataDog/processes @DataDog/Networks @DataDog/windows-kernel-integrations
/pkg/process/monitor/ @DataDog/universal-service-monitoring
/pkg/process/net/ @DataDog/universal-service-monitoring @DataDog/processes @DataDog/Networks
/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/processes
/pkg/proto/pbgo/core @DataDog/agent-shared-components
/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/mocks/core @DataDog/agent-shared-components
/pkg/orchestrator/ @DataDog/container-app
/pkg/network/ @DataDog/Networks
/pkg/network/*usm* @DataDog/universal-service-monitoring
/pkg/network/*_windows*.go @DataDog/windows-kernel-integrations
/pkg/network/config/config_test.go @DataDog/Networks @DataDog/universal-service-monitoring @DataDog/windows-kernel-integrations
/pkg/network/driver_*.go @DataDog/windows-kernel-integrations
/pkg/network/dns/*_windows*.go @DataDog/windows-kernel-integrations
/pkg/network/driver/ @DataDog/windows-kernel-integrations
/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/prebuilt/http* @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/runtime/http* @DataDog/universal-service-monitoring
/pkg/network/ebpf/c/protocols/ @DataDog/universal-service-monitoring
/pkg/network/encoding/marshal/*usm* @DataDog/universal-service-monitoring
/pkg/network/encoding/marshal/*_windows*.go @DataDog/windows-kernel-integrations
/pkg/network/etw/ @DataDog/windows-kernel-integrations
/pkg/network/go/ @DataDog/universal-service-monitoring
/pkg/network/protocols/ @DataDog/universal-service-monitoring
/pkg/network/protocols/http/driver_*.go @DataDog/windows-kernel-integrations
/pkg/network/protocols/http/etw*.go @DataDog/windows-kernel-integrations
/pkg/network/protocols/http/*_windows*.go @DataDog/windows-kernel-integrations
/pkg/network/tracer/*classification*.go @DataDog/universal-service-monitoring
/pkg/network/tracer/testutil/http2/ @DataDog/universal-service-monitoring
/pkg/network/tracer/testutil/grpc/ @DataDog/universal-service-monitoring
/pkg/network/tracer/testutil/prefetch_file/ @DataDog/universal-service-monitoring
/pkg/network/tracer/testutil/proxy/ @DataDog/universal-service-monitoring
/pkg/network/tracer/*usm*.go @DataDog/universal-service-monitoring
/pkg/network/tracer/*_windows*.go @DataDog/windows-kernel-integrations
/pkg/network/usm/ @DataDog/universal-service-monitoring
/pkg/network/usm/tests/*_windows*.go @DataDog/windows-kernel-integrations
/pkg/ebpf/ @DataDog/ebpf-platform
/pkg/ebpf/bytecode/runtime/conntrack.go @DataDog/Networks @DataDog/universal-service-monitoring
/pkg/ebpf/bytecode/runtime/usm.go @DataDog/Networks @DataDog/universal-service-monitoring
/pkg/ebpf/bytecode/runtime/oom-kill.go @DataDog/container-integrations
/pkg/ebpf/bytecode/runtime/runtime-security.go @DataDog/agent-security
/pkg/ebpf/bytecode/runtime/tcp-queue-length.go @DataDog/container-integrations
/pkg/ebpf/bytecode/runtime/tracer.go @DataDog/Networks @DataDog/universal-service-monitoring
/pkg/ebpf/map_cleaner*.go @DataDog/universal-service-monitoring
/pkg/compliance/ @DataDog/agent-cspm
/pkg/databasemonitoring @DataDog/database-monitoring
/pkg/kubestatemetrics @DataDog/container-integrations
/pkg/security/ @DataDog/agent-security
/pkg/networkdevice/ @DataDog/network-device-monitoring
/pkg/snmp/ @DataDog/network-device-monitoring
/pkg/tagger/ @DataDog/container-platform
/pkg/windowsdriver/ @DataDog/windows-kernel-integrations
/comp/core/workloadmeta/collectors/internal/cloudfoundry @DataDog/platform-integrations
/pkg/sbom/ @DataDog/container-integrations @DataDog/agent-security
/pkg/internaltelemetry @DataDog/windows-kernel-integrations @DataDog/fleet
/pkg-config/ @DataDog/agent-delivery
/pkg/networkpath/ @DataDog/network-device-monitoring @DataDog/Networks
/pkg/collector/corechecks/networkpath/ @DataDog/network-device-monitoring @DataDog/Networks
/releasenotes/ @DataDog/documentation
/releasenotes-installscript/ @DataDog/documentation
/releasenotes-dca/ @DataDog/documentation
/rtloader/ @DataDog/agent-metrics-logs
/tasks/ @DataDog/agent-devx-loops @DataDog/agent-devx-infra
/tasks/msi.py @DataDog/windows-agent
/tasks/agent.py @DataDog/agent-shared-components
/tasks/go_deps.py @DataDog/agent-shared-components
/tasks/dogstatsd.py @DataDog/agent-metrics-logs
/tasks/update_go.py @DataDog/agent-shared-components
/tasks/unit_tests/update_go_tests.py @DataDog/agent-shared-components
/tasks/cluster_agent_cloudfoundry.py @DataDog/platform-integrations
/tasks/new_e2e_tests.py @DataDog/agent-e2e-testing @DataDog/agent-devx-loops
/tasks/process_agent.py @DataDog/processes
/tasks/system_probe.py @DataDog/ebpf-platform
/tasks/ebpf.py @DataDog/ebpf-platform
/tasks/kmt.py @DataDog/ebpf-platform
/tasks/kernel_matrix_testing/ @DataDog/ebpf-platform
/tasks/ebpf_verifier/ @DataDog/ebpf-platform
/tasks/trace_agent.py @DataDog/agent-apm
/tasks/rtloader.py @DataDog/agent-metrics-logs
/tasks/security_agent.py @DataDog/agent-security
/tasks/sds.py @DataDog/agent-processing-and-routing
/tasks/systray.py @DataDog/windows-agent
/tasks/winbuildscripts/ @DataDog/windows-agent
/tasks/windows_resources.py @DataDog/windows-agent
/tasks/components.py @DataDog/agent-shared-components
/tasks/components_templates @DataDog/agent-shared-components
/tasks/updater.py @DataDog/fleet
/tasks/libs/common/omnibus.py @DataDog/agent-delivery
/tasks/omnibus.py @DataDog/agent-delivery
/tasks/unit_tests/components_tests.py @DataDog/agent-shared-components
/tasks/unit_tests/omnibus_tests.py @DataDog/agent-delivery
/tasks/unit_tests/testdata/components_src/ @DataDog/agent-shared-components
/tasks/installer.py @DataDog/fleet
/test/ @DataDog/agent-devx-loops
/test/benchmarks/ @DataDog/agent-metrics-logs
/test/benchmarks/kubernetes_state/ @DataDog/container-integrations
/test/e2e/ @DataDog/container-integrations @DataDog/agent-security
/test/e2e/cws-tests/ @DataDog/agent-security
/test/e2e/argo-workflows/otlp-workflow.yaml @DataDog/opentelemetry
/test/e2e/containers/otlp_sender/ @DataDog/opentelemetry
/test/integration/ @DataDog/container-integrations
/test/integration/serverless @DataDog/serverless
/test/integration/serverless_perf @DataDog/serverless
/test/kitchen/ @DataDog/agent-devx-loops
/test/kitchen/test-definitions/ @DataDog/agent-delivery
/test/kitchen/test/integration/ @DataDog/agent-delivery
/test/kitchen/kitchen-azure-security-agent-test.yml @DataDog/agent-security
/test/kitchen/kitchen-vagrant-security-agent.yml @DataDog/agent-security
/test/kitchen/site-cookbooks/dd-security-agent-check/ @DataDog/agent-security
/test/kitchen/test/integration/security-agent-stress/ @DataDog/agent-security
/test/kitchen/test/integration/security-agent-test/ @DataDog/agent-security
/test/kitchen/site-cookbooks/dd-system-probe-check/ @DataDog/windows-kernel-integrations
/test/kitchen/test/integration/win-all-subservices/ @DataDog/windows-agent
/test/kitchen/test/integration/win-alt-dir/ @DataDog/windows-agent
/test/kitchen/test/integration/win-install-fail/ @DataDog/windows-agent
/test/kitchen/test/integration/win-installopts/ @DataDog/windows-agent
/test/kitchen/test/integration/win-no-subservices/ @DataDog/windows-agent
/test/kitchen/test/integration/win-sysprobe-test/ @DataDog/windows-kernel-integrations
/test/kitchen/test/integration/win-reinstall-option/ @DataDog/windows-agent
/test/kitchen/test/integration/win-repair/ @DataDog/windows-agent
/test/kitchen/test/integration/win-user/ @DataDog/windows-agent
/test/fakeintake/ @DataDog/agent-e2e-testing @DataDog/agent-devx-loops
/test/fakeintake/aggregator/ndmflowAggregator.go @DataDog/network-device-monitoring
/test/fakeintake/aggregator/ndmflowAggregator_test.go @DataDog/network-device-monitoring
/test/new-e2e/ @DataDog/agent-e2e-testing @DataDog/agent-devx-loops
/test/new-e2e/test-infra-definition @DataDog/agent-devx-loops
/test/new-e2e/system-probe @DataDog/ebpf-platform
/test/new-e2e/scenarios/system-probe @DataDog/ebpf-platform
/test/new-e2e/tests/agent-platform @DataDog/agent-delivery @DataDog/agent-devx-loops
/test/new-e2e/tests/agent-shared-components @DataDog/agent-shared-components
/test/new-e2e/tests/agent-subcommands @DataDog/agent-shared-components
/test/new-e2e/tests/containers @DataDog/container-integrations @DataDog/container-platform
/test/new-e2e/tests/discovery @DataDog/apm-onboarding @DataDog/universal-service-monitoring
/test/new-e2e/tests/language-detection @DataDog/processes
/test/new-e2e/tests/ndm @DataDog/network-device-monitoring
/test/new-e2e/tests/npm @DataDog/Networks
/test/new-e2e/tests/npm/ec2_1host_wkit_test.go @DataDog/Networks @DataDog/windows-kernel-integrations
/test/new-e2e/tests/orchestrator @DataDog/container-app
/test/new-e2e/tests/otel @DataDog/opentelemetry
/test/new-e2e/tests/process @DataDog/processes
/test/new-e2e/tests/sysprobe-functional @DataDog/windows-kernel-integrations
/test/new-e2e/tests/security-agent-functional @DataDog/windows-kernel-integrations
/test/new-e2e/tests/cws @DataDog/agent-security
/test/new-e2e/tests/agent-metrics-logs @DataDog/agent-metrics-logs
/test/new-e2e/tests/windows @DataDog/windows-agent @DataDog/windows-kernel-integrations
/test/new-e2e/tests/apm @DataDog/agent-apm
/test/new-e2e/tests/remote-config @DataDog/remote-config
/test/new-e2e/tests/updater @DataDog/fleet @DataDog/windows-agent
/test/new-e2e/tests/installer @DataDog/fleet @DataDog/windows-agent
/test/otel/ @DataDog/opentelemetry
/test/system/ @DataDog/agent-shared-components
/test/system/dogstatsd/ @DataDog/agent-metrics-logs
/test/benchmarks/apm_scripts/ @DataDog/agent-apm
/test/regression/ @DataDog/single-machine-performance
/test/workload-checks/ @DataDog/single-machine-performance
/tools/ @DataDog/agent-devx-loops
/tools/ci @DataDog/agent-devx-infra
/tools/ebpf/ @DataDog/ebpf-platform
/tools/gdb/ @DataDog/agent-shared-components
/tools/go-update/ @DataDog/agent-shared-components
/tools/retry_file_dump/ @DataDog/agent-metrics-logs
/tools/windows/ @DataDog/windows-agent
/tools/windows/DatadogAgentInstaller/WixSetup/localization-en-us.wxl @DataDog/windows-agent @DataDog/documentation
/tools/agent_QA/ @DataDog/agent-metrics-logs
/internal/tools/ @DataDog/agent-devx-loops @DataDog/agent-devx-infra
/internal/third_party/client-go @DataDog/container-platform
/internal/third_party/kubernetes @DataDog/container-integrations
/internal/third_party/golang/ @DataDog/container-integrations