CODEOWNERS 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  1. # General ownership rules
  2. #
  3. # The following rules are not specific to any particular area of the product
  4. # and are more general
  5. ## Legal
  6. /LICENSE.md @getsentry/owners-legal
  7. ## Migrations
  8. /src/sentry/migrations/ @getsentry/owners-migrations
  9. /src/sentry/*/migrations/ @getsentry/owners-migrations
  10. ## Snuba
  11. /src/sentry/eventstream/ @getsentry/owners-snuba
  12. /src/sentry/consumers/ @getsentry/ops @getsentry/owners-snuba
  13. /src/sentry/post_process_forwarder/ @getsentry/owners-snuba
  14. /src/sentry/utils/snuba.py @getsentry/owners-snuba @getsentry/performance
  15. /src/sentry/utils/snql.py @getsentry/owners-snuba
  16. /src/sentry/utils/arroyo.py @getsentry/owners-snuba
  17. /src/sentry/utils/arroyo_producer.py @getsentry/owners-snuba
  18. /src/sentry/tsdb/snuba.py @getsentry/owners-snuba
  19. /src/sentry/tsdb/redissnuba.py @getsentry/owners-snuba
  20. /src/sentry/tagstore/snuba/ @getsentry/owners-snuba
  21. /src/sentry/sentry_metrics/ @getsentry/owners-snuba
  22. /tests/sentry/sentry_metrics/ @getsentry/owners-snuba
  23. /src/sentry/snuba/metrics/ @getsentry/owners-snuba @getsentry/telemetry-experience
  24. /src/sentry/snuba/metrics/query.py @getsentry/owners-snuba @getsentry/telemetry-experience
  25. /src/sentry/snuba/metrics_layer/ @getsentry/owners-snuba
  26. /src/sentry/search/events/datasets/metrics_layer.py @getsentry/owners-snuba
  27. ## Event Ingestion
  28. /src/sentry/attachments/ @getsentry/ingest
  29. /src/sentry/api/endpoints/relay/ @getsentry/ingest
  30. /src/sentry/api/endpoints/project_transaction_names.py @getsentry/ingest
  31. /src/sentry/coreapi.py @getsentry/ingest
  32. /src/sentry/ingest/ @getsentry/ingest
  33. /src/sentry/interfaces/ @getsentry/ingest
  34. /src/sentry/quotas/ @getsentry/ingest
  35. /src/sentry/relay/ @getsentry/ingest
  36. /src/sentry/web/api.py @getsentry/ingest
  37. /src/sentry/scripts/quotas/ @getsentry/ingest
  38. /src/sentry/scripts/tsdb/ @getsentry/ingest
  39. /src/sentry/tasks/relay.py @getsentry/ingest
  40. /tests/sentry/ingest/ @getsentry/ingest
  41. /tests/sentry/relay/ @getsentry/ingest
  42. /tests/relay_integration/ @getsentry/ingest
  43. /bin/invalidate-project-configs @getsentry/ingest
  44. ## Security
  45. /src/sentry/net/ @getsentry/security
  46. /src/sentry/auth/ @getsentry/security @getsentry/enterprise
  47. /src/sentry/api/permissions.py @getsentry/security @getsentry/enterprise
  48. /src/sentry/api/authentication.py @getsentry/security @getsentry/enterprise
  49. /src/sentry/api/endpoints/auth* @getsentry/security @getsentry/enterprise
  50. /src/sentry/api/endpoints/user_permission* @getsentry/security @getsentry/enterprise
  51. /src/sentry/web/frontend/auth_close.py @getsentry/security
  52. /src/sentry/web/frontend/auth_login.py @getsentry/security
  53. /src/sentry/web/frontend/auth_logout.py @getsentry/security
  54. /src/sentry/web/frontend/auth_organization_id_login.py @getsentry/security
  55. /src/sentry/web/frontend/auth_organization_login.py @getsentry/security
  56. /src/sentry/web/frontend/auth_provider_login.py @getsentry/security
  57. /src/sentry/web/frontend/oauth_token.py @getsentry/security
  58. /src/sentry/web/frontend/oauth_authorize.py @getsentry/security
  59. /src/sentry/web/frontend/openidtoken.py @getsentry/security
  60. ## Dev
  61. /.github/ @getsentry/owners-sentry-dev
  62. /config/hooks/ @getsentry/owners-sentry-dev
  63. /scripts/ @getsentry/owners-sentry-dev
  64. /tools/ @getsentry/owners-sentry-dev
  65. Makefile @getsentry/owners-sentry-dev
  66. .envrc @getsentry/owners-sentry-dev
  67. .pre-commit-config.yaml @getsentry/owners-sentry-dev
  68. .git-blame-ignore-revs @getsentry/owners-sentry-dev
  69. /fixtures/stubs-for-mypy @getsentry/python-typing
  70. /tools/mypy_helpers/ @getsentry/python-typing
  71. /tests/tools/mypy_helpers @getsentry/python-typing
  72. ## GitHub Routing Automations - notion.so/473791bae5bf43399d46093050b77bf0
  73. /.github/labels.yml @getsentry/open-source
  74. /.github/workflows/react-to-product-owners-yml-changes.yml @getsentry/open-source
  75. /bin/react-to-product-owners-yml-changes.py @getsentry/open-source
  76. /bin/react-to-product-owners-yml-changes.sh @getsentry/open-source
  77. /static/app/components/sidebar/index.tsx @getsentry/open-source
  78. ## Relocation - getsentry/team-ospo#153
  79. /src/sentry/api/endpoints/relocation/ @getsentry/open-source
  80. /src/sentry/backup/ @getsentry/open-source
  81. /src/sentry/runner/commands/backup.py @getsentry/open-source
  82. /src/sentry/services/hybrid-cloud/import_export/ @getsentry/open-source
  83. /src/sentry/tasks/relocation.py @getsentry/open-source
  84. /src/sentry/testutils/helpers/backups.py @getsentry/open-source
  85. /src/sentry/utils/relocation.py @getsentry/open-source
  86. /tests/sentry/api/endpoints/relocation @getsentry/open-source
  87. /tests/sentry/tasks/test_relocation.py @getsentry/open-source
  88. /tests/sentry/utils/test_relocation.py @getsentry/open-source
  89. /tests/sentry/backup/ @getsentry/open-source
  90. /tests/sentry/runner/commands/test_backup.py @getsentry/open-source
  91. ## Build & Releases
  92. /.github/workflows/release.yml @getsentry/release-approvers
  93. /scripts/bump-version.sh @getsentry/release-approvers
  94. /scripts/post-release.sh @getsentry/release-approvers
  95. /self-hosted @getsentry/release-approvers
  96. setup.cfg @getsentry/release-approvers
  97. requirements*.txt @getsentry/owners-python-build
  98. pyproject.toml @getsentry/owners-python-build
  99. .vercel.json @getsentry/owners-js-build
  100. /.githib/worksflows/frontend.yml @getsentry/owners-js-build
  101. /.github/file-filters.yml @getsentry/owners-js-build
  102. babel.config.* @getsentry/owners-js-build
  103. biome.json @getsentry/owners-js-build
  104. build-utils/ @getsentry/owners-js-build
  105. jest.config.ts @getsentry/owners-js-build
  106. tsconfig.* @getsentry/owners-js-build
  107. webpack.config.* @getsentry/owners-js-build
  108. .volta.json @getsentry/owners-js-deps
  109. package.json @getsentry/owners-js-deps
  110. yarn.lock @getsentry/owners-js-deps
  111. ## Design
  112. /static/app/icons/ @getsentry/design
  113. /static/fonts/ @getsentry/design
  114. /static/images/ @getsentry/design
  115. # Owners by product feature
  116. #
  117. # The following ownership rules are specific to particular features of the
  118. # Sentry product. These rules generally map to a signle team, but that may not
  119. # always be the case.
  120. ## Crons
  121. /static/app/views/monitors @getsentry/crons
  122. /src/sentry/monitors @getsentry/crons
  123. /tests/sentry/monitors @getsentry/crons
  124. /src/sentry/utils/monitors.py @getsentry/crons
  125. /tests/sentry/utils/test_monitors.py @getsentry/crons
  126. ## End Crons
  127. ## Hybrid Cloud
  128. /src/sentry/silo/ @getsentry/hybrid-cloud
  129. /src/sentry/hybridcloud @getsentry/hybrid-cloud
  130. /src/sentry/services/hybrid_cloud/ @getsentry/hybrid-cloud
  131. /src/sentry/middleware/api_gateway.py @getsentry/hybrid-cloud
  132. /src/sentry/middleware/customer_domain.py @getsentry/hybrid-cloud
  133. /src/sentry/middleware/subdomain.py @getsentry/hybrid-cloud
  134. /src/sentry/middleware/integration/ @getsentry/hybrid-cloud
  135. /src/sentry/api/endpoints/internal/integration_proxy.py @getsentry/hybrid-cloud
  136. /src/sentry/api/endpoints/internal/rpc.py @getsentry/hybrid-cloud
  137. /src/sentry/models/outbox.py @getsentry/hybrid-cloud
  138. /src/sentry/tasks/deliver_from_outbox.py @getsentry/hybrid-cloud
  139. /src/sentry/tasks/deletion/hybrid_cloud.py @getsentry/hybrid-cloud
  140. ## End of Hybrid Cloud
  141. ## Alerts & Notifications
  142. /static/app/views/settings/projectAlerts/ @getsentry/alerts-notifications
  143. /static/app/views/alerts/ @getsentry/alerts-notifications
  144. /static/app/views/releases/ @getsentry/alerts-notifications
  145. /src/sentry/rules/processing/delayed_processing.py @getsentry/alerts-notifications
  146. /static/app/views/settings/account/notifications/ @getsentry/alerts-notifications
  147. /src/sentry/templates/sentry/emails/incidents/ @getsentry/alerts-notifications
  148. /src/sentry/incidents/ @getsentry/alerts-notifications
  149. /tests/sentry/incidents/ @getsentry/alerts-notifications
  150. /tests/acceptance/test_incidents.py @getsentry/alerts-notifications
  151. /src/sentry/snuba/models.py @getsentry/alerts-notifications
  152. /src/sentry/snuba/query_subscriptions/ @getsentry/alerts-notifications
  153. /src/sentry/snuba/subscriptions.py @getsentry/alerts-notifications
  154. /src/sentry/snuba/tasks.py @getsentry/alerts-notifications
  155. /tests/snuba/incidents/ @getsentry/alerts-notifications
  156. /tests/sentry/snuba/test_query_subscription_consumer.py @getsentry/alerts-notifications
  157. /tests/sentry/snuba/test_subscriptions.py @getsentry/alerts-notifications
  158. /tests/sentry/snuba/test_tasks.py @getsentry/alerts-notifications
  159. /src/sentry/api/endpoints/notification_defaults.py @getsentry/alerts-notifications
  160. /src/sentry/api/endpoints/user_notification_email.py @getsentry/alerts-notifications
  161. /src/sentry/api/endpoints/user_notification_settings_options_detail.py @getsentry/alerts-notifications
  162. /src/sentry/api/endpoints/user_notification_settings_options.py @getsentry/alerts-notifications
  163. /src/sentry/api/endpoints/user_notification_settings_providers.py @getsentry/alerts-notifications
  164. /src/sentry/api/endpoints/user_notification_details.py @getsentry/alerts-notifications
  165. ## Endof Alerts & Notifications
  166. ## Performance
  167. /src/sentry/api/endpoints/organization_tags.py @getsentry/performance
  168. /src/sentry/api/endpoints/organization_events_histogram.py @getsentry/performance
  169. /tests/snuba/api/endpoints/* @getsentry/performance
  170. /tests/snuba/api/endpoints/test_organization_events_histogram.py @getsentry/performance
  171. /tests/snuba/api/endpoints/test_organization_events_facets_performance.py @getsentry/performance
  172. /tests/snuba/api/endpoints/test_organization_events_spans_performance.py @getsentry/performance
  173. /tests/snuba/api/endpoints/test_organization_events_spans_histogram.py @getsentry/performance
  174. /tests/snuba/api/endpoints/test_organization_events_trace.py @getsentry/performance
  175. /tests/snuba/api/endpoints/test_organization_events_trends.py @getsentry/performance
  176. /tests/snuba/api/endpoints/test_organization_events_vitals.py @getsentry/performance
  177. /tests/snuba/api/endpoints/test_organization_tagkey_values.py @getsentry/performance
  178. /tests/snuba/api/endpoints/test_organization_tags.py @getsentry/performance
  179. /tests/sentry/spans/ @getsentry/performance
  180. /static/app/components/events/viewHierarchy/* @getsentry/performance
  181. /src/sentry/api/serializers/snuba.py @getsentry/performance
  182. /src/sentry/snuba/discover.py @getsentry/performance
  183. /src/sentry/snuba/metrics_performance.py @getsentry/performance
  184. /src/sentry/snuba/metrics_enhanced_performance.py @getsentry/performance
  185. /src/sentry/search/events/ @getsentry/performance @getsentry/issues
  186. /tests/snuba/search/test_backend.py @getsentry/performance
  187. /static/app/utils/discover/ @getsentry/performance
  188. /static/app/components/charts/ @getsentry/performance
  189. /src/sentry/api/endpoints/organization_events_facets_performance.py @getsentry/performance
  190. /src/sentry/api/endpoints/organization_events_spans_performance.py @getsentry/performance
  191. /src/sentry/api/endpoints/organization_events_spans_histogram.py @getsentry/performance
  192. /src/sentry/api/endpoints/organization_events_trace.py @getsentry/performance
  193. /src/sentry/api/endpoints/organization_events_trends.py @getsentry/performance
  194. /src/sentry/api/endpoints/organization_events_trends_v2.py @getsentry/performance
  195. /src/sentry/api/endpoints/organization_events_vitals.py @getsentry/performance
  196. /src/sentry/api/endpoints/organization_transaction_anomaly_detection.py @getsentry/data
  197. /src/sentry/utils/performance_issues/ @getsentry/performance
  198. /src/sentry/spans/ @getsentry/performance
  199. /static/app/views/traces/ @getsentry/performance
  200. /static/app/views/performance/ @getsentry/performance
  201. /static/app/utils/performance/ @getsentry/performance
  202. /static/app/components/events/interfaces/spans/ @getsentry/performance
  203. /static/app/components/performance/ @getsentry/performance
  204. /static/app/components/quickTrace/ @getsentry/performance
  205. static/app/components/events/eventStatisticalDetector/ @getsentry/performance @getsentry/profiling
  206. /src/sentry/statistical_detectors @getsentry/performance @getsentry/profiling
  207. /src/sentry/tasks/statistical_detectors.py @getsentry/performance @getsentry/profiling
  208. /tests/sentry/statistical_detectors @getsentry/performance @getsentry/profiling
  209. /tests/sentry/tasks/test_statistical_detectors.py @getsentry/performance @getsentry/profiling
  210. /src/sentry/api/endpoints/organization_dashboards.py @getsentry/performance
  211. /src/sentry/api/endpoints/organization_dashboard_details.py @getsentry/performance
  212. /src/sentry/api/endpoints/organization_dashboard_widget_details.py @getsentry/performance
  213. /src/sentry/api/bases/organization_events.py @getsentry/performance
  214. /src/sentry/api/endpoints/organization_event_details.py @getsentry/performance
  215. /src/sentry/api/endpoints/organization_events.py @getsentry/performance
  216. /src/sentry/api/endpoints/organization_events_facets.py @getsentry/performance
  217. /src/sentry/api/endpoints/organization_events_meta.py @getsentry/performance
  218. /src/sentry/api/endpoints/organization_events_stats.py @getsentry/performance
  219. /src/sentry/api/endpoints/organization_measurements_meta.py @getsentry/performance
  220. /src/sentry/api/serializers/models/dashboard.py @getsentry/performance
  221. /src/sentry/api/serializers/models/discoversavedquery.py @getsentry/performance
  222. /src/sentry/api/serializers/rest_framework/dashboard.py @getsentry/performance
  223. /src/sentry/discover/ @getsentry/performance
  224. /tests/sentry/snuba/test_discover.py @getsentry/performance
  225. /src/sentry/api/event_search.py @getsentry/performance
  226. /tests/sentry/api/test_event_search.py @getsentry/performance
  227. /src/sentry/data_export/ @getsentry/performance
  228. /tests/sentry/data_export/ @getsentry/performance
  229. /static/app/views/eventsV2/ @getsentry/performance
  230. /static/app/views/discover/ @getsentry/performance
  231. /static/app/views/dashboardsV2/ @getsentry/performance
  232. /static/app/components/dashboards/ @getsentry/performance
  233. /src/sentry/api/endpoints/organization_events_facets_stats_performance.py @getsentry/performance
  234. /src/sentry/api/endpoints/organization_spans_aggregation.py @getsentry/performance
  235. /src/sentry/api/endpoints/organization_events_starfish.py @getsentry/performance
  236. /tests/snuba/api/endpoints/test_organization_events_facets_stats_performance.py @getsentry/performance
  237. /src/sentry/api/endpoints/organization_spans_fields.py @getsentry/performance
  238. /tests/sentry/api/endpoints/test_organization_spans_fields.py @getsentry/performance
  239. /src/sentry/api/endpoints/organization_traces.py @getsentry/performance
  240. /tests/sentry/api/endpoints/test_organization_traces.py @getsentry/performance
  241. /static/app/views/insights/ @getsentry/performance
  242. ## Endof Performance
  243. ## Profiling
  244. /static/app/components/profiling @getsentry/profiling
  245. /static/app/types/jsSelfProfiling.d.ts @getsentry/profiling
  246. /static/app/types/profiling.d.ts @getsentry/profiling
  247. /static/app/utils/profiling @getsentry/profiling
  248. /static/app/views/profiling @getsentry/profiling
  249. /src/sentry/utils/profiling.py @getsentry/profiling
  250. /src/sentry/api/endpoints/project_profiling_profile.py @getsentry/profiling
  251. /src/sentry/api/endpoints/organization_profiling_profiles.py @getsentry/profiling
  252. /src/sentry/profiles @getsentry/profiling
  253. /tests/sentry/profiles @getsentry/profiling
  254. /tests/sentry/api/endpoints/test_project_profiling_profile.py @getsentry/profiling
  255. /tests/sentry/api/endpoints/test_organization_profiling_profiles.py @getsentry/profiling
  256. ## End of Profiling
  257. ## Configurations
  258. /src/sentry/remote_config/ @getsentry/replay-backend
  259. /tests/sentry/remote_config/ @getsentry/replay-backend
  260. ## End of Configurations
  261. ## Replays
  262. /static/app/components/replays/ @getsentry/replay-frontend
  263. /static/app/utils/replays/ @getsentry/replay-frontend
  264. /static/app/views/replays/ @getsentry/replay-frontend
  265. /src/sentry/replays/ @getsentry/replay-backend
  266. /tests/sentry/replays/ @getsentry/replay-backend
  267. ## End of Replays
  268. ## Feedback v2
  269. /static/app/components/feedback/ @getsentry/feedback-frontend
  270. /static/app/utils/feedback/ @getsentry/feedback-frontend
  271. /static/app/views/feedback/ @getsentry/feedback-frontend
  272. /src/sentry/feedback/ @getsentry/feedback-backend
  273. /tests/sentry/feedback/ @getsentry/feedback-backend
  274. ## End of Feedback v2
  275. ## Integrations
  276. /src/sentry/api/endpoints/integrations/ @getsentry/product-owners-settings-integrations
  277. /src/sentry/api/endpoints/organization_integration_repos.py @getsentry/ecosystem
  278. /src/sentry/api/endpoints/sentry_app/ @getsentry/product-owners-settings-integrations
  279. /src/sentry/api/endpoints/project_rule*.py @getsentry/alerts-notifications
  280. /src/sentry/api/serializers/models/rule.py @getsentry/alerts-notifications
  281. /static/app/views/organizationIntegrations @getsentry/product-owners-settings-integrations
  282. /src/sentry/digests/ @getsentry/alerts-notifications
  283. /src/sentry/identity/ @getsentry/enterprise
  284. /src/sentry/integrations/ @getsentry/product-owners-settings-integrations
  285. /src/sentry/mail/ @getsentry/alerts-notifications
  286. /src/sentry/notifications/ @getsentry/alerts-notifications
  287. /src/sentry/pipeline/ @getsentry/ecosystem
  288. /src/sentry/plugins/ @getsentry/ecosystem
  289. /src/sentry/shared_integrations/ @getsentry/ecosystem
  290. /src/sentry/models/externalactor.py @getsentry/ecosystem
  291. /src/sentry/models/externalissue.py @getsentry/ecosystem
  292. /src/sentry/models/identity.py @getsentry/enterprise
  293. /src/sentry/models/integrations/ @getsentry/product-owners-settings-integrations
  294. /src/sentry/tasks/digests.py @getsentry/alerts-notifications
  295. /src/sentry/tasks/email.py @getsentry/alerts-notifications
  296. /src/sentry/tasks/integrations/ @getsentry/ecosystem
  297. /src/sentry/tasks/user_report.py @getsentry/alerts-notifications
  298. /src/sentry/tasks/weekly_reports.py @getsentry/alerts-notifications
  299. /src/sentry_plugins/ @getsentry/product-owners-settings-integrations
  300. # To find matching files -> find . -name "*sentry_app*.py"
  301. *sentry_app*.py @getsentry/product-owners-settings-integrations
  302. *sentryapp*.py @getsentry/product-owners-settings-integrations
  303. *doc_integration*.py @getsentry/ecosystem
  304. *docintegration*.py @getsentry/ecosystem
  305. ## End of Integrations
  306. ## Data
  307. /src/sentry/models/featureadoption.py @getsentry/data
  308. /src/sentry/models/group.py @getsentry/data
  309. /src/sentry/models/grouphash.py @getsentry/data
  310. /src/sentry/models/grouprelease.py @getsentry/data
  311. /src/sentry/models/groupresolution.py @getsentry/data
  312. /src/sentry/models/organization.py @getsentry/data
  313. /src/sentry/models/organizationmember.py @getsentry/data
  314. /src/sentry/models/organizationoption.py @getsentry/data
  315. /src/sentry/models/project.py @getsentry/data @getsentry/telemetry-experience
  316. /src/sentry/models/projectoption.py @getsentry/data
  317. /src/sentry/models/release.py @getsentry/data
  318. /src/sentry/models/user.py @getsentry/data
  319. ## End of Data
  320. ## Enterprise
  321. /src/sentry/api/endpoints/oauth_userinfo.py @getsentry/enterprise
  322. /src/sentry/api/endpoints/organization_auditlogs.py @getsentry/enterprise
  323. /src/sentry/api/endpoints/organization_projects_experiment.py @getsentry/enterprise
  324. /src/sentry/api/endpoints/organization_stats*.py @getsentry/enterprise
  325. /src/sentry/api/endpoints/release_threshold*.py @getsentry/enterprise
  326. /src/sentry/api/endpoints/user_social_identity* @getsentry/enterprise
  327. /src/sentry/auth/staff.py @getsentry/enterprise
  328. /src/sentry/auth/superuser.py @getsentry/enterprise
  329. /src/sentry/middleware/staff.py @getsentry/enterprise
  330. /src/sentry/middleware/superuser.py @getsentry/enterprise
  331. /src/sentry/models/release_threshold @getsentry/enterprise
  332. /src/sentry/scim/ @getsentry/enterprise
  333. /src/sentry/tasks/integrations/github/ @getsentry/enterprise
  334. /src/sentry/web/frontend/auth_login.py @getsentry/enterprise
  335. /static/app/components/superuserStaffAccessForm.tsx @getsentry/enterprise
  336. /static/app/constants/superuserAccessErrors.tsx @getsentry/enterprise
  337. /static/app/views/organizationStats @getsentry/enterprise
  338. /static/app/views/settings/organizationAuth/ @getsentry/enterprise
  339. /static/app/views/settings/organizationMembers/inviteBanner.tsx @getsentry/enterprise
  340. /tests/sentry/api/endpoints/test_auth*.py @getsentry/enterprise
  341. /tests/sentry/api/endpoints/test_organization_projects_experiment.py @getsentry/enterprise
  342. /tests/sentry/api/test_data_secrecy.py @getsentry/enterprise
  343. /tests/sentry/api/test_scim*.py @getsentry/enterprise
  344. /tests/sentry/auth/test_staff.py @getsentry/enterprise
  345. /tests/sentry/auth/test_superuser.py @getsentry/enterprise
  346. /tests/sentry/middleware/test_staff.py @getsentry/enterprise
  347. /tests/sentry/tasks/integrations/github/ @getsentry/enterprise
  348. /tests/sentry/models/releases/ @getsentry/alerts-notifications
  349. ## End of Enterprise
  350. ## APIs
  351. /src/sentry/apidocs/ @getsentry/owners-api
  352. /src/sentry/api/urls.py @getsentry/owners-api
  353. /api-docs/ @getsentry/owners-api
  354. /tests/apidocs/ @getsentry/owners-api
  355. /.github/workflows/openapi.yml @getsentry/owners-api
  356. /.github/workflows/openapi-diff.yml @getsentry/owners-api
  357. /src/sentry/conf/api_pagination_allowlist_do_not_modify.py @getsentry/owners-api
  358. /tests/sentry/api/test_path_params.py @getsentry/owners-api
  359. ## End of APIs
  360. ## SDK
  361. /src/sentry/utils/sdk.py @getsentry/team-web-sdk-backend
  362. /src/sentry/api/endpoints/source_map_debug_blue_thunder_edition.py @getsentry/team-web-sdk-frontend
  363. /src/sentry/web/frontend/setup_wizard.py @getsentry/team-web-sdk-frontend
  364. /src/sentry/api/endpoints/setup_wizard.py @getsentry/team-web-sdk-frontend
  365. ## End of SDK
  366. ## Telemetry Experience
  367. /src/sentry/api/endpoints/organization_ddm.py @getsentry/telemetry-experience
  368. /tests/sentry/api/endpoints/test_organization_ddm_meta.py @getsentry/telemetry-experience
  369. /src/sentry/api/endpoints/organization_metric* @getsentry/telemetry-experience
  370. /tests/sentry/api/endpoints/test_organization_metric* @getsentry/telemetry-experience
  371. /src/sentry/api/endpoints/organization_sessions.py @getsentry/telemetry-experience
  372. /tests/snuba/api/endpoints/test_organization_sessions.py @getsentry/telemetry-experience
  373. /src/sentry/api/endpoints/projects_metrics.py @getsentry/telemetry-experience
  374. /tests/sentry/api/endpoints/test_projects_metrics_visibility.py @getsentry/telemetry-experience
  375. /src/sentry/api/endpoints/organization_onboarding* @getsentry/telemetry-experience
  376. /tests/sentry/api/endpoints/test_organization_onboarding* @getsentry/telemetry-experience
  377. /src/sentry/api/endpoints/project_metrics_extraction_rules* @getsentry/telemetry-experience
  378. /tests/sentry/api/endpoints/test_project_metrics_extraction_rules.py @getsentry/telemetry-experience
  379. /src/sentry/dynamic_sampling/ @getsentry/telemetry-experience
  380. /tests/sentry/dynamic_sampling/ @getsentry/telemetry-experience
  381. /src/sentry/release_health/metrics_sessions_v2.py @getsentry/telemetry-experience
  382. /tests/sentry/release_health/test_metrics_sessions_v2.py @getsentry/telemetry-experience
  383. /src/sentry/utils/platform_categories.py @getsentry/telemetry-experience
  384. /src/sentry/sentry_metrics/querying/ @getsentry/telemetry-experience
  385. /tests/sentry/sentry_metrics/querying/ @getsentry/telemetry-experience
  386. /src/sentry/sentry_metrics/visibility/ @getsentry/telemetry-experience
  387. /tests/sentry/sentry_metrics/visibility/ @getsentry/telemetry-experience
  388. /src/sentry/snuba/metrics/ @getsentry/telemetry-experience
  389. /tests/sentry/snuba/metrics/ @getsentry/telemetry-experience
  390. /src/sentry/relay/config/metric_extraction.py @getsentry/telemetry-experience
  391. /tests/sentry/relay/config/test_metric_extraction.py @getsentry/telemetry-experience
  392. /static/app/actionCreators/metrics.spec.tsx @getsentry/telemetry-experience
  393. /static/app/actionCreators/metrics.tsx @getsentry/telemetry-experience
  394. /static/app/data/platformCategories.tsx @getsentry/telemetry-experience
  395. /static/app/data/platformPickerCategories.tsx @getsentry/telemetry-experience
  396. /static/app/data/platforms.tsx @getsentry/telemetry-experience
  397. /static/app/gettingStartedDocs/ @getsentry/telemetry-experience
  398. /static/app/types/metrics.tsx @getsentry/telemetry-experience
  399. /static/app/types/project.tsx @getsentry/telemetry-experience
  400. /static/app/utils/metrics/ @getsentry/telemetry-experience
  401. /static/app/views/metrics/ @getsentry/telemetry-experience
  402. /static/app/views/performance/landing/dynamicSamplingMetricsAccuracy.spec.tsx @getsentry/telemetry-experience
  403. /static/app/views/performance/landing/dynamicSamplingMetricsAccuracyAlert.tsx @getsentry/telemetry-experience
  404. /static/app/views/settings/project/dynamicSampling/ @getsentry/telemetry-experience
  405. /static/app/views/settings/projectMetrics/* @getsentry/telemetry-experience
  406. /static/app/views/onboarding* @getsentry/telemetry-experience
  407. /static/app/components/metrics/ @getsentry/telemetry-experience
  408. /static/app/components/modals/metricWidgetViewerModal* @getsentry/telemetry-experience
  409. /static/app/views/dashboards/metrics/ @getsentry/telemetry-experience
  410. ## End of Telemetry Experience
  411. ## Issues
  412. **/issues/** @getsentry/issues
  413. *code_mappings*.py @getsentry/issues
  414. /src/sentry/api/helpers/events.py @getsentry/issues
  415. /src/sentry/api/helpers/group_index/ @getsentry/issues
  416. /src/sentry/api/helpers/source_map_helper.py @getsentry/issues
  417. /src/sentry/api/helpers/actionable_items_helper.py @getsentry/issues
  418. /src/sentry/api/issue_search.py @getsentry/issues
  419. /src/sentry/event_manager.py @getsentry/issues
  420. /src/sentry/grouping/ @getsentry/issues
  421. /src/sentry/mediators/ @getsentry/issues
  422. /src/sentry/middleware/ratelimit.py @getsentry/issues
  423. /src/sentry/middleware/access_log.py @getsentry/issues
  424. /src/sentry/ratelimits/ @getsentry/issues
  425. /src/sentry/tasks/auto_remove_inbox.py @getsentry/issues
  426. /src/sentry/tasks/auto_resolve_issues.py @getsentry/issues
  427. /src/sentry/tasks/codeowners/ @getsentry/issues
  428. /src/sentry/tasks/commits.py @getsentry/issues
  429. /src/sentry/tasks/commit_context.py @getsentry/issues
  430. /src/sentry/tasks/post_process.py @getsentry/issues
  431. /src/sentry/tasks/unmerge.py @getsentry/issues
  432. /src/sentry/search/snuba/ @getsentry/issues
  433. /static/app/components/events/contexts/ @getsentry/issues
  434. /static/app/components/events/eventTags/ @getsentry/issues
  435. /static/app/components/events/highlights/ @getsentry/issues
  436. /static/app/views/issueList @getsentry/issues
  437. /static/app/views/issueDetails/ @getsentry/issues
  438. /static/app/views/organizationStats/teamInsights/ @getsentry/issues
  439. /static/app/views/projects/ @getsentry/issues
  440. /static/app/views/projectDetail/ @getsentry/issues
  441. /static/app/views/settings/project/projectOwnership/ @getsentry/issues
  442. /static/app/components/events/interfaces/crashContent/exception/actionableItems.tsx @getsentry/issues
  443. /static/app/utils/analytics.tsx @getsentry/issues
  444. /static/app/utils/routeAnalytics/ @getsentry/issues
  445. /tests/sentry/api/test_issue_search.py @getsentry/issues
  446. /tests/sentry/event_manager/ @getsentry/issues
  447. /tests/sentry/grouping/ @getsentry/issues
  448. /tests/sentry/search/ @getsentry/issues
  449. /tests/sentry/tasks/test_post_process.py @getsentry/issues
  450. /tests/snuba/search/ @getsentry/issues
  451. ## End of Issues
  452. ## Billing
  453. /src/sentry/api/endpoints/check_am2_compatibility.py @getsentry/revenue
  454. ## ML & AI
  455. *autofix*.py @getsentry/machine-learning-ai
  456. /src/sentry/api/endpoints/event_ai_suggested_fix.py @getsentry/machine-learning-ai
  457. /static/app/components/events/aiSuggestedSolution/ @getsentry/machine-learning-ai
  458. /static/app/components/events/autofix/ @getsentry/machine-learning-ai
  459. /static/app/components/modals/autofixSetupModal.spec.tsx @getsentry/machine-learning-ai
  460. /static/app/components/modals/autofixSetupModal.tsx @getsentry/machine-learning-ai
  461. ## End of ML & AI
  462. ## Processing
  463. /src/sentry/processing/* @getsentry/processing
  464. /src/sentry/api/endpoints/project_user_reports.py @getsentry/processing
  465. /src/sentry/api/endpoints/event_attachments.py @getsentry/processing
  466. /src/sentry/api/endpoints/event_reprocessable.py @getsentry/processing
  467. /src/sentry/api/endpoints/project_reprocessing.py @getsentry/processing
  468. /src/sentry/api/endpoints/chunk.py @getsentry/processing
  469. /src/sentry/api/endpoints/project_app_store_connect_credentials.py @getsentry/processing
  470. /src/sentry/lang/native/ @getsentry/processing
  471. /src/sentry/processing/realtime_metrics/ @getsentry/processing
  472. /src/sentry/tasks/app_store_connect.py @getsentry/processing
  473. /src/sentry/tasks/assemble.py @getsentry/processing
  474. /src/sentry/tasks/low_priority_symbolication.py @getsentry/processing
  475. /src/sentry/tasks/symbolication.py @getsentry/processing
  476. /src/sentry/utils/appleconnect/ @getsentry/processing
  477. /tests/sentry/tasks/test_low_priority_symbolication.py @getsentry/processing
  478. /src/sentry/tasks/reprocessing.py @getsentry/processing
  479. /src/sentry/tasks/reprocessing2.py @getsentry/processing
  480. /src/sentry/reprocessing2.py @getsentry/processing
  481. /src/sentry/tasks/store.py @getsentry/processing
  482. ## End of Processing
  483. ## Ecosystem
  484. /src/sentry/api/endpoints/notifications/notification_actions* @getsentry/ecosystem
  485. /src/sentry/api/endpoints/organization_missing_org_members.py @getsentry/ecosystem
  486. /src/sentry/tasks/invite_missing_org_members.py @getsentry/ecosystem
  487. /static/app/components/modals/inviteMissingMembersModal/ @getsentry/ecosystem
  488. /src/sentry/tasks/integrations/github/pr_comment.py @getsentry/ecosystem
  489. ## End of Ecosystem