ValueHistogram

data class ValueHistogram(val sum: Double, val buckets: List<Double>, val created: Long)

Represents the current state of a histogram, including the sum of observed values, the cumulative counts for each bucket, and the creation timestamp.

Constructors

Link copied to clipboard
constructor(sum: Double, buckets: List<Double>, created: Long)

Properties

Link copied to clipboard

The cumulative counts for each bucket.

Link copied to clipboard

The timestamp when the histogram was created.

Link copied to clipboard
val sum: Double

The sum of all observed values.