Skip to content

Commit 9d64c30

Browse files
authored
Merge pull request #3592 from kishen-v/etcd-benchmark-perfdash
Add parser for etcd API benchmarks
2 parents 800e94c + bcb1388 commit 9d64c30

File tree

3 files changed

+22
-11
lines changed

3 files changed

+22
-11
lines changed

perfdash/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all: push
22

33
# See deployment.yaml for the version currently running-- bump this ahead before rebuilding!
4-
TAG?=2.55
4+
TAG?=2.56
55

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

perfdash/config.go

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -694,16 +694,27 @@ var (
694694
},
695695
}
696696

697+
etcdAPIBenchmarkDescription = TestDescriptions{
698+
"EtcdAPIPerformance": {
699+
"Benchmark ": []TestDescription{{
700+
Name: "benchmark",
701+
OutputFilePrefix: "EtcdAPI",
702+
Parser: parsePerfData,
703+
}},
704+
},
705+
}
706+
697707
jobTypeToDescriptions = map[string]TestDescriptions{
698-
"performance": performanceDescriptions,
699-
"benchmark": benchmarkDescriptions,
700-
"networking": networkingDescriptions,
701-
"dnsBenchmark": dnsBenchmarkDescriptions,
702-
"storage": storageDescriptions,
703-
"throughput": throughputDescriptions,
704-
"windows": windowsDescriptions,
705-
"watchlist": watchListDescriptions,
706-
"benchmarkList": benchmarkListDescription,
708+
"performance": performanceDescriptions,
709+
"benchmark": benchmarkDescriptions,
710+
"networking": networkingDescriptions,
711+
"dnsBenchmark": dnsBenchmarkDescriptions,
712+
"storage": storageDescriptions,
713+
"throughput": throughputDescriptions,
714+
"windows": windowsDescriptions,
715+
"watchlist": watchListDescriptions,
716+
"benchmarkList": benchmarkListDescription,
717+
"etcdAPIBenchmark": etcdAPIBenchmarkDescription,
707718
}
708719
)
709720

perfdash/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: perfdash
19-
image: gcr.io/k8s-staging-perf-tests/perfdash:2.55
19+
image: gcr.io/k8s-staging-perf-tests/perfdash:2.56
2020
command:
2121
- /perfdash
2222
- --www=true

0 commit comments

Comments
 (0)