report method
void
report()
Report the current values of all metrics in the registry.
Implementation
void report() {
reportMetrics(
gauges: _registry.getGauges(where: where),
counters: _registry.getCounters(where: where),
histograms: _registry.getHistograms(where: where),
meters: _registry.getMeters(where: where),
timers: _registry.getTimers(where: where),
);
}