Not sure why iops and latency are left out of the JSON job output. It is really useful information.

Signed-off by: Robert LeBlanc <robert@leblancnet.us>
master
Robert LeBlanc 2019-11-11 23:16:01 +00:00
parent bdfc43125a
commit 47199e28dd
1 changed files with 2 additions and 0 deletions

View File

@ -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]);