Home
last modified time | relevance | path

Searched refs:GetThreadList (Results 1 – 14 of 14) sorted by relevance

/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown2 title: GetThreadList
10GetThreadList()`, that exposes the RocksDB background thread activity. With this feature, develope…
118 In the above output, we can see `GetThreadList()` reports the activity of two threads: one thread r…
130 // be tracked and available via GetThreadList() API.
141 The GetThreadList API is defined in [include/rocksdb/env.h](https://github.com/facebook/rocksdb/blo…
145 virtual Status GetThreadList(std::vector* thread_list)
149 `GetThreadList()` include the background activity of all the rocksdb instances
152 The `GetThreadList()` API simply returns a vector of `ThreadStatus`, each describes
193 …nd thread activity of your RocksDB application, please feel free to give `GetThreadList()` a try :)
/rocksdb-6.9/util/
Dthread_list_test.cc148 env->GetThreadList(&thread_list); in TEST_F()
169 env->GetThreadList(&thread_list); in TEST_F()
284 env->GetThreadList(&thread_list); in TEST_F()
296 env->GetThreadList(&thread_list); in TEST_F()
308 env->GetThreadList(&thread_list); in TEST_F()
320 env->GetThreadList(&thread_list); in TEST_F()
332 env->GetThreadList(&thread_list); in TEST_F()
/rocksdb-6.9/monitoring/
Dthread_status_updater.cc158 Status ThreadStatusUpdater::GetThreadList( in GetThreadList() function in ROCKSDB_NAMESPACE::ThreadStatusUpdater
292 Status ThreadStatusUpdater::GetThreadList(
Dthread_status_updater.h170 Status GetThreadList(
/rocksdb-6.9/env/
Denv_posix.cc241 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override { in GetThreadList() function in ROCKSDB_NAMESPACE::__anon43aff5a30111::PosixEnv
243 return thread_status_updater_->GetThreadList(thread_list); in GetThreadList()
Dcomposite_env_wrapper.h562 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override { in GetThreadList() function
563 return env_target_->GetThreadList(thread_list); in GetThreadList()
/rocksdb-6.9/java/rocksjni/
Denv.cc127 ROCKSDB_NAMESPACE::Status s = rocks_env->GetThreadList(&thread_status); in Java_org_rocksdb_Env_getThreadList()
/rocksdb-6.9/include/rocksdb/
Denv.h520 virtual Status GetThreadList(std::vector<ThreadStatus>* /*thread_list*/) { in GetThreadList() function
1355 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override { in GetThreadList() function
1356 return target_->GetThreadList(thread_list); in GetThreadList()
/rocksdb-6.9/port/win/
Denv_win.h301 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override;
Denv_win.cc1310 Status WinEnv::GetThreadList(std::vector<ThreadStatus>* thread_list) { in GetThreadList() function in ROCKSDB_NAMESPACE::port::WinEnv
1312 return thread_status_updater_->GetThreadList(thread_list); in GetThreadList()
/rocksdb-6.9/db/
Ddb_test.cc4078 ASSERT_OK(env->GetThreadList(&thread_list)); in VerifyOperationCount()
4095 Status s = env_->GetThreadList(&thread_list); in TEST_F()
4116 s = env_->GetThreadList(&thread_list); in TEST_F()
4395 Status s = env_->GetThreadList(&thread_list); in TEST_P()
4420 Status s = env_->GetThreadList(&thread_list); in TEST_P()
4482 Status s = env_->GetThreadList(&thread_list); in TEST_P()
4507 Status s = env_->GetThreadList(&thread_list); in TEST_P()
Dlistener_test.cc236 ASSERT_OK(env_->GetThreadList(&thread_list)); in OnTableFileCreated()
/rocksdb-6.9/
DHISTORY.md919 * More information about rocksdb background threads are available in Env::GetThreadList(), includin…
963 * Add rocksdb::GetThreadList(), which in the future will return the current status of all
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1922 FLAGS_env->GetThreadList(&thread_list); in PrintThreadStatus()