Remove systemMetrics from performance.metrics.json since they are not supported on IJ Perf and very verbose

GitOrigin-RevId: 44bc54b0f382842af3a1a0b5eb430281c5eddd94
This commit is contained in:
Maxim.Kolmakov
2024-06-25 17:41:39 +02:00
committed by intellij-monorepo-bot
parent 4ec3401b61
commit a0a8dc42b3

View File

@@ -32,7 +32,6 @@ data class IJPerfMetricsDto<T: Number>(
val productCode: String,
val methodName: String,
val metrics: List<ApplicationMetricDto<T>>,
val systemMetrics: Map<String, List<MetricGroup>>,
val tcInfo: CIServerBuildInfo
) {
companion object {
@@ -75,7 +74,6 @@ data class IJPerfMetricsDto<T: Number>(
productCode = buildNumber.productCode,
metrics = metrics,
methodName = methodName,
systemMetrics = mapOf(),
tcInfo = buildInfo,
projectDescription = projectDescription
)