File tree Expand file tree Collapse file tree 7 files changed +0
-454
lines changed
tests/snuba/api/endpoints Expand file tree Collapse file tree 7 files changed +0
-454
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,6 @@ pnpm-lock.yaml @getsentry/owners-js-de
200200/src /sentry /api /endpoints /organization_events_histogram.py @ getsentry/data-browsing
201201/src /sentry /api /endpoints /organization_events_facets_performance.py @ getsentry/data-browsing
202202/src /sentry /api /endpoints /organization_events_spans_performance.py @ getsentry/data-browsing
203- /src /sentry /api /endpoints /organization_events_spans_histogram.py @ getsentry/data-browsing
204203/src /sentry /api /endpoints /organization_events_trace.py @ getsentry/data-browsing
205204/src /sentry /api /endpoints /organization_events_trends.py @ getsentry/data-browsing
206205/src /sentry /api /endpoints /organization_events_trends_v2.py @ getsentry/data-browsing
@@ -220,7 +219,6 @@ src/sentry/api/endpoints/organization_attribute_mappings.py @get
220219/tests /snuba /api /endpoints /test_organization_events_histogram.py @ getsentry/data-browsing
221220/tests /snuba /api /endpoints /test_organization_events_facets_performance.py @ getsentry/data-browsing
222221/tests /snuba /api /endpoints /test_organization_events_spans_performance.py @ getsentry/data-browsing
223- /tests /snuba /api /endpoints /test_organization_events_spans_histogram.py @ getsentry/data-browsing
224222/tests /snuba /api /endpoints /test_organization_events_trace.py @ getsentry/data-browsing
225223/tests /snuba /api /endpoints /test_organization_events_trends.py @ getsentry/data-browsing
226224/tests /sentry /api /endpoints /test_organization_events_trends_v2.py @ getsentry/data-browsing
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 735735 OrganizationSpansSamplesEndpoint ,
736736)
737737from .endpoints .organization_events_span_ops import OrganizationEventsSpanOpsEndpoint
738- from .endpoints .organization_events_spans_histogram import OrganizationEventsSpansHistogramEndpoint
739738from .endpoints .organization_events_spans_performance import (
740739 OrganizationEventsSpansExamplesEndpoint ,
741740 OrganizationEventsSpansPerformanceEndpoint ,
@@ -1845,11 +1844,6 @@ def create_group_urls(name_prefix: str) -> list[URLPattern | URLResolver]:
18451844 OrganizationEventsHistogramEndpoint .as_view (),
18461845 name = "sentry-api-0-organization-events-histogram" ,
18471846 ),
1848- re_path (
1849- r"^(?P<organization_id_or_slug>[^/]+)/events-spans-histogram/$" ,
1850- OrganizationEventsSpansHistogramEndpoint .as_view (),
1851- name = "sentry-api-0-organization-events-spans-histogram" ,
1852- ),
18531847 re_path (
18541848 r"^(?P<organization_id_or_slug>[^/]+)/events-trends/$" ,
18551849 OrganizationEventsTrendsEndpoint .as_view (),
Original file line number Diff line number Diff line change 327327 "/api/0/organizations/{organization_id_or_slug}/metrics-compatibility-sums/" : {"GET" },
328328 "/api/0/organizations/{organization_id_or_slug}/missing-members/" : {"GET" },
329329 "/api/0/organizations/{organization_id_or_slug}/events-histogram/" : {"GET" },
330- "/api/0/organizations/{organization_id_or_slug}/events-spans-histogram/" : {"GET" },
331330 "/api/0/organizations/{organization_id_or_slug}/events-trends/" : {"GET" },
332331 "/api/0/organizations/{organization_id_or_slug}/events-vitals/" : {"GET" },
333332 "/api/0/organizations/{organization_id_or_slug}/events-has-measurements/" : {"GET" },
Original file line number Diff line number Diff line change 3939 "OrganizationEventsNewTrendsStatsEndpoint" ,
4040 "OrganizationEventsRelatedIssuesEndpoint" ,
4141 "OrganizationEventsRootCauseAnalysisEndpoint" ,
42- "OrganizationEventsSpansHistogramEndpoint" ,
4342 "OrganizationEventsVitalsEndpoint" ,
4443 "OrganizationGroupIndexEndpoint" ,
4544 "OrganizationGroupIndexStatsEndpoint" ,
Original file line number Diff line number Diff line change @@ -246,7 +246,6 @@ export type KnownSentryApiUrls =
246246 | '/organizations/$organizationIdOrSlug/events-meta/'
247247 | '/organizations/$organizationIdOrSlug/events-root-cause-analysis/'
248248 | '/organizations/$organizationIdOrSlug/events-span-ops/'
249- | '/organizations/$organizationIdOrSlug/events-spans-histogram/'
250249 | '/organizations/$organizationIdOrSlug/events-spans-performance/'
251250 | '/organizations/$organizationIdOrSlug/events-spans-stats/'
252251 | '/organizations/$organizationIdOrSlug/events-spans/'
You can’t perform that action at this time.
0 commit comments