SortedMap<MetricID,Counter> |
MetricRegistry.getCounters() |
Returns a map of all the counters in the registry and their MetricIDs.
|
SortedMap<MetricID,Counter> |
MetricRegistry.getCounters(MetricFilter filter) |
Returns a map of all the counters in the registry and their MetricIDs which match the given filter.
|
SortedMap<MetricID,Gauge> |
MetricRegistry.getGauges() |
Returns a map of all the gauges in the registry and their MetricIDs.
|
SortedMap<MetricID,Gauge> |
MetricRegistry.getGauges(MetricFilter filter) |
Returns a map of all the gauges in the registry and their MetricIDs which match the given filter.
|
SortedMap<MetricID,Histogram> |
MetricRegistry.getHistograms() |
Returns a map of all the histograms in the registry and their MetricIDs.
|
SortedMap<MetricID,Histogram> |
MetricRegistry.getHistograms(MetricFilter filter) |
Returns a map of all the histograms in the registry and their MetricIDs which match the given filter.
|
SortedSet<MetricID> |
MetricRegistry.getMetricIDs() |
Returns a set of the MetricIDs of all the metrics in the registry.
|
Map<MetricID,Metric> |
MetricRegistry.getMetrics() |
Returns a map of all the metrics in the registry and their MetricIDs at query time.
|
<T extends Metric> SortedMap<MetricID,T> |
MetricRegistry.getMetrics(Class<T> ofType,
MetricFilter filter) |
Returns a map of all the metrics in the registry and their MetricIDs which match the given filter and
which are assignable to the provided type.
|
SortedMap<MetricID,Metric> |
MetricRegistry.getMetrics(MetricFilter filter) |
Returns a map of all the metrics in the registry and their MetricIDs which match the given filter.
|
SortedMap<MetricID,Timer> |
MetricRegistry.getTimers() |
Returns a map of all the timers in the registry and their MetricIDs.
|
SortedMap<MetricID,Timer> |
MetricRegistry.getTimers(MetricFilter filter) |
Returns a map of all the timers in the registry and their MetricIDs which match the given filter.
|