| 53 | captureMetric(metricName, metricValue, IMetricType::GAUGE); |
| 54 | } |
| 55 | void IMetricReporter::captureMeter(const char* metricName, int64_t metricValue) { |
| 56 | captureMetric(metricName, metricValue, IMetricType::METER); |
| 57 | } |
| 58 | void IMetricReporter::captureHistogram(const char* metricName, int64_t metricValue) { |
| 59 | captureMetric(metricName, metricValue, IMetricType::HISTOGRAMS); |
| 60 | } |
no outgoing calls
no test coverage detected