Wasm Directoryalpha
Record

exponential-histogram-data-point

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

record exponential-histogram-data-point {
  attributes: list​<key-value>,
  count: u64,
  min: option​<metric-number>,
  max: option​<metric-number>,
  sum: metric-number,
  scale: s8,
  zero-count: u64,
  positive-bucket: exponential-bucket,
  negative-bucket: exponential-bucket,
  zero-threshold: f64,
  exemplars: list​<exemplar>,
}

Fields

NameTypeDescription
attributeslist​<key-value>The set of key value pairs that uniquely identify the time series.
countu64The number of updates this histogram has been calculated with.
minoption​<metric-number>The minimum value recorded.
maxoption​<metric-number>The maximum value recorded.
summetric-numberThe maximum value recorded.
scales8Describes the resolution of the histogram.
zero-countu64The number of values whose absolute value is less than or equal to zero_threshold.
positive-bucketexponential-bucketThe range of positive value bucket counts.
negative-bucketexponential-bucketThe range of negative value bucket counts.
zero-thresholdf64The width of the zero region.
exemplarslist​<exemplar>The sampled exemplars collected during the time series.