Modifier and Type | Method and Description |
---|---|
Timer |
MetricRegistry.timer(String name)
|
Timer |
MetricRegistry.timer(String name,
MetricRegistry.MetricSupplier<Timer> supplier)
|
Modifier and Type | Method and Description |
---|---|
SortedMap<String,Timer> |
MetricRegistry.getTimers()
Returns a map of all the timers in the registry and their names.
|
SortedMap<String,Timer> |
MetricRegistry.getTimers(MetricFilter filter)
Returns a map of all the timers in the registry and their names which match the given filter.
|
Modifier and Type | Method and Description |
---|---|
void |
MetricRegistryListener.onTimerAdded(String name,
Timer timer)
Called when a
Timer is added to the registry. |
void |
MetricRegistryListener.Base.onTimerAdded(String name,
Timer timer) |
Modifier and Type | Method and Description |
---|---|
abstract void |
ScheduledReporter.report(SortedMap<String,Gauge> gauges,
SortedMap<String,Counter> counters,
SortedMap<String,Histogram> histograms,
SortedMap<String,Meter> meters,
SortedMap<String,Timer> timers)
Called periodically by the polling thread.
|
void |
CsvReporter.report(SortedMap<String,Gauge> gauges,
SortedMap<String,Counter> counters,
SortedMap<String,Histogram> histograms,
SortedMap<String,Meter> meters,
SortedMap<String,Timer> timers) |
void |
Slf4jReporter.report(SortedMap<String,Gauge> gauges,
SortedMap<String,Counter> counters,
SortedMap<String,Histogram> histograms,
SortedMap<String,Meter> meters,
SortedMap<String,Timer> timers) |
void |
ConsoleReporter.report(SortedMap<String,Gauge> gauges,
SortedMap<String,Counter> counters,
SortedMap<String,Histogram> histograms,
SortedMap<String,Meter> meters,
SortedMap<String,Timer> timers) |
Timer |
MetricRegistry.timer(String name,
MetricRegistry.MetricSupplier<Timer> supplier)
|
Copyright © 2017. All Rights Reserved.