settings.ts 654 B

1234567891011121314151617181920212223242526
  1. import {t} from 'sentry/locale';
  2. import {ModuleName} from 'sentry/views/insights/types';
  3. export const MOBILE_LANDING_SUB_PATH = 'mobile';
  4. export const MOBILE_LANDING_TITLE = t('Mobile Performance');
  5. export const MOBILE_SIDEBAR_LABEL = t('Mobile');
  6. export const OVERVIEW_PAGE_ALLOWED_OPS = [
  7. 'ui.action.swipe',
  8. 'ui.action.scroll',
  9. 'ui.action.click',
  10. 'ui.action',
  11. 'ui.load',
  12. 'app.lifecycle',
  13. // navigation and pageload are seen in react-native
  14. 'navigation',
  15. 'pageload',
  16. ];
  17. export const MODULES = [
  18. ModuleName.APP_START,
  19. ModuleName.SCREEN_LOAD,
  20. ModuleName.SCREEN_RENDERING,
  21. ModuleName.MOBILE_SCREENS,
  22. ModuleName.MOBILE_UI,
  23. ];