Skip to content

Commit 4d903a9

Browse files
Update descriptions for fus metrics
1 parent 584cf98 commit 4d903a9

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

dashboard/new-dashboard/src/shared/metricsDescription.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,36 @@ import { GRADLE_METRICS_NEW_DASHBOARD } from "../components/intelliJ/build-tools
1616
* ```
1717
*/
1818
export const metricsDescription: Map<string, string | MetricInfo> = new Map<string, string | MetricInfo>([
19+
// FUS events (some of them used for (mega)APDEX calculations)
20+
["fus_file_types_usage_duration_ms", 'FUS event with groupID="" eventID="" eventField=""'],
21+
["fus_file_types_usage_time_to_show_ms", 'FUS event with groupID="" eventID="finished" eventField="full_duration_since_started_ms"'],
22+
["fus_daemon_finished_full_duration_since_started_ms", 'FUS event with groupID="daemon" eventID="" eventField=""'],
23+
["fus_completion_duration_sum", 'FUS event with groupID="" eventID="" eventField=""'],
24+
["fus_completion_duration_90p", 'FUS event with groupID="" eventID="" eventField=""'],
25+
["fus_time_to_show_90p", 'FUS event with groupID="" eventID="" eventField=""'],
26+
["fus_dumb_indexing_time", 'FUS event with groupID="" eventID="" eventField=""'],
27+
["fus_scanning_time", 'FUS event with groupID="" eventID="" eventField=""'],
28+
["fus_git_branches_checkout_operation", 'FUS event with groupID="git.branches" eventID="checkout.checkout_operation.finished" eventField="duration_ms"'],
29+
["fus_git_branches_vfs_refresh", 'FUS event with groupID="git.branches" eventID="checkout.vfs_refresh.finished" eventField="duration_ms"'],
30+
["fus_vcs_commit_duration", 'FUS event with groupID="vcs" eventID="commit.finished" eventField="duration_ms"'],
31+
["fus_find_usages_all", 'FUS event with groupID="" eventID="" eventField=""'],
32+
["fus_find_usages_first", 'FUS event with groupID="" eventID="" eventField=""'],
33+
["fus_startup_totalDuration", 'FUS event with groupID="startup" eventID="totalDuration" eventField="duration"'],
34+
["fus_reopen_startup_frame_became_interactive", 'FUS event with groupID="reopen.project.startup.performance" eventID="frame.became.interactive" eventField="duration_ms"'],
35+
["fus_reopen_startup_first_ui_shown", 'FUS event with groupID="reopen.project.startup.performance" eventID="first.ui.shown" eventField="duration_ms"'],
36+
["fus_reopen_startup_frame_became_visible", 'FUS event with groupID="reopen.project.startup.performance" eventID="frame.became.visible" eventField="duration_ms"'],
37+
[
38+
"fus_reopen_startup_code_loaded_and_visible_in_editor",
39+
'FUS event with groupID="reopen.project.startup.performance" eventID="code.loaded.and.visible.in.editor" eventField="duration_ms"',
40+
],
41+
[
42+
"fus_gradle.sync",
43+
'Difference between durations of FUS events with groupID="build.gradle.import" eventID="gradle.sync.finished" eventField="duration_ms" and groupID="build.gradle.import" eventID="gradle.sync.started" eventField="duration_ms"',
44+
],
45+
["fus_PROJECT_RESOLVERS", 'FUS event with groupID="build.gradle.import" eventID="phase.finished" phase="PROJECT_RESOLVERS" eventField="duration_ms"'],
46+
["fus_GRADLE_CALL", 'FUS event with groupID="build.gradle.import" eventID="phase.finished" phase="GRADLE_CALL" eventField="duration_ms"'],
47+
["fus_DATA_SERVICES", 'FUS event with groupID="build.gradle.import" eventID="phase.finished" phase="DATA_SERVICES" eventField="duration_ms"'],
48+
1949
//completion
2050
["completion", "Total time of each completion invocation in test. Completion invocation time is a time that it takes to load all completion variants."],
2151
["completion#mean_value", "Mean value of all completion invocation in test. Completion invocation time is a time that it takes to load all completion variants."],

0 commit comments

Comments
 (0)