Skip to content

Commit

Permalink
Add notifications for editor scrolling graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
emrzv committed May 14, 2024
1 parent e1979de commit bb92b5c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkg/degradation-detector/setting/ideaSettings.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ func generateIdeaOnInstallerAnalysisSettings(backendUrl string, client *http.Cli
}

func generateIdeaDevAnalysisSettings(backendUrl string, client *http.Client) []detector.PerformanceSettings {
tests := []string{"intellij_commit/%"}
tests := []string{"intellij_commit/%", "grails/%", "java/%", "spring_boot/%",
"spring_boot_maven/%", "spring_boot/%", "kotlin/%", "kotlin_coroutines/%",
"kotlin_petclinic/%", "community/%", "empty_project/%", "keycloak_release_20/%",
"space/%", "toolbox_enterprise/%", "train-ticket/%"}
baseSettings := detector.PerformanceSettings{
Db: "perfintDev",
Table: "idea",
Expand Down Expand Up @@ -148,5 +151,8 @@ func getMetricFromTestName(test string) []string {
if strings.Contains(test, "/typing") {
return []string{"typingCodeAnalyzing", "typing"}
}
if strings.Contains(test, "/scrollEditor") {
return []string{"scrollEditor#average_awt_delay", "scrollEditor#max_awt_delay", "scrollEditor#average_cpu_load", "scrollEditor#max_cpu_load"}
}
return []string{}
}

0 comments on commit bb92b5c

Please sign in to comment.