constants.tsx 383 B

123456789101112
  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. ] satisfies Array<keyof StatsBucket>;