constants.tsx 408 B

12345678910111213
  1. import {CheckInStatus} from 'sentry/views/monitors/types';
  2. import type {StatsBucket} from '../types';
  3. // Orders the status in terms of ascending precedence for showing to the user
  4. export const CHECKIN_STATUS_PRECEDENT = [
  5. CheckInStatus.IN_PROGRESS,
  6. CheckInStatus.OK,
  7. CheckInStatus.MISSED,
  8. CheckInStatus.TIMEOUT,
  9. CheckInStatus.ERROR,
  10. CheckInStatus.UNKNOWN,
  11. ] satisfies Array<keyof StatsBucket>;