| 220 | } |
| 221 | |
| 222 | inline void StatsdClient::count(const std::string& key, |
| 223 | const int delta, |
| 224 | float frequency, |
| 225 | const std::vector<std::string>& tags) const noexcept { |
| 226 | send(key, delta, detail::METRIC_TYPE_COUNT, frequency, tags); |
| 227 | } |
| 228 | |
| 229 | template <typename T> |
| 230 | inline void StatsdClient::gauge(const std::string& key, |
no outgoing calls