Uses of Interface
com.codahale.metrics.MetricFilter
Packages that use MetricFilter
-
Uses of MetricFilter in com.codahale.metrics
Fields in com.codahale.metrics declared as MetricFilterModifier and TypeFieldDescriptionstatic final MetricFilter
MetricFilter.ALL
Matches all metrics, regardless of type or name.private MetricFilter
ConsoleReporter.Builder.filter
private MetricFilter
CsvReporter.Builder.filter
private MetricFilter
JmxReporter.Builder.filter
private final MetricFilter
JmxReporter.JmxListener.filter
private final MetricFilter
ScheduledReporter.filter
private MetricFilter
Slf4jReporter.Builder.filter
Methods in com.codahale.metrics with parameters of type MetricFilterModifier and TypeMethodDescriptionConsoleReporter.Builder.filter
(MetricFilter filter) Only report metrics which match the given filter.CsvReporter.Builder.filter
(MetricFilter filter) Only report metrics which match the given filter.JmxReporter.Builder.filter
(MetricFilter filter) Only report metrics which match the given filter.Slf4jReporter.Builder.filter
(MetricFilter filter) Only report metrics which match the given filter.MetricRegistry.getCounters
(MetricFilter filter) Returns a map of all the counters in the registry and their names which match the given filter.MetricRegistry.getGauges
(MetricFilter filter) Returns a map of all the gauges in the registry and their names which match the given filter.MetricRegistry.getHistograms
(MetricFilter filter) Returns a map of all the histograms in the registry and their names which match the given filter.MetricRegistry.getMeters
(MetricFilter filter) Returns a map of all the meters in the registry and their names which match the given filter.MetricRegistry.getMetrics
(Class<T> klass, MetricFilter filter) MetricRegistry.getTimers
(MetricFilter filter) Returns a map of all the timers in the registry and their names which match the given filter.void
MetricRegistry.removeMatching
(MetricFilter filter) Removes all metrics which match the given filter.Constructors in com.codahale.metrics with parameters of type MetricFilterModifierConstructorDescriptionprivate
ConsoleReporter
(MetricRegistry registry, PrintStream output, Locale locale, Clock clock, TimeZone timeZone, TimeUnit rateUnit, TimeUnit durationUnit, MetricFilter filter) private
CsvReporter
(MetricRegistry registry, File directory, Locale locale, TimeUnit rateUnit, TimeUnit durationUnit, Clock clock, MetricFilter filter) private
JmxListener
(MBeanServer mBeanServer, String name, MetricFilter filter, JmxReporter.MetricTimeUnits timeUnits) private
JmxReporter
(MBeanServer mBeanServer, String domain, MetricRegistry registry, MetricFilter filter, JmxReporter.MetricTimeUnits timeUnits) protected
ScheduledReporter
(MetricRegistry registry, String name, MetricFilter filter, TimeUnit rateUnit, TimeUnit durationUnit) Creates a newScheduledReporter
instance.private
Slf4jReporter
(MetricRegistry registry, org.slf4j.Logger logger, org.slf4j.Marker marker, TimeUnit rateUnit, TimeUnit durationUnit, MetricFilter filter) -
Uses of MetricFilter in com.codahale.metrics.graphite
Fields in com.codahale.metrics.graphite declared as MetricFilterMethods in com.codahale.metrics.graphite with parameters of type MetricFilterModifier and TypeMethodDescriptionGraphiteReporter.Builder.filter
(MetricFilter filter) Only report metrics which match the given filter.Constructors in com.codahale.metrics.graphite with parameters of type MetricFilterModifierConstructorDescriptionprivate
GraphiteReporter
(MetricRegistry registry, Graphite graphite, Clock clock, String prefix, TimeUnit rateUnit, TimeUnit durationUnit, MetricFilter filter)