MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / captureMeter

Method captureMeter

src/IMetric.cpp:55–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 4

Future<Void> toDocInfoFunction · 0.80
Future<Void> doPKScanFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected