-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
CODEOWNERS
Validating CODEOWNERS rules...
631 lines (541 loc) · 43.1 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
# General ownership rules
#
# The following rules are not specific to any particular area of the product
# and are more general
## Legal
/LICENSE.md @getsentry/owners-legal
## Migrations
/src/sentry/migrations/ @getsentry/owners-migrations
/src/sentry/*/migrations/ @getsentry/owners-migrations
## Snuba
/src/sentry/eventstream/ @getsentry/owners-snuba
/src/sentry/consumers/ @getsentry/ops @getsentry/owners-snuba
/src/sentry/post_process_forwarder/ @getsentry/owners-snuba
/src/sentry/utils/snuba.py @getsentry/owners-snuba @getsentry/visibility
/src/sentry/utils/snql.py @getsentry/owners-snuba
/src/sentry/utils/arroyo.py @getsentry/owners-snuba
/src/sentry/utils/arroyo_producer.py @getsentry/owners-snuba
/src/sentry/tsdb/snuba.py @getsentry/owners-snuba
/src/sentry/tsdb/redissnuba.py @getsentry/owners-snuba
/src/sentry/tagstore/snuba/ @getsentry/owners-snuba
/src/sentry/sentry_metrics/ @getsentry/owners-snuba
/tests/sentry/sentry_metrics/ @getsentry/owners-snuba
/src/sentry/snuba/metrics/ @getsentry/owners-snuba @getsentry/telemetry-experience
/src/sentry/snuba/metrics/query.py @getsentry/owners-snuba @getsentry/telemetry-experience
/src/sentry/snuba/metrics_layer/ @getsentry/owners-snuba
/src/sentry/search/events/datasets/metrics_layer.py @getsentry/owners-snuba
## Event Ingestion
/src/sentry/attachments/ @getsentry/ingest
/src/sentry/api/endpoints/relay/ @getsentry/ingest
/src/sentry/api/endpoints/project_transaction_names.py @getsentry/ingest
/src/sentry/coreapi.py @getsentry/ingest
/src/sentry/ingest/ @getsentry/ingest
/src/sentry/interfaces/ @getsentry/ingest
/src/sentry/quotas/ @getsentry/ingest
/src/sentry/relay/ @getsentry/ingest
/src/sentry/web/api.py @getsentry/ingest
/src/sentry/scripts/quotas/ @getsentry/ingest
/src/sentry/scripts/tsdb/ @getsentry/ingest
/src/sentry/tasks/relay.py @getsentry/ingest
/tests/sentry/ingest/ @getsentry/ingest
/tests/sentry/relay/ @getsentry/ingest
/tests/relay_integration/ @getsentry/ingest
/bin/invalidate-project-configs @getsentry/ingest
## Security
/src/sentry/net/ @getsentry/security
/src/sentry/auth/ @getsentry/security @getsentry/enterprise
/src/sentry/api/permissions.py @getsentry/security @getsentry/enterprise
/src/sentry/api/authentication.py @getsentry/security @getsentry/enterprise
/src/sentry/api/endpoints/auth* @getsentry/security @getsentry/enterprise
/src/sentry/users/api/endpoints/user_permission* @getsentry/security @getsentry/enterprise
/src/sentry/web/frontend/auth_close.py @getsentry/security
/src/sentry/web/frontend/auth_login.py @getsentry/security
/src/sentry/web/frontend/auth_logout.py @getsentry/security
/src/sentry/web/frontend/auth_organization_id_login.py @getsentry/security
/src/sentry/web/frontend/auth_organization_login.py @getsentry/security
/src/sentry/web/frontend/auth_provider_login.py @getsentry/security
/src/sentry/web/frontend/oauth_token.py @getsentry/security
/src/sentry/web/frontend/oauth_authorize.py @getsentry/security
/src/sentry/web/frontend/openidtoken.py @getsentry/security
## Dev
/devenv/ @getsentry/owners-sentry-dev @getsentry/dev-infra
/.github/ @getsentry/owners-sentry-dev
/config/hooks/ @getsentry/owners-sentry-dev
/scripts/ @getsentry/owners-sentry-dev
/tools/ @getsentry/owners-sentry-dev
Makefile @getsentry/owners-sentry-dev @getsentry/dev-infra
.envrc @getsentry/owners-sentry-dev @getsentry/dev-infra
.pre-commit-config.yaml @getsentry/owners-sentry-dev @getsentry/dev-infra
.git-blame-ignore-revs @getsentry/owners-sentry-dev
/fixtures/stubs-for-mypy @getsentry/python-typing
/tools/mypy_helpers/ @getsentry/python-typing
/tests/tools/mypy_helpers @getsentry/python-typing
## GitHub Routing Automations - notion.so/473791bae5bf43399d46093050b77bf0
/.github/labels.yml @getsentry/open-source
/.github/workflows/react-to-product-owners-yml-changes.yml @getsentry/open-source
/bin/react-to-product-owners-yml-changes.py @getsentry/open-source
/bin/react-to-product-owners-yml-changes.sh @getsentry/open-source
/static/app/components/sidebar/index.tsx @getsentry/open-source
## Backup - getsentry/team-ospo#153
/src/sentry/backup/ @getsentry/open-source
/src/sentry/runner/commands/backup.py @getsentry/open-source
/src/sentry/testutils/helpers/backups.py @getsentry/open-source
/tests/sentry/backup/ @getsentry/open-source
/tests/sentry/runner/commands/test_backup.py @getsentry/open-source
## Relocation - getsentry/team-ospo#153
/src/sentry/analytics/events/relocation_*.py @getsentry/open-source
/src/sentry/api/endpoints/organization_fork.py @getsentry/open-source
/src/sentry/api/endpoints/relocation/ @getsentry/open-source
/src/sentry/api/serialiers/models/relocation/ @getsentry/open-source
/src/sentry/models/relocation/ @getsentry/open-source
/src/sentry/relocation/ @getsentry/open-source
/src/sentry/tasks/relocation.py @getsentry/open-source
/src/sentry/utils/relocation.py @getsentry/open-source
/tests/sentry/api/endpoints/relocation @getsentry/open-source
/tests/sentry/api/endpoints/test_organization_fork.py @getsentry/open-source
/tests/sentry/api/serializer/test_relocation.py @getsentry/open-source
/tests/sentry/tasks/test_relocation.py @getsentry/open-source
/tests/sentry/utils/test_relocation.py @getsentry/open-source
## Build & Releases
/.github/workflows/release.yml @getsentry/release-approvers
/scripts/bump-version.sh @getsentry/release-approvers
/scripts/post-release.sh @getsentry/release-approvers
/self-hosted @getsentry/release-approvers
setup.cfg @getsentry/release-approvers
requirements*.txt @getsentry/owners-python-build
pyproject.toml @getsentry/owners-python-build
.vercel.json @getsentry/owners-js-build
/.githib/worksflows/frontend.yml @getsentry/owners-js-build
/.github/file-filters.yml @getsentry/owners-js-build
babel.config.* @getsentry/owners-js-build
biome.json @getsentry/owners-js-build
build-utils/ @getsentry/owners-js-build
jest.config.ts @getsentry/owners-js-build
tsconfig.* @getsentry/owners-js-build
webpack.config.* @getsentry/owners-js-build
.volta.json @getsentry/owners-js-deps
package.json @getsentry/owners-js-deps
yarn.lock @getsentry/owners-js-deps
## Design
/static/app/icons/ @getsentry/design
/static/fonts/ @getsentry/design
/static/images/ @getsentry/design
# Owners by product feature
#
# The following ownership rules are specific to particular features of the
# Sentry product. These rules generally map to a signle team, but that may not
# always be the case.
## Crons
/static/app/views/monitors @getsentry/crons
/src/sentry/monitors @getsentry/crons
/tests/sentry/monitors @getsentry/crons
/src/sentry/utils/monitors.py @getsentry/crons
/tests/sentry/utils/test_monitors.py @getsentry/crons
## End Crons
## Uptime
/src/sentry/uptime @getsentry/crons
/tests/sentry/uptime @getsentry/crons
## End Uptime
## Hybrid Cloud
/src/sentry/silo/ @getsentry/hybrid-cloud
/src/sentry/hybridcloud @getsentry/hybrid-cloud
/src/sentry/middleware/customer_domain.py @getsentry/hybrid-cloud
/src/sentry/middleware/subdomain.py @getsentry/hybrid-cloud
/src/sentry/middleware/integration/ @getsentry/hybrid-cloud
/src/sentry/api/endpoints/internal/integration_proxy.py @getsentry/hybrid-cloud
/src/sentry/api/endpoints/internal/rpc.py @getsentry/hybrid-cloud
/src/sentry/models/outbox.py @getsentry/hybrid-cloud
/src/sentry/tasks/deliver_from_outbox.py @getsentry/hybrid-cloud
/src/sentry/tasks/deletion/hybrid_cloud.py @getsentry/hybrid-cloud
## End of Hybrid Cloud
## Alerts & Notifications
/static/app/views/settings/projectAlerts/ @getsentry/alerts-notifications
/static/app/views/alerts/ @getsentry/alerts-notifications
/static/app/views/alerts/rules/uptime @getsentry/crons
/static/app/views/releases/ @getsentry/alerts-notifications
/src/sentry/rules/processing/delayed_processing.py @getsentry/alerts-notifications
/static/app/views/settings/account/notifications/ @getsentry/alerts-notifications
/src/sentry/templates/sentry/emails/incidents/ @getsentry/alerts-notifications
/src/sentry/incidents/ @getsentry/alerts-notifications
/tests/sentry/incidents/ @getsentry/alerts-notifications
/tests/acceptance/test_incidents.py @getsentry/alerts-notifications
/src/sentry/snuba/models.py @getsentry/alerts-notifications
/src/sentry/snuba/query_subscriptions/ @getsentry/alerts-notifications
/src/sentry/snuba/subscriptions.py @getsentry/alerts-notifications
/src/sentry/snuba/tasks.py @getsentry/alerts-notifications
/tests/snuba/incidents/ @getsentry/alerts-notifications
/tests/sentry/snuba/test_query_subscription_consumer.py @getsentry/alerts-notifications
/tests/sentry/snuba/test_subscriptions.py @getsentry/alerts-notifications
/tests/sentry/snuba/test_tasks.py @getsentry/alerts-notifications
/src/sentry/api/endpoints/notification_defaults.py @getsentry/alerts-notifications
/src/sentry/api/endpoints/user_notification_email.py @getsentry/alerts-notifications
/src/sentry/api/endpoints/user_notification_settings_options_detail.py @getsentry/alerts-notifications
/src/sentry/api/endpoints/user_notification_settings_options.py @getsentry/alerts-notifications
/src/sentry/api/endpoints/user_notification_settings_providers.py @getsentry/alerts-notifications
/src/sentry/api/endpoints/user_notification_details.py @getsentry/alerts-notifications
## Endof Alerts & Notifications
## Visibility
/src/sentry/api/endpoints/organization_tags.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_histogram.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_facets_performance.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_spans_performance.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_spans_histogram.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_trace.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_trends.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_trends_v2.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_vitals.py @getsentry/visibility
/src/sentry/api/endpoints/organization_tagkey_values.py @getsentry/visibility
/src/sentry/api/endpoints/organization_event_details.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_facets.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_meta.py @getsentry/visibility
/src/sentry/api/endpoints/organization_events_stats.py @getsentry/visibility
/src/sentry/api/endpoints/organization_measurements_meta.py @getsentry/visibility
/tests/snuba/api/endpoints/* @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_tags.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_histogram.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_facets_performance.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_spans_performance.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_spans_histogram.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_trace.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_trends.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_trends_v2.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_events_vitals.py @getsentry/visibility
/tests/snuba/api/endpoints/test_organization_tagkey_values.py @getsentry/visibility
/src/sentry/api/endpoints/organization_transaction_anomaly_detection.py @getsentry/data
/src/sentry/spans/ @getsentry/visibility
/tests/sentry/spans/ @getsentry/visibility
/src/sentry/api/serializers/snuba.py @getsentry/visibility
/src/sentry/snuba/discover.py @getsentry/visibility
/src/sentry/snuba/metrics_performance.py @getsentry/visibility
/src/sentry/snuba/metrics_enhanced_performance.py @getsentry/visibility
/tests/snuba/search/test_backend.py @getsentry/visibility
/src/sentry/search/events/ @getsentry/visibility
/src/sentry/utils/performance_issues/ @getsentry/performance
/static/app/components/events/eventStatisticalDetector/ @getsentry/visibility @getsentry/profiling
/src/sentry/statistical_detectors @getsentry/visibility @getsentry/profiling
/tests/sentry/statistical_detectors @getsentry/visibility @getsentry/profiling
/src/sentry/tasks/statistical_detectors.py @getsentry/visibility @getsentry/profiling
/tests/sentry/tasks/test_statistical_detectors.py @getsentry/visibility @getsentry/profiling
/src/sentry/api/bases/organization_events.py @getsentry/visibility
/src/sentry/api/endpoints/organization_dashboards.py @getsentry/dashboards
/src/sentry/api/endpoints/organization_dashboard_details.py @getsentry/dashboards
/src/sentry/api/endpoints/organization_dashboard_widget_details.py @getsentry/dashboards
tests/sentry/api/endpoints/test_organization_dashboards.py @getsentry/dashboards
tests/sentry/api/endpoints/test_organization_dashboard_details.py @getsentry/dashboards
tests/sentry/api/endpoints/test_organization_dashboard_widget_details.py @getsentry/dashboards
/src/sentry/api/serializers/models/dashboard.py @getsentry/dashboards
/src/sentry/api/serializers/models/discoversavedquery.py @getsentry/visibility
/src/sentry/api/serializers/rest_framework/dashboard.py @getsentry/dashboards
/src/sentry/discover/ @getsentry/explore
/tests/sentry/snuba/test_discover.py @getsentry/explore
/src/sentry/api/event_search.py @getsentry/visibility
/tests/sentry/api/test_event_search.py @getsentry/visibility
/src/sentry/data_export/ @getsentry/visibility
/tests/sentry/data_export/ @getsentry/visibility
/src/sentry/api/endpoints/organization_spans_aggregation.py @getsentry/visibility
/src/sentry/api/endpoints/organization_spans_fields.py @getsentry/visibility
/tests/sentry/api/endpoints/test_organization_spans_fields.py @getsentry/visibility
/src/sentry/api/endpoints/organization_traces.py @getsentry/explore
/tests/sentry/api/endpoints/test_organization_traces.py @getsentry/explore
/static/app/views/explore/ @getsentry/explore
/static/app/views/traces/ @getsentry/explore
/static/app/components/quickTrace/ @getsentry/explore
/static/app/views/performance/ @getsentry/performance
/static/app/components/performance/ @getsentry/performance
/static/app/utils/performance/ @getsentry/performance
/static/app/components/events/interfaces/spans/ @getsentry/performance
/static/app/components/events/viewHierarchy/* @getsentry/performance
/static/app/components/charts/ @getsentry/visibility
/static/app/views/insights/ @getsentry/insights
/static/app/views/dashboards/ @getsentry/dashboards
/static/app/components/dashboards/ @getsentry/dashboards
/static/app/components/modals/widgetViewerModal* @getsentry/dashboards
/static/app/views/discover/ @getsentry/explore
/static/app/utils/discover/ @getsentry/explore
## Endof Visibility
## Profiling
/static/app/components/profiling @getsentry/profiling
/static/app/types/jsSelfProfiling.d.ts @getsentry/profiling
/static/app/types/profiling.d.ts @getsentry/profiling
/static/app/utils/profiling @getsentry/profiling
/static/app/views/profiling @getsentry/profiling
/src/sentry/utils/profiling.py @getsentry/profiling
/src/sentry/api/endpoints/project_profiling_profile.py @getsentry/profiling
/src/sentry/api/endpoints/organization_profiling_profiles.py @getsentry/profiling
/src/sentry/profiles @getsentry/profiling
/tests/sentry/profiles @getsentry/profiling
/tests/sentry/api/endpoints/test_project_profiling_profile.py @getsentry/profiling
/tests/sentry/api/endpoints/test_organization_profiling_profiles.py @getsentry/profiling
## End of Profiling
## Flags
/src/sentry/flags/ @getsentry/replay-backend
/tests/sentry/flags/ @getsentry/replay-backend
## End of Flags
## Replays
/static/app/components/replays/ @getsentry/replay-frontend
/static/app/utils/replays/ @getsentry/replay-frontend
/static/app/views/replays/ @getsentry/replay-frontend
/src/sentry/replays/ @getsentry/replay-backend
/tests/sentry/replays/ @getsentry/replay-backend
## End of Replays
## Feedback v2
/static/app/components/feedback/ @getsentry/feedback-frontend
/static/app/utils/feedback/ @getsentry/feedback-frontend
/static/app/views/feedback/ @getsentry/feedback-frontend
/src/sentry/feedback/ @getsentry/feedback-backend
/tests/sentry/feedback/ @getsentry/feedback-backend
## End of Feedback v2
## DevToolbar
/src/sentry/templates/sentry/toolbar/ @getsentry/replay
/src/sentry/toolbar/ @getsentry/replay
/tests/sentry/toolbar/ @getsentry/replay
## End of DevToolbar
## Integrations
/src/sentry/sentry_apps/ @getsentry/product-owners-settings-integrations @getsentry/ecosystem
/tests/sentry/sentry_apps @getsentry/product-owners-settings-integrations @getsentry/ecosystem
/src/sentry/api/endpoints/project_rule*.py @getsentry/alerts-notifications
/src/sentry/api/serializers/models/rule.py @getsentry/alerts-notifications
/static/app/views/organizationIntegrations @getsentry/product-owners-settings-integrations
/src/sentry/digests/ @getsentry/alerts-notifications
/src/sentry/identity/ @getsentry/enterprise
/src/sentry/integrations/ @getsentry/product-owners-settings-integrations @getsentry/ecosystem
/src/sentry/mail/ @getsentry/alerts-notifications
/src/sentry/notifications/ @getsentry/alerts-notifications
/src/sentry/pipeline/ @getsentry/ecosystem
/src/sentry/plugins/ @getsentry/ecosystem
/src/sentry/shared_integrations/ @getsentry/ecosystem
/src/sentry/users/models/identity.py @getsentry/enterprise
/src/sentry/tasks/digests.py @getsentry/alerts-notifications
/src/sentry/tasks/email.py @getsentry/alerts-notifications
/src/sentry/tasks/user_report.py @getsentry/alerts-notifications
/src/sentry/tasks/weekly_reports.py @getsentry/alerts-notifications
/src/sentry_plugins/ @getsentry/product-owners-settings-integrations
# To find matching files -> find . -name "*sentry_app*.py"
*sentry_app*.py @getsentry/product-owners-settings-integrations @getsentry/ecosystem
*sentryapp*.py @getsentry/product-owners-settings-integrations @getsentry/ecosystem
*doc_integration*.py @getsentry/ecosystem
*docintegration*.py @getsentry/ecosystem
## End of Integrations
## Data
/src/sentry/models/featureadoption.py @getsentry/data
/src/sentry/models/group.py @getsentry/data
/src/sentry/models/grouphash.py @getsentry/data
/src/sentry/models/grouprelease.py @getsentry/data
/src/sentry/models/groupresolution.py @getsentry/data
/src/sentry/models/organization.py @getsentry/data
/src/sentry/models/organizationmember.py @getsentry/data
/src/sentry/models/organizationoption.py @getsentry/data
/src/sentry/models/project.py @getsentry/data @getsentry/telemetry-experience
/src/sentry/models/projectoption.py @getsentry/data
/src/sentry/models/release.py @getsentry/data
/src/sentry/users/models/user.py @getsentry/data
## End of Data
## Enterprise
/src/sentry/api/endpoints/oauth_userinfo.py @getsentry/enterprise
/src/sentry/api/endpoints/organization_auditlogs.py @getsentry/enterprise
/src/sentry/api/endpoints/organization_projects_experiment.py @getsentry/enterprise
/src/sentry/api/endpoints/organization_stats*.py @getsentry/enterprise
/src/sentry/api/endpoints/release_threshold*.py @getsentry/enterprise
/src/sentry/api/endpoints/user_social_identity* @getsentry/enterprise
/src/sentry/auth/staff.py @getsentry/enterprise
/src/sentry/auth/superuser.py @getsentry/enterprise
/src/sentry/middleware/staff.py @getsentry/enterprise
/src/sentry/middleware/superuser.py @getsentry/enterprise
/src/sentry/models/release_threshold @getsentry/enterprise
/src/sentry/scim/ @getsentry/enterprise
/src/sentry/tasks/integrations/github/ @getsentry/enterprise
/src/sentry/web/frontend/auth_login.py @getsentry/enterprise
/static/app/components/superuserStaffAccessForm.tsx @getsentry/enterprise
/static/app/constants/superuserAccessErrors.tsx @getsentry/enterprise
/static/app/views/organizationStats @getsentry/enterprise
/static/app/views/settings/organizationAuth/ @getsentry/enterprise
/static/app/views/settings/organizationMembers/inviteBanner.tsx @getsentry/enterprise
/tests/sentry/api/endpoints/test_auth*.py @getsentry/enterprise
/tests/sentry/api/endpoints/test_organization_projects_experiment.py @getsentry/enterprise
/tests/sentry/api/test_data_secrecy.py @getsentry/enterprise
/tests/sentry/api/test_scim*.py @getsentry/enterprise
/tests/sentry/auth/test_staff.py @getsentry/enterprise
/tests/sentry/auth/test_superuser.py @getsentry/enterprise
/tests/sentry/middleware/test_staff.py @getsentry/enterprise
/tests/sentry/tasks/integrations/github/ @getsentry/enterprise
/tests/sentry/models/releases/ @getsentry/alerts-notifications
## End of Enterprise
## APIs
/src/sentry/apidocs/ @getsentry/owners-api
/src/sentry/api/urls.py @getsentry/owners-api
/api-docs/ @getsentry/owners-api
/tests/apidocs/ @getsentry/owners-api
/.github/workflows/openapi.yml @getsentry/owners-api
/.github/workflows/openapi-diff.yml @getsentry/owners-api
/src/sentry/conf/api_pagination_allowlist_do_not_modify.py @getsentry/owners-api
/tests/sentry/api/test_path_params.py @getsentry/owners-api
## End of APIs
## SDK
/src/sentry/utils/sdk.py @getsentry/team-web-sdk-backend
/src/sentry/api/endpoints/source_map_debug_blue_thunder_edition.py @getsentry/team-web-sdk-frontend
/src/sentry/web/frontend/setup_wizard.py @getsentry/team-web-sdk-frontend
/src/sentry/api/endpoints/setup_wizard.py @getsentry/team-web-sdk-frontend
## End of SDK
## Telemetry Experience
/src/sentry/api/endpoints/organization_ddm.py @getsentry/telemetry-experience
/tests/sentry/api/endpoints/test_organization_ddm_meta.py @getsentry/telemetry-experience
/src/sentry/api/endpoints/organization_metric* @getsentry/telemetry-experience
/tests/sentry/api/endpoints/test_organization_metric* @getsentry/telemetry-experience
/src/sentry/api/endpoints/organization_sessions.py @getsentry/telemetry-experience
/tests/snuba/api/endpoints/test_organization_sessions.py @getsentry/telemetry-experience
/src/sentry/api/endpoints/projects_metrics.py @getsentry/telemetry-experience
/tests/sentry/api/endpoints/test_projects_metrics_visibility.py @getsentry/telemetry-experience
/src/sentry/api/endpoints/organization_onboarding* @getsentry/telemetry-experience
/tests/sentry/api/endpoints/test_organization_onboarding* @getsentry/telemetry-experience
/src/sentry/api/endpoints/project_metrics_extraction_rules* @getsentry/telemetry-experience
/tests/sentry/api/endpoints/test_project_metrics_extraction_rules.py @getsentry/telemetry-experience
/src/sentry/api/serializers/models/metrics_extraction_rules.py @getsentry/telemetry-experience
/src/sentry/sentry_metrics/models/spanattributeextractionrules.py @getsentry/telemetry-experience
/src/sentry/dynamic_sampling/ @getsentry/telemetry-experience
/tests/sentry/dynamic_sampling/ @getsentry/telemetry-experience
/src/sentry/release_health/metrics_sessions_v2.py @getsentry/telemetry-experience
/tests/sentry/release_health/test_metrics_sessions_v2.py @getsentry/telemetry-experience
/src/sentry/utils/platform_categories.py @getsentry/telemetry-experience
/src/sentry/sentry_metrics/querying/ @getsentry/telemetry-experience
/tests/sentry/sentry_metrics/querying/ @getsentry/telemetry-experience
/src/sentry/sentry_metrics/visibility/ @getsentry/telemetry-experience
/tests/sentry/sentry_metrics/visibility/ @getsentry/telemetry-experience
/src/sentry/sentry_metrics/span_attribute_extraction_rules.py @getsentry/telemetry-experience
/src/sentry/sentry_metrics/extraction_rules.py @getsentry/telemetry-experience
/tests/sentry/sentry_metrics/test_extraction_rules.py @getsentry/telemetry-experience
/src/sentry/snuba/metrics/ @getsentry/telemetry-experience
/tests/sentry/snuba/metrics/ @getsentry/telemetry-experience
/src/sentry/relay/config/metric_extraction.py @getsentry/telemetry-experience
/tests/sentry/relay/config/test_metric_extraction.py @getsentry/telemetry-experience
/static/app/actionCreators/metrics.spec.tsx @getsentry/telemetry-experience
/static/app/actionCreators/metrics.tsx @getsentry/telemetry-experience
/static/app/data/platformCategories.tsx @getsentry/telemetry-experience
/static/app/data/platformPickerCategories.tsx @getsentry/telemetry-experience
/static/app/data/platforms.tsx @getsentry/telemetry-experience
/static/app/gettingStartedDocs/ @getsentry/telemetry-experience
/static/app/types/metrics.tsx @getsentry/telemetry-experience
/static/app/types/project.tsx @getsentry/telemetry-experience
/static/app/utils/metrics/ @getsentry/telemetry-experience
/static/app/views/metrics/ @getsentry/telemetry-experience
/static/app/views/performance/landing/dynamicSamplingMetricsAccuracy.spec.tsx @getsentry/telemetry-experience
/static/app/views/performance/landing/dynamicSamplingMetricsAccuracyAlert.tsx @getsentry/telemetry-experience
/static/app/views/settings/project/dynamicSampling/ @getsentry/telemetry-experience
/static/app/views/settings/projectMetrics/* @getsentry/telemetry-experience
/static/app/views/onboarding* @getsentry/telemetry-experience
/static/app/components/metrics/ @getsentry/telemetry-experience
/static/app/components/modals/metricWidgetViewerModal* @getsentry/telemetry-experience
/static/app/views/dashboards/metrics/ @getsentry/telemetry-experience
## End of Telemetry Experience
## Issues
**/issues/** @getsentry/issues
*code_mappings*.py @getsentry/issues
/src/sentry/api/helpers/actionable_items_helper.py @getsentry/issues
/src/sentry/api/helpers/events.py @getsentry/issues
/src/sentry/api/helpers/group_index/ @getsentry/issues
/src/sentry/api/helpers/source_map_helper.py @getsentry/issues
/src/sentry/api/issue_search.py @getsentry/issues
/src/sentry/deletions/defaults/group.py @getsentry/issues
/src/sentry/deletions/tasks/groups.py @getsentry/issues
/src/sentry/event_manager.py @getsentry/issues
/src/sentry/eventstore/models.py @getsentry/issues
/src/sentry/grouping/ @getsentry/issues
/src/sentry/mediators/ @getsentry/issues
/src/sentry/ratelimits/ @getsentry/issues
/src/sentry/search/events/builder/issue_platform.py @getsentry/issues
/src/sentry/search/events/builder/errors.py @getsentry/issues
/src/sentry/search/snuba/ @getsentry/issues
/src/sentry/seer/similarity/ @getsentry/issues
/src/sentry/tasks/auto_ongoing_issues.py @getsentry/issues
/src/sentry/tasks/auto_remove_inbox.py @getsentry/issues
/src/sentry/tasks/auto_resolve_issues.py @getsentry/issues
/src/sentry/tasks/check_new_issue_threshold_met.py @getsentry/issues
/src/sentry/tasks/clear_expired_resolutions.py @getsentry/issues
/src/sentry/tasks/clear_expired_rulesnoozes.py @getsentry/issues
/src/sentry/tasks/clear_expired_snoozes.py @getsentry/issues
/src/sentry/tasks/codeowners/ @getsentry/issues
/src/sentry/tasks/commit_context.py @getsentry/issues
/src/sentry/tasks/commits.py @getsentry/issues
/src/sentry/tasks/delete_seer_grouping_records.py @getsentry/issues
/src/sentry/tasks/derive_code_mappings.py @getsentry/issues
/src/sentry/tasks/embeddings_grouping/ @getsentry/issues
/src/sentry/tasks/groupowner.py @getsentry/issues
/src/sentry/tasks/merge.py @getsentry/issues
/src/sentry/tasks/post_process.py @getsentry/issues
/src/sentry/tasks/unmerge.py @getsentry/issues
/src/sentry/tasks/weekly_escalating_forecast.py @getsentry/issues
/static/app/components/events/contexts/ @getsentry/issues
/static/app/components/events/eventTags/ @getsentry/issues
/static/app/components/events/highlights/ @getsentry/issues
/static/app/views/issueList @getsentry/issues
/static/app/views/issueDetails/ @getsentry/issues
/static/app/views/organizationStats/teamInsights/ @getsentry/issues
/static/app/views/projects/ @getsentry/issues
/static/app/views/projectDetail/ @getsentry/issues
/static/app/views/settings/project/projectOwnership/ @getsentry/issues
/static/app/components/events/interfaces/crashContent/exception/actionableItems.tsx @getsentry/issues
/static/app/utils/analytics.tsx @getsentry/issues
/static/app/utils/routeAnalytics/ @getsentry/issues
/tests/sentry/api/test_issue_search.py @getsentry/issues
/tests/sentry/deletions/test_group.py @getsentry/issues
/tests/sentry/event_manager/ @getsentry/issues
/tests/sentry/grouping/ @getsentry/issues
/tests/sentry/search/ @getsentry/issues
/tests/sentry/tasks/test_auto_ongoing_issues.py @getsentry/issues
/tests/sentry/tasks/test_auto_remove_inbox.py @getsentry/issues
/tests/sentry/tasks/test_auto_resolve_issues.py @getsentry/issues
/tests/sentry/tasks/test_backfill_seer_grouping_records.py @getsentry/issues
/tests/sentry/tasks/test_check_new_issue_threshold_met.py @getsentry/issues
/tests/sentry/tasks/test_clear_expired_resolutions.py @getsentry/issues
/tests/sentry/tasks/test_clear_expired_rulesnoozes.py @getsentry/issues
/tests/sentry/tasks/test_clear_expired_snoozes.py @getsentry/issues
/tests/sentry/tasks/test_code_owners.py @getsentry/issues
/tests/sentry/tasks/test_commit_context.py @getsentry/issues
/tests/sentry/tasks/test_commits.py @getsentry/issues
/tests/sentry/tasks/test_delete_seer_grouping_records.py @getsentry/issues
/tests/sentry/tasks/test_derive_code_mappings.py @getsentry/issues
/tests/sentry/tasks/test_groupowner.py @getsentry/issues
/tests/sentry/tasks/test_merge.py @getsentry/issues
/tests/sentry/tasks/test_post_process.py @getsentry/issues
/tests/sentry/tasks/test_weekly_escalating_forecast.py @getsentry/issues
/tests/snuba/search/ @getsentry/issues
## End of Issues
## Billing
/src/sentry/api/endpoints/check_am2_compatibility.py @getsentry/revenue
## ML & AI
*autofix*.py @getsentry/machine-learning-ai
/src/sentry/api/endpoints/event_ai_suggested_fix.py @getsentry/machine-learning-ai
/static/app/components/events/aiSuggestedSolution/ @getsentry/machine-learning-ai
/static/app/components/events/autofix/ @getsentry/machine-learning-ai
/static/app/components/modals/autofixSetupModal.spec.tsx @getsentry/machine-learning-ai
/static/app/components/modals/autofixSetupModal.tsx @getsentry/machine-learning-ai
## End of ML & AI
## Processing
/src/sentry/processing/* @getsentry/ingest
/src/sentry/api/endpoints/project_user_reports.py @getsentry/ingest
/src/sentry/api/endpoints/event_attachments.py @getsentry/ingest
/src/sentry/api/endpoints/event_reprocessable.py @getsentry/ingest
/src/sentry/api/endpoints/project_reprocessing.py @getsentry/ingest
/src/sentry/api/endpoints/chunk.py @getsentry/ingest
/src/sentry/lang/native/ @getsentry/ingest
/src/sentry/processing/realtime_metrics/ @getsentry/ingest
/src/sentry/tasks/assemble.py @getsentry/ingest
/src/sentry/tasks/low_priority_symbolication.py @getsentry/ingest
/src/sentry/tasks/symbolication.py @getsentry/ingest
/tests/sentry/tasks/test_low_priority_symbolication.py @getsentry/ingest
/src/sentry/tasks/reprocessing.py @getsentry/ingest
/src/sentry/tasks/reprocessing2.py @getsentry/ingest
/src/sentry/reprocessing2.py @getsentry/ingest
/src/sentry/tasks/store.py @getsentry/ingest
## End of Processing
## Ecosystem
/src/sentry/api/endpoints/notifications/notification_actions* @getsentry/ecosystem
/src/sentry/api/endpoints/organization_missing_org_members.py @getsentry/ecosystem
/src/sentry/tasks/invite_missing_org_members.py @getsentry/ecosystem
/static/app/components/modals/inviteMissingMembersModal/ @getsentry/ecosystem
/src/sentry/integrations/github/tasks/pr_comment.py @getsentry/ecosystem
## End of Ecosystem
## Core Product Foundations
/src/sentry/data_secrecy/ @getsentry/core-product-foundations
/tests/sentry/data_secrecy/ @getsentry/core-product-foundations
## End of Core Product Foundations