| 242 | } |
| 243 | |
| 244 | inline void StatsdClient::set(const std::string& key, |
| 245 | const unsigned int sum, |
| 246 | float frequency, |
| 247 | const std::vector<std::string>& tags) const noexcept { |
| 248 | send(key, sum, detail::METRIC_TYPE_SET, frequency, tags); |
| 249 | } |
| 250 | |
| 251 | template <typename T> |
| 252 | inline void StatsdClient::send(const std::string& key, |