| 49 | } |
| 50 | |
| 51 | void count(const std::string& key, const int delta, const bool prefixOnly = true) { |
| 52 | m_stats->count(key, delta); |
| 53 | if (!prefixOnly) m_stats_noprefix->count(key, delta); |
| 54 | } |
| 55 | |
| 56 | template <typename T> |
| 57 | void gauge(const std::string& key, const T value, const bool prefixOnly = true) { |
no outgoing calls
no test coverage detected