Histogram
Histograms track the size and number of events in buckets. This allows for aggregatable calculation of quantiles.
from prometheus_client import Histogram
h = Histogram('request_latency_seconds', 'Description of histogram')
h.observe(4.7) # Observe 4.7 (seconds in this case)
The default buckets are intended to cover a typical web/rpc request from milliseconds to seconds.
They can be overridden by passing buckets
keyword argument to Histogram
.
There are utilities for timing code:
@h.time()
def f():
pass
with h.time():
pass