package com.codahale.metrics;

import java.util.Map;

A set of named metrics.
See Also:
  • registerAll.registerAll(MetricSet)
/** * A set of named metrics. * * @see MetricRegistry#registerAll(MetricSet) */
public interface MetricSet extends Metric {
A map of metric names to metrics.
Returns:the metrics
/** * A map of metric names to metrics. * * @return the metrics */
Map<String, Metric> getMetrics(); }