Uses of Interface
com.codahale.metrics.Gauge
Packages that use Gauge
Package
Description
-
Uses of Gauge in com.codahale.metrics
Classes in com.codahale.metrics that implement GaugeModifier and TypeClassDescriptionclass
CachedGauge<T>
AGauge
implementation which caches its value for a period of time.class
DerivativeGauge<F,
T> A gauge whose value is derived from the value of another gauge.class
AGauge
implementation which queries aMBeanServer
for an attribute of an object.class
A gauge which measures the ratio of one value to another.Fields in com.codahale.metrics declared as GaugeModifier and TypeFieldDescriptionDerivativeGauge.base
private final Gauge
<?> JmxReporter.JmxGauge.metric
Methods in com.codahale.metrics that return types with arguments of type GaugeModifier and TypeMethodDescriptionMetricRegistry.getGauges()
Returns a map of all the gauges in the registry and their names.MetricRegistry.getGauges
(MetricFilter filter) Returns a map of all the gauges in the registry and their names which match the given filter.Methods in com.codahale.metrics with parameters of type GaugeModifier and TypeMethodDescriptionprivate void
void
JmxReporter.JmxListener.onGaugeAdded
(String name, Gauge<?> gauge) void
MetricRegistryListener.Base.onGaugeAdded
(String name, Gauge<?> gauge) void
MetricRegistryListener.onGaugeAdded
(String name, Gauge<?> gauge) Called when aGauge
is added to the registry.private void
CsvReporter.reportGauge
(long timestamp, String name, Gauge gauge) Method parameters in com.codahale.metrics with type arguments of type GaugeModifier and TypeMethodDescriptionprivate void
ConsoleReporter.printGauge
(Map.Entry<String, Gauge> entry) void
ConsoleReporter.report
(SortedMap<String, Gauge> gauges, SortedMap<String, Counter> counters, SortedMap<String, Histogram> histograms, SortedMap<String, Meter> meters, SortedMap<String, Timer> timers) void
CsvReporter.report
(SortedMap<String, Gauge> gauges, SortedMap<String, Counter> counters, SortedMap<String, Histogram> histograms, SortedMap<String, Meter> meters, SortedMap<String, Timer> timers) abstract void
ScheduledReporter.report
(SortedMap<String, Gauge> gauges, SortedMap<String, Counter> counters, SortedMap<String, Histogram> histograms, SortedMap<String, Meter> meters, SortedMap<String, Timer> timers) Called periodically by the polling thread.void
Slf4jReporter.report
(SortedMap<String, Gauge> gauges, SortedMap<String, Counter> counters, SortedMap<String, Histogram> histograms, SortedMap<String, Meter> meters, SortedMap<String, Timer> timers) Constructors in com.codahale.metrics with parameters of type GaugeModifierConstructorDescriptionprotected
DerivativeGauge
(Gauge<F> base) Creates a new derivative with the given base gauge.private
JmxGauge
(Gauge<?> metric, ObjectName objectName) -
Uses of Gauge in com.codahale.metrics.graphite
Methods in com.codahale.metrics.graphite with parameters of type GaugeModifier and TypeMethodDescriptionprivate void
GraphiteReporter.reportGauge
(String name, Gauge gauge, long timestamp) Method parameters in com.codahale.metrics.graphite with type arguments of type Gauge -
Uses of Gauge in com.codahale.metrics.json
Methods in com.codahale.metrics.json with parameters of type Gauge -
Uses of Gauge in com.codahale.metrics.jvm
Classes in com.codahale.metrics.jvm that implement GaugeModifier and TypeClassDescriptionclass
A gauge for the ratio of used to total file descriptors.