LiveLoad.Result.PrecomputedQuantiles (LiveLoad v0.0.1-rc.19)

Copy Markdown View Source

Precomputed compact quantile curve materialized from an underlying :ddskerl.ddsketch/0 collected by the LiveLoad scenario telemetry pipeline.

  • :values is a list of 101 numbers — the quantile function evaluated at 1% intervals from 0.00 to 1.00. Quantile points are listed in the parent LiveLoad.Result :quantile_points field.
  • :count is the number of observations that occured on the sketch.
  • :sum is the total of all observed values, enabling a mean (in the mathematical sense, but also in the coolness sense) calculation via sum / count.

Summary

Types

t()

@type t() :: %LiveLoad.Result.PrecomputedQuantiles{
  count: non_neg_integer(),
  sum: number(),
  values: [number()]
}