-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(insights): allow tooltip to be passed to transaction column head…
…ers (#82588)
- Loading branch information
Showing
8 changed files
with
149 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,60 @@ | ||
export const FRONTEND_PAGELOAD_COLUMN_TITLES = [ | ||
'transaction', | ||
'project', | ||
'tpm', | ||
'FCP', | ||
'LCP', | ||
'FID', | ||
'CLS', | ||
'users', | ||
'user misery', | ||
{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 = [ | ||
'transaction', | ||
'operation', | ||
'project', | ||
'tpm', | ||
'p50()', | ||
'p75()', | ||
'p95()', | ||
'users', | ||
'user misery', | ||
{title: 'transaction'}, | ||
{title: 'operation'}, | ||
{title: 'project'}, | ||
{title: 'tpm'}, | ||
{title: 'p50()'}, | ||
{title: 'p75()'}, | ||
{title: 'p95()'}, | ||
{title: 'users'}, | ||
{title: 'user misery'}, | ||
]; | ||
|
||
export const BACKEND_COLUMN_TITLES = [ | ||
'http method', | ||
'transaction', | ||
'operation', | ||
'project', | ||
'tpm', | ||
'p50', | ||
'p95', | ||
'failure rate', | ||
'apdex', | ||
'users', | ||
'user misery', | ||
{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 = [ | ||
'transaction', | ||
'operation', | ||
'project', | ||
'tpm', | ||
'slow frame %', | ||
'frozen frame %', | ||
'users', | ||
'user misery', | ||
{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 = [ | ||
'transaction', | ||
'operation', | ||
'project', | ||
'tpm', | ||
'slow frame %', | ||
'frozen frame %', | ||
'stall %', | ||
'users', | ||
'user misery', | ||
{title: 'transaction'}, | ||
{title: 'operation'}, | ||
{title: 'project'}, | ||
{title: 'tpm'}, | ||
{title: 'slow frame %'}, | ||
{title: 'frozen frame %'}, | ||
{title: 'stall %'}, | ||
{title: 'users'}, | ||
{title: 'user misery'}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters