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 TypeClassDescriptionclassCachedGauge<T>AGaugeimplementation which caches its value for a period of time.classDerivativeGauge<F,T> A gauge whose value is derived from the value of another gauge.classAGaugeimplementation which queries aMBeanServerfor an attribute of an object.classA gauge which measures the ratio of one value to another.Fields in com.codahale.metrics declared as GaugeModifier and TypeFieldDescriptionDerivativeGauge.baseprivate final Gauge<?> JmxReporter.JmxGauge.metricMethods 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 voidvoidJmxReporter.JmxListener.onGaugeAdded(String name, Gauge<?> gauge) voidMetricRegistryListener.Base.onGaugeAdded(String name, Gauge<?> gauge) voidMetricRegistryListener.onGaugeAdded(String name, Gauge<?> gauge) Called when aGaugeis added to the registry.private voidCsvReporter.reportGauge(long timestamp, String name, Gauge gauge) Method parameters in com.codahale.metrics with type arguments of type GaugeModifier and TypeMethodDescriptionprivate voidConsoleReporter.printGauge(Map.Entry<String, Gauge> entry) voidConsoleReporter.report(SortedMap<String, Gauge> gauges, SortedMap<String, Counter> counters, SortedMap<String, Histogram> histograms, SortedMap<String, Meter> meters, SortedMap<String, Timer> timers) voidCsvReporter.report(SortedMap<String, Gauge> gauges, SortedMap<String, Counter> counters, SortedMap<String, Histogram> histograms, SortedMap<String, Meter> meters, SortedMap<String, Timer> timers) abstract voidScheduledReporter.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.voidSlf4jReporter.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 GaugeModifierConstructorDescriptionprotectedDerivativeGauge(Gauge<F> base) Creates a new derivative with the given base gauge.privateJmxGauge(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 voidGraphiteReporter.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
Subclasses with type arguments of type Gauge in com.codahale.metrics.jsonMethods 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 TypeClassDescriptionclassA gauge for the ratio of used to total file descriptors.