Record
exponential-bucket
A set of bucket counts, encoded in a contiguous array of counts.
record exponential-bucket {
offset: s32,
counts: list<u64>,
}Fields
| Name | Type | Description |
|---|---|---|
| offset | s32 | The bucket index of the first entry in the counts list. |
| counts | list<u64> | A list where counts[i] carries the count of the bucket at index offset + i. |