| 55 | |
| 56 | template <typename T> |
| 57 | void gauge(const std::string& key, const T value, const bool prefixOnly = true) { |
| 58 | m_stats->gauge(key, value); |
| 59 | if (!prefixOnly) m_stats_noprefix->gauge(key, value); |
| 60 | } |
| 61 | |
| 62 | void timing(const std::string& key, const unsigned int ms, const bool prefixOnly = true) { |
| 63 | m_stats->timing(key, ms); |
no outgoing calls
no test coverage detected