pkg/degradation-detector/setting/ideaIndexingSettings.go (67 lines of code) (raw):
package setting
import (
"net/http"
"slices"
"strings"
detector "github.com/JetBrains/ij-perf-report-aggregator/pkg/degradation-detector"
)
func GenerateIdeaIndexingSettings(backendUrl string, client *http.Client) []detector.PerformanceSettings {
return slices.Concat(
generateIdeaIndexingSettings(backendUrl, client),
)
}
func generateIdeaIndexingSettings(backendUrl string, client *http.Client) []detector.PerformanceSettings {
tests := []string{"%/indexing", "%/%-scanning", "intellij_commit/vfsRefresh/%", "intellij_commit/checkout/243", "empty_project/vfs-mass-update-%"}
baseSettings := detector.PerformanceSettings{
Db: "perfintDev",
Table: "idea",
BaseSettings: detector.BaseSettings{
Branch: "master",
Machine: "intellij-linux-performance-aws-%",
},
}
testsExpanded := detector.ExpandTestsByPattern(backendUrl, client, tests, baseSettings)
settings := make([]detector.PerformanceSettings, 0, 100)
machines := []string{"intellij-linux-performance-aws-%", "intellij-windows-performance-%"}
for _, machine := range machines {
for _, test := range testsExpanded {
metrics := getIndexingMetricFromTestNameForIDEA(test)
for _, metric := range metrics {
settings = append(settings, detector.PerformanceSettings{
Db: baseSettings.Db,
Table: baseSettings.Table,
Project: test,
BaseSettings: detector.BaseSettings{
Branch: baseSettings.Branch,
Machine: machine,
Metric: metric,
SlackSettings: detector.SlackSettings{
Channel: "ij-indexes-perf-alerts",
ProductLink: "intellij",
},
AnalysisSettings: detector.AnalysisSettings{MinimumSegmentLength: 8},
},
})
}
}
}
return settings
}
func getIndexingMetricFromTestNameForIDEA(test string) []string {
if strings.Contains(test, "/indexing") {
return []string{"scanningTimeWithoutPauses", "indexingTimeWithoutPauses"}
}
if strings.Contains(test, "-scanning") {
return []string{"scanningTimeWithoutPauses"}
}
if strings.Contains(test, "/vfsRefresh") {
return []string{"vfs_initial_refresh"}
}
if strings.Contains(test, "/checkout") {
return []string{"indexingTimeWithoutPauses", "scanningTimeWithoutPauses", "numberOfIndexedFiles"}
}
if strings.Contains(test, "/vfs-mass-update-") {
return []string{"vfsRefreshAfterMassCreate", "vfsRefreshAfterMassModify", "vfsRefreshAfterMassDelete"}
}
return []string{}
}