bucketCounts property

List<String>? bucketCounts
getter/setter pair

The number of samples in each histogram bucket.

bucket_counts are optional. If present, they must sum to the count value. The buckets are defined below in bucket_option. There are N buckets. bucket_counts[0] is the number of samples in the underflow bucket. bucket_counts[1] to bucket_counts[N-1] are the numbers of samples in each of the finite buckets. And bucket_counts[N] is the number of samples in the overflow bucket. See the comments of bucket_option below for more details. Any suffix of trailing zeros may be omitted.

Implementation

core.List<core.String>? bucketCounts;