| Modifier and Type | Class and Description |
|---|---|
static interface |
MetricRegistry.MetricSupplier<T extends Metric> |
| Constructor and Description |
|---|
MetricRegistry()
Creates a new
MetricRegistry. |
| Modifier and Type | Method and Description |
|---|---|
void |
addListener(MetricRegistryListener listener)
Adds a
MetricRegistryListener to a collection of listeners that will be notified on
metric creation. |
protected ConcurrentMap<MetricName,Metric> |
buildMap()
Creates a new
ConcurrentMap implementation for use inside the registry. |
Counter |
counter(MetricName name)
|
<T extends Counter> |
counter(MetricName name,
MetricRegistry.MetricSupplier<T> supplier)
|
Counter |
counter(String name) |
Gauge |
gauge(MetricName name,
MetricRegistry.MetricSupplier<Gauge> supplier)
|
SortedMap<MetricName,Counter> |
getCounters()
Returns a map of all the counters in the registry and their names.
|
SortedMap<MetricName,Counter> |
getCounters(MetricFilter filter)
Returns a map of all the counters in the registry and their names which match the given
filter.
|
SortedMap<MetricName,Gauge> |
getGauges()
Returns a map of all the gauges in the registry and their names.
|
SortedMap<MetricName,Gauge> |
getGauges(MetricFilter filter)
Returns a map of all the gauges in the registry and their names which match the given filter.
|
SortedMap<MetricName,Histogram> |
getHistograms()
Returns a map of all the histograms in the registry and their names.
|
SortedMap<MetricName,Histogram> |
getHistograms(MetricFilter filter)
Returns a map of all the histograms in the registry and their names which match the given
filter.
|
SortedMap<MetricName,Meter> |
getMeters()
Returns a map of all the meters in the registry and their names.
|
SortedMap<MetricName,Meter> |
getMeters(MetricFilter filter)
Returns a map of all the meters in the registry and their names which match the given filter.
|
Map<MetricName,Metric> |
getMetrics()
A map of metric names to metrics.
|
SortedSet<MetricName> |
getNames()
Returns a set of the names of all the metrics in the registry.
|
SortedMap<MetricName,Timer> |
getTimers()
Returns a map of all the timers in the registry and their names.
|
SortedMap<MetricName,Timer> |
getTimers(MetricFilter filter)
Returns a map of all the timers in the registry and their names which match the given filter.
|
Histogram |
histogram(MetricName name)
|
Histogram |
histogram(MetricName name,
MetricRegistry.MetricSupplier<Histogram> supplier)
|
Histogram |
histogram(String name) |
Meter |
meter(MetricName name)
|
Meter |
meter(MetricName name,
MetricRegistry.MetricSupplier<Meter> supplier)
|
Meter |
meter(String name) |
static MetricName |
name(Class<?> klass,
String... names)
Concatenates a class name and elements to form a dotted name, eliding any null values or
empty strings.
|
static MetricName |
name(String name,
String... names)
Concatenates elements to form a dotted name, eliding any null values or empty strings.
|
<T extends Metric> |
register(MetricName name,
T metric)
Given a
Metric, registers it under the given name. |
<T extends Metric> |
register(String name,
T metric) |
void |
registerAll(MetricName prefix,
MetricSet metrics) |
void |
registerAll(MetricSet metrics)
Given a metric set, registers them.
|
boolean |
remove(MetricName name)
Removes the metric with the given name.
|
void |
removeListener(MetricRegistryListener listener)
Removes a
MetricRegistryListener from this registry's collection of listeners. |
void |
removeMatching(MetricFilter filter)
Removes all metrics which match the given filter.
|
Timer |
timer(MetricName name)
|
Timer |
timer(MetricName name,
MetricRegistry.MetricSupplier<Timer> supplier)
|
Timer |
timer(String name) |
public MetricRegistry()
MetricRegistry.public static MetricName name(String name, String... names)
name - the first element of the namenames - the remaining elements of the namename and names concatenated by periodspublic static MetricName name(Class<?> klass, String... names)
klass - the first element of the namenames - the remaining elements of the nameklass and names concatenated by periodsprotected ConcurrentMap<MetricName,Metric> buildMap()
ConcurrentMap implementation for use inside the registry. Override this
to create a MetricRegistry with space- or time-bounded metric lifecycles, for
example.ConcurrentMappublic <T extends Metric> T register(String name, T metric) throws IllegalArgumentException
IllegalArgumentExceptionregister(MetricName, Metric)public <T extends Metric> T register(MetricName name, T metric) throws IllegalArgumentException
Metric, registers it under the given name.T - the type of the metricname - the name of the metricmetric - the metricmetricIllegalArgumentException - if the name is already registeredpublic void registerAll(MetricSet metrics) throws IllegalArgumentException
metrics - a set of metricsIllegalArgumentException - if any of the names are already registeredpublic Counter counter(String name)
counter(MetricName)public Counter counter(MetricName name)
Counter registered under this name; or create and register
a new Counter if none is registered.name - the name of the metricCounterpublic Histogram histogram(String name)
histogram(MetricName)public <T extends Counter> T counter(MetricName name, MetricRegistry.MetricSupplier<T> supplier)
Counter registered under this name; or create and register
a new Counter using the provided MetricSupplier if none is registered.name - the name of the metricsupplier - a MetricSupplier that can be used to manufacture a counter.Counterpublic Histogram histogram(MetricName name)
Histogram registered under this name; or create and register
a new Histogram if none is registered.name - the name of the metricHistogrampublic Meter meter(String name)
meter(MetricName)public Histogram histogram(MetricName name, MetricRegistry.MetricSupplier<Histogram> supplier)
Histogram registered under this name; or create and register
a new Histogram using the provided MetricSupplier if none is registered.name - the name of the metricsupplier - a MetricSupplier that can be used to manufacture a histogramHistogrampublic Meter meter(MetricName name)
Meter registered under this name; or create and register
a new Meter if none is registered.name - the name of the metricMeterpublic Timer timer(String name)
timer(MetricName)public Meter meter(MetricName name, MetricRegistry.MetricSupplier<Meter> supplier)
Meter registered under this name; or create and register
a new Meter using the provided MetricSupplier if none is registered.name - the name of the metricsupplier - a MetricSupplier that can be used to manufacture a MeterMeterpublic Timer timer(MetricName name)
Timer registered under this name; or create and register
a new Timer if none is registered.name - the name of the metricTimerpublic Timer timer(MetricName name, MetricRegistry.MetricSupplier<Timer> supplier)
Timer registered under this name; or create and register
a new Timer using the provided MetricSupplier if none is registered.name - the name of the metricsupplier - a MetricSupplier that can be used to manufacture a TimerTimerpublic Gauge gauge(MetricName name, MetricRegistry.MetricSupplier<Gauge> supplier)
Gauge registered under this name; or create and register
a new Gauge using the provided MetricSupplier if none is registered.name - the name of the metricsupplier - a MetricSupplier that can be used to manufacture a GaugeGaugepublic boolean remove(MetricName name)
name - the name of the metricpublic void removeMatching(MetricFilter filter)
filter - a filterpublic void addListener(MetricRegistryListener listener)
MetricRegistryListener to a collection of listeners that will be notified on
metric creation. Listeners will be notified in the order in which they are added.
N.B.: The listener will be notified of all existing metrics when it first registers.listener - the listener that will be notifiedpublic void removeListener(MetricRegistryListener listener)
MetricRegistryListener from this registry's collection of listeners.listener - the listener that will be removedpublic SortedSet<MetricName> getNames()
public SortedMap<MetricName,Gauge> getGauges()
public SortedMap<MetricName,Gauge> getGauges(MetricFilter filter)
filter - the metric filter to matchpublic SortedMap<MetricName,Counter> getCounters()
public SortedMap<MetricName,Counter> getCounters(MetricFilter filter)
filter - the metric filter to matchpublic SortedMap<MetricName,Histogram> getHistograms()
public SortedMap<MetricName,Histogram> getHistograms(MetricFilter filter)
filter - the metric filter to matchpublic SortedMap<MetricName,Meter> getMeters()
public SortedMap<MetricName,Meter> getMeters(MetricFilter filter)
filter - the metric filter to matchpublic SortedMap<MetricName,Timer> getTimers()
public SortedMap<MetricName,Timer> getTimers(MetricFilter filter)
filter - the metric filter to matchpublic void registerAll(MetricName prefix, MetricSet metrics) throws IllegalArgumentException
IllegalArgumentExceptionpublic Map<MetricName,Metric> getMetrics()
MetricSetgetMetrics in interface MetricSetCopyright © 2018. All Rights Reserved.