Struct glean_core::metrics::DistributionData [−][src]
Expand description
A snapshot of all buckets and the accumulated sum of a distribution.
Fields
values: HashMap<u64, u64>
A map containig the bucket index mapped to the accumulated count.
This can contain buckets with a count of 0
.
sum: u64
The accumulated sum of all the samples in the distribution.