123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- export const FRONTEND_PAGELOAD_COLUMN_TITLES = [
- {title: 'transaction'},
- {title: 'project'},
- {title: 'tpm'},
- {title: 'FCP'},
- {title: 'LCP'},
- {title: 'FID'},
- {title: 'CLS'},
- {title: 'users'},
- {title: 'user misery'},
- ];
- export const FRONTEND_OTHER_COLUMN_TITLES = [
- {title: 'transaction'},
- {title: 'operation'},
- {title: 'project'},
- {title: 'tpm'},
- {title: 'p50()'},
- {title: 'p75()'},
- {title: 'p95()'},
- {title: 'users'},
- {title: 'user misery'},
- ];
- export const BACKEND_COLUMN_TITLES = [
- {title: 'http method'},
- {title: 'transaction'},
- {title: 'operation'},
- {title: 'project'},
- {title: 'tpm'},
- {title: 'p50'},
- {title: 'p95'},
- {title: 'failure rate'},
- {title: 'apdex'},
- {title: 'users'},
- {title: 'user misery'},
- ];
- export const MOBILE_COLUMN_TITLES = [
- {title: 'transaction'},
- {title: 'operation'},
- {title: 'project'},
- {title: 'tpm'},
- {title: 'slow frame %'},
- {title: 'frozen frame %'},
- {title: 'users'},
- {title: 'user misery'},
- ];
- export const REACT_NATIVE_COLUMN_TITLES = [
- {title: 'transaction'},
- {title: 'operation'},
- {title: 'project'},
- {title: 'tpm'},
- {title: 'slow frame %'},
- {title: 'frozen frame %'},
- {title: 'stall %'},
- {title: 'users'},
- {title: 'user misery'},
- ];
|