summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/tools
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2020-12-09 13:49:41 -0800
committerShentubot <shentubot@google.com>2020-12-09 15:57:58 -0800
commitb4af9d4572707718514e66b7e537bc51216b60f6 (patch)
tree0e8beb192c23471501a71bb24aab39f67e2e33c1 /test/benchmarks/tools
parentaaf4901c8cb35229679c3f7c58a867fe4e6e7252 (diff)
Add network benchmarks jobs
Add httpd, nginx, node, and ruby benchmarks to continuous jobs. PiperOrigin-RevId: 346629115
Diffstat (limited to 'test/benchmarks/tools')
-rw-r--r--test/benchmarks/tools/iperf.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/benchmarks/tools/iperf.go b/test/benchmarks/tools/iperf.go
index 5c4e7125b..891d32704 100644
--- a/test/benchmarks/tools/iperf.go
+++ b/test/benchmarks/tools/iperf.go
@@ -31,7 +31,7 @@ type Iperf struct {
// MakeCmd returns a iperf client command.
func (i *Iperf) MakeCmd(ip net.IP, port int) []string {
// iperf report in Kb realtime
- return strings.Split(fmt.Sprintf("iperf -f K --realtime --time %d -c %s -p %d", i.Time, ip, port), " ")
+ return strings.Split(fmt.Sprintf("iperf -f K --realtime --time %d --client %s --port %d", i.Time, ip, port), " ")
}
// Report parses output from iperf client and reports metrics.