Histogram

trait Histogram

A Histogram is a metric representing a collection of numerical with the distribution of the cumulative values over time. A typical use of this metric would be to track the time to serve requests. Histograms allow visualizing not only the value of the quantity being measured but its distribution. Histograms are constructed with user specified boundaries which describe the buckets to aggregate values into.

Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def observe(value: Double): UIO[Any]

Adds the specified value to the distribution of values represented by the histogram.

Adds the specified value to the distribution of values represented by the histogram.