Skip to content

Commit

Permalink
Merge pull request kubernetes#2235 from pawbana/add-huge-service-meas…
Browse files Browse the repository at this point in the history
…urements-to-perf-dash

Added parsing of huge-service messurements to pref dash
  • Loading branch information
k8s-ci-robot committed Feb 20, 2023
2 parents 136a78e + 6dc1b74 commit adcca79
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
2 changes: 1 addition & 1 deletion perfdash/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: push

# See deployment.yaml for the version currently running-- bump this ahead before rebuilding!
TAG?=2.44
TAG?=2.45

REPO?=gcr.io/k8s-staging-perf-tests

Expand Down
30 changes: 30 additions & 0 deletions perfdash/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,36 @@ var (
OutputFilePrefix: "MetricsForE2E",
Parser: parseApiserverInitEventsCount,
}},
"HugeServiceResponsiveness_Prometheus": []TestDescription{{
Name: "huge-service",
OutputFilePrefix: "APIResponsivenessPrometheus",
Parser: parsePerfData,
}},
"HugeServiceRequestCount_Prometheus": []TestDescription{{
Name: "huge-service",
OutputFilePrefix: "APIResponsivenessPrometheus",
Parser: parseRequestCountData,
}},
"HugeServiceResponsiveness_PrometheusSimple": []TestDescription{{
Name: "huge-service",
OutputFilePrefix: "APIResponsivenessPrometheus_simple",
Parser: parsePerfData,
}},
"HugeServiceRequestCount_PrometheusSimple": []TestDescription{{
Name: "huge-service",
OutputFilePrefix: "APIResponsivenessPrometheus_simple",
Parser: parseRequestCountData,
}},
"HugeServiceRequestCountByClient": []TestDescription{{
Name: "huge-service",
OutputFilePrefix: "MetricsForE2E",
Parser: parseApiserverRequestCount,
}},
"HugeServiceInitEventsCount": []TestDescription{{
Name: "huge-service",
OutputFilePrefix: "MetricsForE2E",
Parser: parseApiserverInitEventsCount,
}},
},
"Scheduler": {
"SchedulingLatency": []TestDescription{
Expand Down
2 changes: 1 addition & 1 deletion perfdash/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: perfdash
image: gcr.io/k8s-staging-perf-tests/perfdash:2.44
image: gcr.io/k8s-staging-perf-tests/perfdash:2.45
command:
- /perfdash
- --www=true
Expand Down

0 comments on commit adcca79

Please sign in to comment.