data.tsx 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. export const FRONTEND_PAGELOAD_COLUMN_TITLES = [
  2. {title: 'transaction'},
  3. {title: 'project'},
  4. {title: 'tpm'},
  5. {title: 'FCP'},
  6. {title: 'LCP'},
  7. {title: 'FID'},
  8. {title: 'CLS'},
  9. {title: 'users'},
  10. {title: 'user misery'},
  11. ];
  12. export const FRONTEND_OTHER_COLUMN_TITLES = [
  13. {title: 'transaction'},
  14. {title: 'operation'},
  15. {title: 'project'},
  16. {title: 'tpm'},
  17. {title: 'p50()'},
  18. {title: 'p75()'},
  19. {title: 'p95()'},
  20. {title: 'users'},
  21. {title: 'user misery'},
  22. ];
  23. export const BACKEND_COLUMN_TITLES = [
  24. {title: 'http method'},
  25. {title: 'transaction'},
  26. {title: 'operation'},
  27. {title: 'project'},
  28. {title: 'tpm'},
  29. {title: 'p50'},
  30. {title: 'p95'},
  31. {title: 'failure rate'},
  32. {title: 'apdex'},
  33. {title: 'users'},
  34. {title: 'user misery'},
  35. ];
  36. export const MOBILE_COLUMN_TITLES = [
  37. {title: 'transaction'},
  38. {title: 'operation'},
  39. {title: 'project'},
  40. {title: 'tpm'},
  41. {title: 'slow frame %'},
  42. {title: 'frozen frame %'},
  43. {title: 'users'},
  44. {title: 'user misery'},
  45. ];
  46. export const REACT_NATIVE_COLUMN_TITLES = [
  47. {title: 'transaction'},
  48. {title: 'operation'},
  49. {title: 'project'},
  50. {title: 'tpm'},
  51. {title: 'slow frame %'},
  52. {title: 'frozen frame %'},
  53. {title: 'stall %'},
  54. {title: 'users'},
  55. {title: 'user misery'},
  56. ];