Uses of Class
com.codahale.metrics.Histogram
-
Packages that use Histogram Package Description com.codahale.metrics com.codahale.metrics.graphite com.codahale.metrics.json -
-
Uses of Histogram in com.codahale.metrics
Fields in com.codahale.metrics declared as Histogram Modifier and Type Field Description private Histogram
Timer. histogram
private Histogram
JmxReporter.JmxHistogram. metric
Fields in com.codahale.metrics with type parameters of type Histogram Modifier and Type Field Description static MetricRegistry.MetricBuilder<Histogram>
MetricRegistry.MetricBuilder. HISTOGRAMS
Methods in com.codahale.metrics that return Histogram Modifier and Type Method Description Histogram
MetricRegistry. histogram(java.lang.String name)
Creates a newHistogram
and registers it under the given name.Methods in com.codahale.metrics that return types with arguments of type Histogram Modifier and Type Method Description java.util.SortedMap<java.lang.String,Histogram>
MetricRegistry. getHistograms()
Returns a map of all the histograms in the registry and their names.java.util.SortedMap<java.lang.String,Histogram>
MetricRegistry. getHistograms(MetricFilter filter)
Returns a map of all the histograms in the registry and their names which match the given filter.Methods in com.codahale.metrics with parameters of type Histogram Modifier and Type Method Description private void
Slf4jReporter. logHistogram(java.lang.String name, Histogram histogram)
void
JmxReporter.JmxListener. onHistogramAdded(java.lang.String name, Histogram histogram)
void
MetricRegistryListener.Base. onHistogramAdded(java.lang.String name, Histogram histogram)
void
MetricRegistryListener. onHistogramAdded(java.lang.String name, Histogram histogram)
Called when aHistogram
is added to the registry.private void
ConsoleReporter. printHistogram(Histogram histogram)
private void
CsvReporter. reportHistogram(long timestamp, java.lang.String name, Histogram histogram)
Constructors in com.codahale.metrics with parameters of type Histogram Constructor Description JmxHistogram(Histogram metric, javax.management.ObjectName objectName)
-
Uses of Histogram in com.codahale.metrics.graphite
Methods in com.codahale.metrics.graphite with parameters of type Histogram Modifier and Type Method Description private void
GraphiteReporter. reportHistogram(java.lang.String name, Histogram histogram, long timestamp)
-
Uses of Histogram in com.codahale.metrics.json
Methods in com.codahale.metrics.json with parameters of type Histogram Modifier and Type Method Description void
MetricsModule.HistogramSerializer. serialize(Histogram histogram, com.fasterxml.jackson.core.JsonGenerator json, com.fasterxml.jackson.databind.SerializerProvider provider)
-