Package io.prometheus.client
Class Histogram
- java.lang.Object
-
- io.prometheus.client.Collector
-
- io.prometheus.client.SimpleCollector<Histogram.Child>
-
- io.prometheus.client.Histogram
-
- All Implemented Interfaces:
Collector.Describable
public class Histogram extends SimpleCollector<Histogram.Child> implements Collector.Describable
Histogram metric, to track distributions of events.Example of uses for Histograms include:
- Response latency
- Request size
Note: Each bucket is one timeseries. Many buckets and/or many dimensions with labels can produce large amount of time series, that may cause performance problems.
The default buckets are intended to cover a typical web/rpc request from milliseconds to seconds.
Example Histograms:
class YourClass { static final Histogram requestLatency = Histogram.build() .name("requests_latency_seconds").help("Request latency in seconds.").register(); void processRequest(Request req) { Histogram.Timer requestTimer = requestLatency.startTimer(); try { // Your code here. } finally { requestTimer.observeDuration(); } } // Or if using Java 8 lambdas. void processRequestLambda(Request req) { requestLatency.time(() -> { // Your code here. }); } }You can choose your own buckets:
static final Histogram requestLatency = Histogram.build() .buckets(.01, .02, .03, .04) .name("requests_latency_seconds").help("Request latency in seconds.").register();linearBucketsandexponentialBucketsoffer easy ways to set common bucket patterns.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHistogram.Builderstatic classHistogram.ChildThe value of a single Histogram.static classHistogram.TimerRepresents an event being timed.-
Nested classes/interfaces inherited from class io.prometheus.client.Collector
Collector.Describable, Collector.MetricFamilySamples, Collector.Type
-
-
Field Summary
-
Fields inherited from class io.prometheus.client.SimpleCollector
children, fullname, help, labelNames, noLabelsChild
-
Fields inherited from class io.prometheus.client.Collector
MILLISECONDS_PER_SECOND, NANOSECONDS_PER_SECOND
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Histogram.Builderbuild()Return a Builder to allow configuration of a new Histogram.static Histogram.Builderbuild(String name, String help)Return a Builder to allow configuration of a new Histogram.List<Collector.MetricFamilySamples>collect()Return all of the metrics of this Collector.List<Collector.MetricFamilySamples>describe()Provide a list of metric families this Collector is expected to return.protected Histogram.ChildnewChild()Return a new child, workaround for Java generics limitations.voidobserve(double amt)Observe the given amount on the histogram with no labels.Histogram.TimerstartTimer()Start a timer to track a duration on the histogram with no labels.doubletime(Runnable timeable)Executes runnable code (e.g.<E> Etime(Callable<E> timeable)Executes callable code (e.g.-
Methods inherited from class io.prometheus.client.SimpleCollector
clear, familySamplesList, initializeNoLabelsChild, labels, remove, setChild
-
Methods inherited from class io.prometheus.client.Collector
checkMetricLabelName, checkMetricName, doubleToGoString, register, register, sanitizeMetricName
-
-
-
-
Method Detail
-
build
public static Histogram.Builder build(String name, String help)
Return a Builder to allow configuration of a new Histogram. Ensures required fields are provided.- Parameters:
name- The name of the metrichelp- The help string of the metric
-
build
public static Histogram.Builder build()
Return a Builder to allow configuration of a new Histogram.
-
newChild
protected Histogram.Child newChild()
Description copied from class:SimpleCollectorReturn a new child, workaround for Java generics limitations.- Specified by:
newChildin classSimpleCollector<Histogram.Child>
-
observe
public void observe(double amt)
Observe the given amount on the histogram with no labels.
-
startTimer
public Histogram.Timer startTimer()
Start a timer to track a duration on the histogram with no labels.Call
Histogram.Timer.observeDuration()at the end of what you want to measure the duration of.
-
time
public double time(Runnable timeable)
Executes runnable code (e.g. a Java 8 Lambda) and observes a duration of how long it took to run.- Parameters:
timeable- Code that is being timed- Returns:
- Measured duration in seconds for timeable to complete.
-
time
public <E> E time(Callable<E> timeable)
Executes callable code (e.g. a Java 8 Lambda) and observes a duration of how long it took to run.- Parameters:
timeable- Code that is being timed- Returns:
- Result returned by callable.
-
collect
public List<Collector.MetricFamilySamples> collect()
Description copied from class:CollectorReturn all of the metrics of this Collector.
-
describe
public List<Collector.MetricFamilySamples> describe()
Description copied from interface:Collector.DescribableProvide a list of metric families this Collector is expected to return. These should exclude the samples. This is used by the registry to detect collisions and duplicate registrations. Usually custom collectors do not have to implement Describable. If Describable is not implemented and the CollectorRegistry was created with auto describe enabled (which is the case for the default registry) thenCollector.collect()will be called at registration time instead of describe. If this could cause problems, either implement a proper describe, or if that's not practical have describe return an empty list.- Specified by:
describein interfaceCollector.Describable
-
-