| 128 | } |
| 129 | double Statistics::GetVariance(std::string const& tag) { return GetVariance(GetHandle(tag)); } |
| 130 | double Statistics::GetMin(size_t handle) { |
| 131 | std::lock_guard<std::mutex> lock(Instance().mutex_); |
| 132 | return Instance().stats_collectors_[handle].Min(); |
| 133 | } |
| 134 | double Statistics::GetMin(std::string const& tag) { return GetMin(GetHandle(tag)); } |
| 135 | double Statistics::GetMax(size_t handle) { |
| 136 | std::lock_guard<std::mutex> lock(Instance().mutex_); |