0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-27 07:54:05 +01:00

modules/console: Add more output to the db base cmd.

This commit is contained in:
Jason Volk 2018-05-13 19:14:57 -07:00
parent ced6ef96f6
commit 8f3b84fff9

View file

@ -1523,6 +1523,29 @@ try
*db::database::dbs.at(param.at(0))
};
out << "sequence : " << sequence(database) << std::endl;
out << "database size: : " << bytes(database) << std::endl;
out << "database keys (est) : "
<< db::property(database, "rocksdb.estimate-num-keys")
<< std::endl;
out << "all tables size : "
<< db::property(database, "rocksdb.size-all-mem-tables")
<< std::endl;
out << "active table size : "
<< db::property(database, "rocksdb.cur-size-active-mem-table")
<< std::endl;
out << "active table entries : "
<< db::property(database, "rocksdb.num-entries-active-mem-table")
<< std::endl;
out << "active table deletes : "
<< db::property(database, "rocksdb.num-deletes-active-mem-table")
<< std::endl;
return true;
}
catch(const std::out_of_range &e)