From: Sage Weil Date: Thu, 10 Oct 2019 16:08:01 +0000 (-0500) Subject: mon/PGMap: drop indentation on 'df' human output X-Git-Tag: v15.1.0~1174^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4cb6e83726e3bfe3a6443fb6d800a217e2efc0fb;p=ceph.git mon/PGMap: drop indentation on 'df' human output Preserve horizontal real estate Signed-off-by: Sage Weil --- diff --git a/src/mon/PGMap.cc b/src/mon/PGMap.cc index e76ab9613f99..ee4334f2ac39 100644 --- a/src/mon/PGMap.cc +++ b/src/mon/PGMap.cc @@ -831,8 +831,7 @@ void PGMapDigest::dump_pool_stats_full( f->close_section(); else { ceph_assert(ss != nullptr); - *ss << "POOLS:\n"; - tbl.set_indent(4); + *ss << "--- POOLS ---\n"; *ss << tbl; } } @@ -892,8 +891,7 @@ void PGMapDigest::dump_cluster_stats(stringstream *ss, << percentify(osd_sum.statfs.get_used_raw_ratio()*100.0) << TextTable::endrow; - *ss << "RAW STORAGE:\n"; - tbl.set_indent(4); + *ss << "--- RAW STORAGE ---\n"; *ss << tbl; } }