| 47 | captureMetric(metricName, 1, IMetricType::COUNT); |
| 48 | } |
| 49 | void IMetricReporter::captureTime(const char* metricName, int64_t metricValue) { |
| 50 | captureMetric(metricName, metricValue, IMetricType::TIMER); |
| 51 | } |
| 52 | void IMetricReporter::captureGauge(const char* metricName, int64_t metricValue) { |
| 53 | captureMetric(metricName, metricValue, IMetricType::GAUGE); |
| 54 | } |
no outgoing calls
no test coverage detected