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
| Name | Type | Description |
|---|---|---|
| attributes | list<key-value> | The set of key value pairs that uniquely identify the time series. |
| count | u64 | The number of updates this histogram has been calculated with. |
| bounds | list<f64> | The upper bounds of the buckets of the histogram. |
| bucket-counts | list<u64> | The count of each of the buckets. |
| min | option<metric-number> | The minimum value recorded. |
| max | option<metric-number> | The maximum value recorded. |
| sum | metric-number | The sum of the values recorded |
| exemplars | list<exemplar> | The sampled exemplars collected during the time series. |