settings.ts 695 B

12345678910111213141516171819
  1. import {t} from 'sentry/locale';
  2. export const MODULE_TITLE = t('Screen Rendering');
  3. export const DATA_TYPE = t('Screen Render');
  4. export const DATA_TYPE_PLURAL = t('Screen Renders');
  5. export const CHART_HEIGHT = 160;
  6. export const MODULE_DESCRIPTION = t(
  7. 'Screen Rendering identifies slow and frozen interactions, helping you find and fix problems that might cause users to complain, or uninstall.'
  8. );
  9. export const MODULE_DOC_LINK = 'https://docs.sentry.io/product/insights/mobile/';
  10. export const BASE_URL = 'screen-rendering';
  11. export const SUMMARY_PAGE_BASE_URL = 'details';
  12. export const SUMMARY_PAGE_TITLE = t('Render Summary');
  13. export const MODULE_FEATURES = ['insights-addon-modules'];