From ff822fbfeff4128fb64c61a7ca0489bc0c5ea265 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Thu, 9 Feb 2012 17:52:07 -0800 Subject: [PATCH] PGMap: fix dump header fields kilobytes were removed from the output by 625b0b0291543baf424fb3bae4c7a36d280df91e, and last_scrub_stamp was added by 988e350d35bba9591cd0ca5b58ce9ecb8f8ddd80. Signed-off-by: Josh Durgin --- src/mon/PGMap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mon/PGMap.cc b/src/mon/PGMap.cc index 379a6e78a89..04c5a8d5131 100644 --- a/src/mon/PGMap.cc +++ b/src/mon/PGMap.cc @@ -421,7 +421,7 @@ void PGMap::dump(ostream& ss) const ss << "last_pg_scan " << last_pg_scan << std::endl; ss << "full_ratio " << full_ratio << std::endl; ss << "nearfull_ratio " << nearfull_ratio << std::endl; - ss << "pg_stat\tobjects\tmip\tdegr\tunf\tkb\tbytes\tlog\tdisklog\tstate\tv\treported\tup\tacting\tlast_scrub" << std::endl; + ss << "pg_stat\tobjects\tmip\tdegr\tunf\tbytes\tlog\tdisklog\tstate\tv\treported\tup\tacting\tlast_scrub\tscrub_stamp" << std::endl; for (hash_map::const_iterator i = pg_stat.begin(); i != pg_stat.end(); ++i) { const pg_stat_t &st(i->second); -- 2.47.3