From c97fe5f1fb0d532c654fc730f2ec3931e760c649 Mon Sep 17 00:00:00 2001 From: Kush Trivedi <44091822+kushthedude@users.noreply.github.com> Date: Fri, 18 Sep 2020 09:50:46 +0530 Subject: [PATCH] fix: nighthawk arg (#14) Signed-off-by: Kush Trivedi --- apinighthawk/nighthawk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apinighthawk/nighthawk.go b/apinighthawk/nighthawk.go index e7f6e85f..c438af0b 100644 --- a/apinighthawk/nighthawk.go +++ b/apinighthawk/nighthawk.go @@ -41,7 +41,7 @@ func NighthawkRun(config *NighthawkConfig) ([]byte, error) { qps := strconv.FormatFloat(config.QPS, 'f', -1, 64) c := strconv.Itoa(config.Thread) - args := []string{"--rps " + qps, "--concurrency " + c, "--duration " + duration, rURL.String(), "--output-format fortio"} + args := []string{"--rps " + qps, "--concurrency " + c, "--duration " + duration, rURL.String(), "--output-format experimental_fortio_pedantic"} log.Info("Received arguments for run", args)