CODEOWNERS 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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 @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/owners-snuba
  13. /src/sentry/post_process_forwarder/ @getsentry/owners-snuba
  14. /src/sentry/utils/snuba.py @getsentry/owners-snuba @getsentry/discover-n-dashboards
  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/search/events/datasets/metrics_layer.py @getsentry/owners-snuba
  26. ## Event Ingestion
  27. /src/sentry/attachments/ @getsentry/owners-ingest
  28. /src/sentry/api/endpoints/relay/ @getsentry/owners-ingest
  29. /src/sentry/api/endpoints/project_transaction_names.py @getsentry/owners-ingest
  30. /src/sentry/coreapi.py @getsentry/owners-ingest
  31. /src/sentry/ingest/ @getsentry/owners-ingest
  32. /src/sentry/interfaces/ @getsentry/owners-ingest
  33. /src/sentry/message_filters.py @getsentry/owners-ingest
  34. /src/sentry/quotas/ @getsentry/owners-ingest
  35. /src/sentry/relay/ @getsentry/owners-ingest
  36. /src/sentry/utils/data_filters.py @getsentry/owners-ingest
  37. /src/sentry/web/api.py @getsentry/owners-ingest
  38. /src/sentry/scripts/quotas/ @getsentry/owners-ingest
  39. /src/sentry/scripts/tsdb/ @getsentry/owners-ingest
  40. /src/sentry/tasks/relay.py @getsentry/owners-ingest
  41. /src/sentry/tasks/unmerge.py @getsentry/owners-ingest
  42. /tests/sentry/event_manager/ @getsentry/owners-ingest
  43. /tests/sentry/ingest/ @getsentry/owners-ingest
  44. /tests/sentry/relay/ @getsentry/owners-ingest
  45. /tests/relay_integration/ @getsentry/owners-ingest
  46. /bin/invalidate-project-configs @getsentry/owners-ingest
  47. ## Security
  48. /src/sentry/net/ @getsentry/security
  49. /src/sentry/auth/ @getsentry/security @getsentry/enterprise
  50. /src/sentry/api/permissions.py @getsentry/security @getsentry/enterprise
  51. /src/sentry/api/authentication.py @getsentry/security @getsentry/enterprise
  52. /src/sentry/api/endpoints/auth* @getsentry/security @getsentry/enterprise
  53. /src/sentry/api/endpoints/user_permission* @getsentry/security @getsentry/enterprise
  54. /src/sentry/web/frontend/auth_close.py @getsentry/security
  55. /src/sentry/web/frontend/auth_login.py @getsentry/security
  56. /src/sentry/web/frontend/auth_logout.py @getsentry/security
  57. /src/sentry/web/frontend/auth_organization_id_login.py @getsentry/security
  58. /src/sentry/web/frontend/auth_organization_login.py @getsentry/security
  59. /src/sentry/web/frontend/auth_provider_login.py @getsentry/security
  60. /src/sentry/web/frontend/oauth_token.py @getsentry/security
  61. /src/sentry/web/frontend/oauth_authorize.py @getsentry/security
  62. /src/sentry/web/frontend/openidtoken.py @getsentry/security
  63. ## Dev
  64. /.github/ @getsentry/owners-sentry-dev
  65. /config/hooks/ @getsentry/owners-sentry-dev
  66. /scripts/ @getsentry/owners-sentry-dev
  67. /tools/ @getsentry/owners-sentry-dev
  68. Makefile @getsentry/owners-sentry-dev
  69. .envrc @getsentry/owners-sentry-dev
  70. .pre-commit-config.yaml @getsentry/owners-sentry-dev
  71. .git-blame-ignore-revs @getsentry/owners-sentry-dev
  72. /fixtures/stubs-for-mypy @getsentry/python-typing
  73. /tools/mypy_helpers/ @getsentry/python-typing
  74. /tests/tools/mypy_helpers @getsentry/python-typing
  75. ## GitHub Routing Automations - notion.so/473791bae5bf43399d46093050b77bf0
  76. /.github/labels.yml @getsentry/open-source
  77. /.github/workflows/react-to-product-owners-yml-changes.yml @getsentry/open-source
  78. /bin/react-to-product-owners-yml-changes.py @getsentry/open-source
  79. /bin/react-to-product-owners-yml-changes.sh @getsentry/open-source
  80. /static/app/components/sidebar/index.tsx @getsentry/open-source
  81. ## Relocation - getsentry/team-ospo#153
  82. /src/sentry/backup/ @getsentry/open-source
  83. /src/sentry/testutils/helpers/backups.py @getsentry/open-source
  84. /src/sentry/runner/commands/backup.py @getsentry/open-source
  85. /src/sentry/testutils/helpers/backups.py @getsentry/open-source
  86. ## Build & Releases
  87. /.github/workflows/release.yml @getsentry/release-approvers
  88. /scripts/bump-version.sh @getsentry/release-approvers
  89. /scripts/post-release.sh @getsentry/release-approvers
  90. /self-hosted @getsentry/release-approvers
  91. setup.py @getsentry/release-approvers
  92. setup.cfg @getsentry/release-approvers
  93. requirements*.txt @getsentry/owners-python-build
  94. pyproject.toml @getsentry/owners-python-build
  95. tsconfig.* @getsentry/owners-js-build
  96. webpack.config.* @getsentry/owners-js-build
  97. babel.config.* @getsentry/owners-js-build
  98. build-utils/ @getsentry/owners-js-build
  99. package.json @getsentry/owners-js-deps
  100. yarn.lock @getsentry/owners-js-deps
  101. ## Design
  102. /static/app/icons/ @getsentry/design
  103. /static/fonts/ @getsentry/design
  104. /static/images/ @getsentry/design
  105. # Owners by product feature
  106. #
  107. # The following ownership rules are specific to particular features of the
  108. # Sentry product. These rules generally map to a signle team, but that may not
  109. # always be the case.
  110. ## Crons
  111. /static/app/views/monitors @getsentry/crons
  112. /src/sentry/monitors @getsentry/crons
  113. /tests/sentry/monitors @getsentry/crons
  114. /src/sentry/utils/monitors.py @getsentry/crons
  115. /tests/sentry/utils/test_monitors.py @getsentry/crons
  116. ## End Crons
  117. ## Hybrid Cloud
  118. /src/sentry/silo/ @getsentry/hybrid-cloud
  119. /src/sentry/services/hybrid_cloud/ @getsentry/hybrid-cloud
  120. /src/sentry/api_gateway/ @getsentry/hybrid-cloud
  121. /src/sentry/middleware/api_gateway.py @getsentry/hybrid-cloud
  122. /src/sentry/middleware/customer_domain.py @getsentry/hybrid-cloud
  123. /src/sentry/middleware/subdomain.py @getsentry/hybrid-cloud
  124. /src/sentry/middleware/integration/ @getsentry/hybrid-cloud
  125. /src/sentry/api/endpoints/rpc.py @getsentry/hybrid-cloud
  126. ## End of Hybrid Cloud
  127. ## Workflow
  128. /static/app/views/settings/projectAlerts/ @getsentry/issues
  129. /static/app/views/alerts/ @getsentry/issues
  130. /static/app/views/issueDetails/ @getsentry/issues
  131. /static/app/views/projects/ @getsentry/issues
  132. /static/app/views/projectDetail/ @getsentry/issues
  133. /static/app/views/releases/ @getsentry/issues
  134. /static/app/views/organizationStats/teamInsights/ @getsentry/issues
  135. /src/sentry/templates/sentry/emails/incidents/ @getsentry/issues
  136. /src/sentry/incidents/ @getsentry/issues
  137. /tests/sentry/incidents/ @getsentry/issues
  138. /tests/acceptance/test_incidents.py @getsentry/issues
  139. /src/sentry/api/endpoints/group_events.py @getsentry/issues
  140. /src/sentry/api/endpoints/organization_group_index.py @getsentry/issues
  141. /src/sentry/api/endpoints/organization_activity.py @getsentry/issues
  142. /src/sentry/api/endpoints/organization_searches.py @getsentry/issues
  143. /src/sentry/api/helpers/group_index.py @getsentry/issues
  144. /src/sentry/api/helpers/events.py @getsentry/issues
  145. /src/sentry/snuba/models.py @getsentry/issues
  146. /src/sentry/snuba/query_subscription_consumer.py @getsentry/issues
  147. /src/sentry/snuba/subscriptions.py @getsentry/issues
  148. /tests/snuba/incidents/ @getsentry/issues
  149. /tests/sentry/snuba/test_query_subscription_consumer.py @getsentry/issues
  150. /tests/sentry/snuba/test_subscriptions.py @getsentry/issues
  151. /tests/sentry/snuba/test_tasks.py @getsentry/issues
  152. /tests/snuba/snuba/test_query_subscription_consumer.py @getsentry/issues
  153. /src/sentry/api/issue_search.py @getsentry/issues
  154. /tests/sentry/api/test_issue_search.py @getsentry/issues
  155. /src/sentry/tasks/auto_remove_inbox.py @getsentry/issues
  156. /src/sentry/tasks/auto_resolve_issues.py @getsentry/issues
  157. ## Endof Workflow
  158. ## Visibility
  159. /src/sentry/api/endpoints/organization_tags.py @getsentry/performance
  160. /src/sentry/api/endpoints/organization_events_histogram.py @getsentry/performance
  161. /tests/snuba/api/endpoints/* @getsentry/discover-n-dashboards
  162. /tests/snuba/api/endpoints/test_organization_events_histogram.py @getsentry/performance
  163. /tests/snuba/api/endpoints/test_organization_events_facets_performance.py @getsentry/performance
  164. /tests/snuba/api/endpoints/test_organization_events_spans_performance.py @getsentry/performance
  165. /tests/snuba/api/endpoints/test_organization_events_spans_histogram.py @getsentry/performance
  166. /tests/snuba/api/endpoints/test_organization_events_trace.py @getsentry/performance
  167. /tests/snuba/api/endpoints/test_organization_events_trends.py @getsentry/performance
  168. /tests/snuba/api/endpoints/test_organization_events_vitals.py @getsentry/performance
  169. /tests/snuba/api/endpoints/test_organization_tagkey_values.py @getsentry/performance
  170. /tests/snuba/api/endpoints/test_organization_tags.py @getsentry/performance
  171. /src/sentry/api/serializers/snuba.py @getsentry/discover-n-dashboards
  172. /src/sentry/snuba/discover.py @getsentry/discover-n-dashboards
  173. /src/sentry/snuba/metrics_performance.py @getsentry/discover-n-dashboards
  174. /src/sentry/snuba/metrics_enhanced_performance.py @getsentry/discover-n-dashboards
  175. /src/sentry/search/events/ @getsentry/discover-n-dashboards @getsentry/issues
  176. /tests/snuba/search/test_backend.py @getsentry/discover-n-dashboards
  177. /static/app/utils/discover/ @getsentry/discover-n-dashboards
  178. /static/app/components/charts/ @getsentry/discover-n-dashboards
  179. ## Endof Visibility
  180. ## Performance
  181. /src/sentry/api/endpoints/organization_events_facets_performance.py @getsentry/performance
  182. /src/sentry/api/endpoints/organization_events_spans_performance.py @getsentry/performance
  183. /src/sentry/api/endpoints/organization_events_spans_histogram.py @getsentry/performance
  184. /src/sentry/api/endpoints/organization_events_trace.py @getsentry/performance
  185. /src/sentry/api/endpoints/organization_events_trends.py @getsentry/performance
  186. /src/sentry/api/endpoints/organization_events_trends_v2.py @getsentry/performance
  187. /src/sentry/api/endpoints/organization_events_vitals.py @getsentry/performance
  188. /src/sentry/api/endpoints/organization_transaction_anomaly_detection.py @getsentry/data
  189. /src/sentry/utils/performance_issues/ @getsentry/performance
  190. /static/app/views/performance/ @getsentry/performance
  191. /static/app/utils/performance/ @getsentry/performance
  192. /static/app/components/events/interfaces/spans/ @getsentry/performance
  193. /static/app/components/performance/ @getsentry/performance
  194. /static/app/components/quickTrace/ @getsentry/performance
  195. ## Endof Performance
  196. ## Discover/Dashboards
  197. /src/sentry/api/endpoints/organization_dashboards.py @getsentry/discover-n-dashboards
  198. /src/sentry/api/endpoints/organization_dashboard_details.py @getsentry/discover-n-dashboards
  199. /src/sentry/api/endpoints/organization_dashboard_widget_details.py @getsentry/discover-n-dashboards
  200. /src/sentry/api/bases/organization_events.py @getsentry/discover-n-dashboards
  201. /src/sentry/api/endpoints/organization_event_details.py @getsentry/discover-n-dashboards
  202. /src/sentry/api/endpoints/organization_events.py @getsentry/discover-n-dashboards
  203. /src/sentry/api/endpoints/organization_events_facets.py @getsentry/discover-n-dashboards
  204. /src/sentry/api/endpoints/organization_events_meta.py @getsentry/discover-n-dashboards
  205. /src/sentry/api/endpoints/organization_events_stats.py @getsentry/discover-n-dashboards
  206. /src/sentry/api/endpoints/organization_measurements_meta.py @getsentry/discover-n-dashboards
  207. /src/sentry/api/serializers/models/dashboard.py @getsentry/discover-n-dashboards
  208. /src/sentry/api/serializers/models/discoversavedquery.py @getsentry/discover-n-dashboards
  209. /src/sentry/api/serializers/rest_framework/dashboard.py @getsentry/discover-n-dashboards
  210. /src/sentry/discover/ @getsentry/discover-n-dashboards
  211. /tests/sentry/snuba/test_discover.py @getsentry/discover-n-dashboards
  212. /src/sentry/api/event_search.py @getsentry/discover-n-dashboards
  213. /tests/sentry/api/test_event_search.py @getsentry/discover-n-dashboards
  214. /src/sentry/data_export/ @getsentry/discover-n-dashboards
  215. /tests/sentry/data_export/ @getsentry/discover-n-dashboards
  216. /static/app/views/eventsV2/ @getsentry/discover-n-dashboards
  217. /static/app/views/discover/ @getsentry/discover-n-dashboards
  218. /static/app/views/dashboardsV2/ @getsentry/discover-n-dashboards
  219. /static/app/components/dashboards/ @getsentry/discover-n-dashboards
  220. ## Endof Discover/Dashboards
  221. ## Starfish
  222. /src/sentry/api/endpoints/organization_events_facets_stats_performance.py @getsentry/team-starfish
  223. /src/sentry/api/endpoints/organization_events_starfish.py @getsentry/team-starfish
  224. /tests/snuba/api/endpoints/test_organization_events_facets_stats_performance.py @getsentry/team-starfish
  225. /static/app/views/starfish/ @getsentry/team-starfish
  226. ## Endof Starfish
  227. ## Profiling
  228. /static/app/components/profiling @getsentry/profiling
  229. /static/app/types/jsSelfProfiling.d.ts @getsentry/profiling
  230. /static/app/types/profiling.d.ts @getsentry/profiling
  231. /static/app/utils/profiling @getsentry/profiling
  232. /static/app/views/profiling @getsentry/profiling
  233. /src/sentry/utils/profiling.py @getsentry/profiling
  234. /src/sentry/api/endpoints/project_profiling_profile.py @getsentry/profiling
  235. /src/sentry/api/endpoints/organization_profiling_profiles.py @getsentry/profiling
  236. /src/sentry/profiles @getsentry/profiling
  237. /tests/sentry/profiles @getsentry/profiling
  238. /tests/sentry/api/endpoints/test_project_profiling_profile.py @getsentry/profiling
  239. /tests/sentry/api/endpoints/test_organization_profiling_profiles.py @getsentry/profiling
  240. ## End of Profiling
  241. ## Replays
  242. /static/app/components/replays/ @getsentry/replay-frontend
  243. /static/app/utils/replays/ @getsentry/replay-frontend
  244. /static/app/views/replays/ @getsentry/replay-frontend
  245. /src/sentry/replays/ @getsentry/replay-backend
  246. /tests/sentry/replays/ @getsentry/replay-backend
  247. ## End of Replays
  248. ## Integrations
  249. /src/sentry/api/endpoints/integrations/ @getsentry/issues
  250. /src/sentry/api/endpoints/project_stacktrace_link.py @getsentry/issues
  251. /src/sentry/api/endpoints/organization_integration_repos.py @getsentry/issues
  252. /src/sentry/api/endpoints/organization_release_previous_commits.py @getsentry/issues
  253. /src/sentry/api/endpoints/sentry_app/ @getsentry/issues
  254. /src/sentry/api/endpoints/project_rule*.py @getsentry/issues
  255. /static/app/views/organizationIntegrations @getsentry/issues
  256. /static/app/views/settings/project/projectOwnership/ @getsentry/issues
  257. /src/sentry/digests/ @getsentry/issues
  258. /src/sentry/identity/ @getsentry/issues
  259. /src/sentry/integrations/ @getsentry/issues
  260. /src/sentry/mail/ @getsentry/issues
  261. /src/sentry/mediators/ @getsentry/issues
  262. /src/sentry/notifications/ @getsentry/issues
  263. /src/sentry/pipeline/ @getsentry/issues
  264. /src/sentry/plugins/ @getsentry/issues
  265. /src/sentry/ratelimits/ @getsentry/issues
  266. /src/sentry/shared_integrations/ @getsentry/issues
  267. /src/sentry/models/externalactor.py @getsentry/issues
  268. /src/sentry/models/externalissue.py @getsentry/issues
  269. /src/sentry/models/identity.py @getsentry/issues
  270. /src/sentry/models/integrationfeature.py @getsentry/issues
  271. /src/sentry/models/integrations/ @getsentry/issues
  272. /src/sentry/models/notificationsetting.py @getsentry/issues
  273. /src/sentry/tasks/code_owners.py @getsentry/issues
  274. /src/sentry/tasks/commits.py @getsentry/issues
  275. /src/sentry/tasks/commit_context.py @getsentry/issues
  276. /src/sentry/tasks/digests.py @getsentry/issues
  277. /src/sentry/tasks/email.py @getsentry/issues
  278. /src/sentry/tasks/integrations/ @getsentry/issues
  279. /src/sentry/tasks/reports.py @getsentry/issues
  280. /src/sentry/tasks/user_report.py @getsentry/issues
  281. /src/sentry/tasks/weekly_reports.py @getsentry/issues
  282. /src/sentry_plugins/ @getsentry/issues
  283. *code_mappings*.py @getsentry/issues
  284. # To find matching files -> find . -name "*sentry_app*.py"
  285. *sentry_app*.py @getsentry/issues
  286. *sentryapp*.py @getsentry/issues
  287. *doc_integration*.py @getsentry/issues
  288. *docintegration*.py @getsentry/issues
  289. /src/sentry/middleware/ratelimit.py @getsentry/issues
  290. /src/sentry/middleware/access_log.py @getsentry/issues
  291. ## End of Integrations
  292. ## Data
  293. /src/sentry/models/featureadoption.py @getsentry/data
  294. /src/sentry/models/group.py @getsentry/data
  295. /src/sentry/models/grouphash.py @getsentry/data
  296. /src/sentry/models/grouprelease.py @getsentry/data
  297. /src/sentry/models/groupresolution.py @getsentry/data
  298. /src/sentry/models/integration.py @getsentry/data @getsentry/issues
  299. /src/sentry/models/organization.py @getsentry/data
  300. /src/sentry/models/organizationmember.py @getsentry/data
  301. /src/sentry/models/organizationoption.py @getsentry/data
  302. /src/sentry/models/project.py @getsentry/data
  303. /src/sentry/models/projectoption.py @getsentry/data
  304. /src/sentry/models/release.py @getsentry/data
  305. /src/sentry/models/sentryapp.py @getsentry/data @getsentry/issues
  306. /src/sentry/models/sentryappinstallation.py @getsentry/data @getsentry/issues
  307. /src/sentry/models/user.py @getsentry/data
  308. ## End of Data
  309. ## Enterprise
  310. /static/app/views/organizationStats @getsentry/enterprise
  311. /src/sentry/api/endpoints/organization_stats*.py @getsentry/enterprise
  312. /src/sentry/api/endpoints/organization_auditlogs.py @getsentry/enterprise
  313. /static/app/views/settings/organizationAuth/ @getsentry/enterprise
  314. /tests/sentry/api/endpoints/test_auth*.py @getsentry/enterprise
  315. /tests/sentry/api/test_data_secrecy.py @getsentry/enterprise
  316. /src/sentry/scim/ @getsentry/enterprise
  317. /tests/sentry/api/test_scim*.py @getsentry/enterprise
  318. /src/sentry/tasks/integrations/github/pr_comment.py @getsentry/enterprise
  319. ## End of Enterprise
  320. ## Native
  321. /src/sentry/api/endpoints/chunk.py @getsentry/owners-native
  322. /src/sentry/api/endpoints/project_app_store_connect_credentials.py @getsentry/owners-native
  323. /src/sentry/lang/native/ @getsentry/owners-native
  324. /src/sentry/processing/realtime_metrics/ @getsentry/owners-native
  325. /src/sentry/tasks/app_store_connect.py @getsentry/owners-native
  326. /src/sentry/tasks/assemble.py @getsentry/owners-native
  327. /src/sentry/tasks/low_priority_symbolication.py @getsentry/owners-native
  328. /src/sentry/tasks/symbolication.py @getsentry/owners-native
  329. /src/sentry/utils/appleconnect/ @getsentry/owners-native
  330. /tests/sentry/tasks/test_low_priority_symbolication.py @getsentry/owners-native
  331. /src/sentry/tasks/reprocessing.py @getsentry/owners-processing
  332. /src/sentry/tasks/reprocessing2.py @getsentry/owners-processing
  333. /src/sentry/reprocessing2.py @getsentry/owners-processing
  334. /src/sentry/tasks/store.py @getsentry/owners-processing
  335. ## End of Native
  336. ## APIs
  337. /src/sentry/apidocs/ @getsentry/owners-api
  338. /src/sentry/api/urls.py @getsentry/owners-api
  339. /api-docs/ @getsentry/owners-api
  340. /tests/apidocs/ @getsentry/owners-api
  341. /.github/workflows/openapi.yml @getsentry/owners-api
  342. /.github/workflows/openapi-diff.yml @getsentry/owners-api
  343. ## End of APIs
  344. ## SDK
  345. /src/sentry/utils/sdk.py @getsentry/team-web-sdk-backend
  346. ## End of SDK
  347. ## Telemetry Experience
  348. /src/sentry/api/endpoints/organization_metrics.py @getsentry/telemetry-experience
  349. /src/sentry/api/endpoints/organization_sessions.py @getsentry/telemetry-experience
  350. /src/sentry/api/endpoints/project_dynamic_sampling.py @getsentry/telemetry-experience
  351. /src/sentry/api/endpoints/organization_dynamic_sampling_sdk_versions.py @getsentry/telemetry-experience
  352. /src/sentry/dynamic_sampling/ @getsentry/telemetry-experience
  353. /src/sentry/release_health/metrics_sessions_v2.py @getsentry/telemetry-experience
  354. /tests/sentry/api/endpoints/test_organization_metric_data.py @getsentry/telemetry-experience
  355. /tests/sentry/api/endpoints/test_organization_metric_details.py @getsentry/telemetry-experience
  356. /tests/sentry/api/endpoints/test_organization_metric_tag_details.py @getsentry/telemetry-experience
  357. /tests/sentry/api/endpoints/test_organization_metric_tags.py @getsentry/telemetry-experience
  358. /tests/sentry/api/endpoints/test_organization_metrics.py @getsentry/telemetry-experience
  359. /tests/sentry/api/endpoints/test_project_dynamic_sampling.py @getsentry/telemetry-experience
  360. /tests/sentry/api/endpoints/test_organization_dynamic_sampling_sdk_versions.py @getsentry/telemetry-experience
  361. /tests/sentry/snuba/metrics/ @getsentry/telemetry-experience
  362. /tests/snuba/api/endpoints/test_organization_sessions.py @getsentry/telemetry-experience
  363. /static/app/views/settings/project/dynamicSampling/ @getsentry/telemetry-experience
  364. /static/app/views/performance/landing/dynamicSamplingMetricsAccuracyAlert.tsx @getsentry/telemetry-experience
  365. /static/app/views/performance/landing/dynamicSamplingMetricsAccuracy.spec.tsx @getsentry/telemetry-experience
  366. /static/app/utils/metrics/ @getsentry/telemetry-experience
  367. /static/app/actionCreators/metrics.tsx @getsentry/telemetry-experience
  368. /static/app/actionCreators/metrics.spec.tsx @getsentry/telemetry-experience
  369. /static/app/types/metrics.tsx @getsentry/telemetry-experience
  370. ## End of Telemetry Experience
  371. ## Growth
  372. /src/sentry/api/endpoints/client_state.py @getsentry/growth
  373. /src/sentry/api/endpoints/organization_web_vitals_overview.py @getsentry/growth
  374. /src/sentry/api/endpoints/organization_onboarding* @getsentry/growth
  375. /src/sentry/web/frontend/auth_login.py @getsentry/growth
  376. /static/app/utils/analytics.tsx @getsentry/growth
  377. /static/app/utils/routeAnalytics* @getsentry/growth
  378. /static/app/views/onboarding* @getsentry/growth
  379. ## End of Growth
  380. ## Issues
  381. /src/sentry/event_manager.py @getsentry/issues
  382. /src/sentry/grouping/ @getsentry/issues
  383. /src/sentry/issues/ @getsentry/issues
  384. /src/sentry/tasks/post_process.py @getsentry/issues
  385. /src/sentry/types/issues.py @getsentry/issues
  386. /tests/sentry/event_manager/test_event_manager.py @getsentry/issues
  387. /tests/sentry/grouping/ @getsentry/issues
  388. /tests/sentry/issues/ @getsentry/issues
  389. /tests/sentry/search/ @getsentry/issues
  390. /tests/sentry/tasks/test_post_process.py @getsentry/issues
  391. /tests/snuba/search/ @getsentry/issues
  392. /src/sentry/search/snuba/ @getsentry/issues
  393. /static/app/views/issueList @getsentry/issues
  394. /static/app/views/organizationGroupDetails @getsentry/issues
  395. /src/sentry/api/endpoints/source_map_debug.py @getsentry/issues
  396. /src/sentry/api/helpers/source_map_helper.py @getsentry/issues
  397. /src/sentry/api/endpoints/actionable_items.py @getsentry/issues
  398. /src/sentry/api/helpers/actionable_items_helper.py @getsentry/issues
  399. ## End of Issues