kumulant

HdrHistogram

@Serializable
@SerialName(value = "HdrHistogram")
data class HdrHistogram(val lowestDiscernibleValue: Double = 0.001, val initialHighestTrackableValue: Double = 100.0, val significantDigits: Int = 3) : SeriesStatSpec<SparseHistogramResult> (source)

Spec for HdrHistogramStat: high-dynamic-range histogram.

Constructors

HdrHistogram

constructor(lowestDiscernibleValue: Double = 0.001, initialHighestTrackableValue: Double = 100.0, significantDigits: Int = 3)(source)

Properties

initialHighestTrackableValue

Initial upper bound; the histogram grows past this if needed.

lowestDiscernibleValue

Smallest value the histogram can distinguish.

significantDigits

Number of significant digits of precision (1..5).