Record

exponential-bucket

A set of bucket counts, encoded in a contiguous array of counts.

record exponential-bucket {
  offset: s32,
  counts: list​<u64>,
}

Fields

NameTypeDescription
offsets32

The bucket index of the first entry in the counts list.

countslist​<u64>

A list where counts[i] carries the count of the bucket at index offset + i.

counts[i] is the count of values greater than base^(offset+i) and less than or equal to base^(offset+i+1).