Searched refs:dbstats (Results 1 – 7 of 7) sorted by relevance
25 static std::shared_ptr<ROCKSDB_NAMESPACE::Statistics> dbstats; variable
45 dbstats = ROCKSDB_NAMESPACE::CreateDBStatistics(); in db_stress_tool()
328 if (dbstats) { in PrintStatistics()329 fprintf(stdout, "STATISTICS:\n%s\n", dbstats->ToString().c_str()); in PrintStatistics()1772 options_.statistics = dbstats; in Open()
618 static class std::shared_ptr<ROCKSDB_NAMESPACE::Statistics> dbstats; variable3264 fprintf(stdout, "STATISTICS:\n%s\n", dbstats->ToString().c_str()); in Run()3995 options.statistics = dbstats; in InitializeOptionsGeneral()6968 FLAGS_statistics_string, &dbstats); in db_bench_tool()6969 if (dbstats == nullptr) { in db_bench_tool()6978 dbstats = ROCKSDB_NAMESPACE::CreateDBStatistics(); in db_bench_tool()6980 if (dbstats) { in db_bench_tool()6981 dbstats->set_stats_level(static_cast<StatsLevel>(FLAGS_stats_level)); in db_bench_tool()
162 …ble to get the value from `RocksDB.getProperty()` with property `rocksdb.dbstats`. Let me know if …
207 static const std::string dbstats = "dbstats"; variable273 const std::string DB::Properties::kDBStats = rocksdb_prefix + dbstats;
636 auto dbstats = immutable_db_options_.statistics.get(); in PrintStatistics() local637 if (dbstats) { in PrintStatistics()639 dbstats->ToString().c_str()); in PrintStatistics()