utils.tsx 298 B

123456789101112
  1. import type {Organization} from 'sentry/types';
  2. export function makeMonitorErrorsQueryKey(
  3. organization: Organization,
  4. projectId: string,
  5. monitorSlug: string
  6. ) {
  7. return [
  8. `/projects/${organization.slug}/${projectId}/monitors/${monitorSlug}/processing-errors/`,
  9. {},
  10. ] as const;
  11. }