bucketCounts property

  1. @TagNumber.new(2)
List<Int64> get bucketCounts

bucket_counts is an array of count values, where bucket_countsi carries the count of the bucket at index (offset+i). bucket_countsi is the count of values greater than base^(offset+i) and less than or equal to base^(offset+i+1).

Note: By contrast, the explicit HistogramDataPoint uses fixed64. This field is expected to have many buckets, especially zeros, so uint64 has been selected to ensure varint encoding.

Implementation

@$pb.TagNumber(2)
$core.List<$fixnum.Int64> get bucketCounts => $_getList(1);