From b4af9d4572707718514e66b7e537bc51216b60f6 Mon Sep 17 00:00:00 2001 From: Zach Koopmans Date: Wed, 9 Dec 2020 13:49:41 -0800 Subject: Add network benchmarks jobs Add httpd, nginx, node, and ruby benchmarks to continuous jobs. PiperOrigin-RevId: 346629115 --- test/benchmarks/tools/iperf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/benchmarks/tools') 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. -- cgit v1.2.3