| 235 | } |
| 236 | |
| 237 | inline void StatsdClient::timing(const std::string& key, |
| 238 | const unsigned int ms, |
| 239 | float frequency, |
| 240 | const std::vector<std::string>& tags) const noexcept { |
| 241 | send(key, ms, detail::METRIC_TYPE_TIMING, frequency, tags); |
| 242 | } |
| 243 | |
| 244 | inline void StatsdClient::set(const std::string& key, |
| 245 | const unsigned int sum, |