| 153 | } |
| 154 | double Statistics::GetQ3(std::string const& tag) { return GetQ3(GetHandle(tag)); } |
| 155 | double Statistics::GetHz(size_t handle) { |
| 156 | std::lock_guard<std::mutex> lock(Instance().mutex_); |
| 157 | return Instance().stats_collectors_[handle].MeanCallsPerSec(); |
| 158 | } |
| 159 | double Statistics::GetHz(std::string const& tag) { return GetHz(GetHandle(tag)); } |
| 160 | |
| 161 | // Delta time statistics. |
nothing calls this directly
no test coverage detected