From: Brad Hubbard Date: Sun, 8 May 2016 04:04:25 +0000 (+1000) Subject: common: obj_bencher.cc add missing ":" X-Git-Tag: v11.0.0~542^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fc7b346f4e6d64fe5b4f7d5068f4aa52f212b679;p=ceph.git common: obj_bencher.cc add missing ":" "Average IOPS" field in obj_bencher.cc is the only field missing a ":". Make it consistent with other output fields Signed-off-by: Brad Hubbard --- diff --git a/src/common/obj_bencher.cc b/src/common/obj_bencher.cc index 6cb1e1e20bad..0971ec9c0c96 100644 --- a/src/common/obj_bencher.cc +++ b/src/common/obj_bencher.cc @@ -813,7 +813,7 @@ int ObjBencher::seq_read_bench(int seconds_to_run, int num_objects, int concurre << "Read size: " << data.op_size << std::endl << "Object size: " << data.object_size << std::endl << "Bandwidth (MB/sec): " << setprecision(6) << bandwidth << std::endl - << "Average IOPS " << (int)(data.finished/runtime) << std::endl + << "Average IOPS: " << (int)(data.finished/runtime) << std::endl << "Stddev IOPS: " << vec_stddev(data.history.iops) << std::endl << "Max IOPS: " << data.idata.max_iops << std::endl << "Min IOPS: " << data.idata.min_iops << std::endl