Interface TaggedMetricSet
-
- All Known Subinterfaces:
TaggedMetricRegistry
- All Known Implementing Classes:
AbstractTaggedMetricRegistry,DefaultTaggedMetricRegistry,DropwizardTaggedMetricSet,SlidingWindowTaggedMetricRegistry
public interface TaggedMetricSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidforEachMetric(java.util.function.BiConsumer<MetricName,com.codahale.metrics.Metric> consumer)java.util.Map<MetricName,com.codahale.metrics.Metric>getMetrics()Returns a map of metrics.
-
-
-
Method Detail
-
getMetrics
java.util.Map<MetricName,com.codahale.metrics.Metric> getMetrics()
Returns a map of metrics.- Returns:
- map of metrics
-
forEachMetric
default void forEachMetric(java.util.function.BiConsumer<MetricName,com.codahale.metrics.Metric> consumer)
-
-