Searched refs:GetThreadList (Results 1 – 14 of 14) sorted by relevance
2 title: GetThreadList10 …GetThreadList()`, 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 instances152 The `GetThreadList()` API simply returns a vector of `ThreadStatus`, each describes193 …nd thread activity of your RocksDB application, please feel free to give `GetThreadList()` a try :)
148 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()
158 Status ThreadStatusUpdater::GetThreadList( in GetThreadList() function in ROCKSDB_NAMESPACE::ThreadStatusUpdater292 Status ThreadStatusUpdater::GetThreadList(
170 Status GetThreadList(
241 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override { in GetThreadList() function in ROCKSDB_NAMESPACE::__anon43aff5a30111::PosixEnv243 return thread_status_updater_->GetThreadList(thread_list); in GetThreadList()
562 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override { in GetThreadList() function563 return env_target_->GetThreadList(thread_list); in GetThreadList()
127 ROCKSDB_NAMESPACE::Status s = rocks_env->GetThreadList(&thread_status); in Java_org_rocksdb_Env_getThreadList()
520 virtual Status GetThreadList(std::vector<ThreadStatus>* /*thread_list*/) { in GetThreadList() function1355 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override { in GetThreadList() function1356 return target_->GetThreadList(thread_list); in GetThreadList()
301 Status GetThreadList(std::vector<ThreadStatus>* thread_list) override;
1310 Status WinEnv::GetThreadList(std::vector<ThreadStatus>* thread_list) { in GetThreadList() function in ROCKSDB_NAMESPACE::port::WinEnv1312 return thread_status_updater_->GetThreadList(thread_list); in GetThreadList()
4078 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()
236 ASSERT_OK(env_->GetThreadList(&thread_list)); in OnTableFileCreated()
919 * 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
1922 FLAGS_env->GetThreadList(&thread_list); in PrintThreadStatus()