From 47199e28ddef6515aa1bb09d836bc4bbda58c238 Mon Sep 17 00:00:00 2001 From: Robert LeBlanc Date: Mon, 11 Nov 2019 23:16:01 +0000 Subject: [PATCH] Not sure why iops and latency are left out of the JSON job output. It is really useful information. Signed-off by: Robert LeBlanc --- src/ior-output.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ior-output.c b/src/ior-output.c index 76daf6c..99eeac6 100644 --- a/src/ior-output.c +++ b/src/ior-output.c @@ -239,6 +239,8 @@ void PrintReducedResult(IOR_test_t *test, int access, double bw, double iops, do PrintKeyValDouble("bwMiB", bw / MEBIBYTE); PrintKeyValDouble("blockKiB", (double)test->params.blockSize / KIBIBYTE); PrintKeyValDouble("xferKiB", (double)test->params.transferSize / KIBIBYTE); + PrintKeyValDouble("iops", iops); + PrintKeyValDouble("latency", latency); PrintKeyValDouble("openTime", diff_subset[0]); PrintKeyValDouble("wrRdTime", diff_subset[1]); PrintKeyValDouble("closeTime", diff_subset[2]);