| 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_); |
| 137 | return Instance().stats_collectors_[handle].Max(); |
| 138 | } |
| 139 | double Statistics::GetMax(std::string const& tag) { return GetMax(GetHandle(tag)); } |
| 140 | double Statistics::GetMedian(size_t handle) { |
| 141 | std::lock_guard<std::mutex> lock(Instance().mutex_); |