[RocksDB] Expose DBStatistics

Summary: Make Statistics usable by client

Test Plan: make check; db_bench

Reviewers: dhruba

Reviewed By: dhruba

Differential Revision: https://reviews.facebook.net/D10899
This commit is contained in:
Haobo Xu
2013-05-23 11:34:58 -07:00
parent 760dd4750f
commit c2e2460f8a
4 changed files with 11 additions and 2 deletions

View File

@@ -128,6 +128,9 @@ class Statistics {
};
// Create a concrete DBStatistics object
std::shared_ptr<Statistics> CreateDBStatistics();
// Ease of Use functions
inline void RecordTick(std::shared_ptr<Statistics> statistics,
Tickers ticker,