| 228 | |
| 229 | template <typename T> |
| 230 | inline void StatsdClient::gauge(const std::string& key, |
| 231 | const T value, |
| 232 | const float frequency, |
| 233 | const std::vector<std::string>& tags) const noexcept { |
| 234 | send(key, value, detail::METRIC_TYPE_GAUGE, frequency, tags); |
| 235 | } |
| 236 | |
| 237 | inline void StatsdClient::timing(const std::string& key, |
| 238 | const unsigned int ms, |