Record

histogram-data-point

A single data point in a time series to be associated with a histogram.

record histogram-data-point {
  attributes: list​<key-value>,
  count: u64,
  bounds: list​<f64>,
  bucket-counts: list​<u64>,
  min: option​<metric-number>,
  max: option​<metric-number>,
  sum: metric-number,
  exemplars: list​<exemplar>,
}

Fields

NameTypeDescription
attributeslist​<key-value>

The set of key value pairs that uniquely identify the time series.

countu64

The number of updates this histogram has been calculated with.

boundslist​<f64>

The upper bounds of the buckets of the histogram.

bucket-countslist​<u64>

The count of each of the buckets.

minoption​<metric-number>

The minimum value recorded.

maxoption​<metric-number>

The maximum value recorded.

summetric-number

The sum of the values recorded

exemplarslist​<exemplar>

The sampled exemplars collected during the time series.