| 214 | } |
| 215 | |
| 216 | inline void StatsdClient::increment(const std::string& key, |
| 217 | float frequency, |
| 218 | const std::vector<std::string>& tags) const noexcept { |
| 219 | count(key, 1, frequency, tags); |
| 220 | } |
| 221 | |
| 222 | inline void StatsdClient::count(const std::string& key, |
| 223 | const int delta, |
no outgoing calls