ValueSummary

data class ValueSummary(val count: Double, val sum: Double, val quantiles: Map<Double, Double>?, val created: Long)

Represents the current state of a summary, including the count, sum, quantiles, and creation timestamp.

Constructors

Link copied to clipboard
constructor(count: Double, sum: Double, quantiles: Map<Double, Double>?, created: Long)

Properties

Link copied to clipboard

The total number of observations.

Link copied to clipboard

The timestamp when the summary was created.

Link copied to clipboard

A map of quantile values to their observed values, or null if no quantiles are defined.

Link copied to clipboard
val sum: Double

The sum of all observed values.