Configure Histogram buckets
mainWhen creating a Histogram, you can provide a custom array of buckets. If you pass an empty array, default buckets are used. To generate exponential/geometric buckets, use the Histogram::exponentialBuckets helper.
Example: Histogram::exponentialBuckets(0.05, 1.5, 10) creates 10 buckets starting at 0.05, where each bucket is 1.5x larger than the previous one.
// Example of generating exponential buckets
// Note: This is a conceptual usage of the helper method
Histogram::exponentialBuckets(0.05, 1.5, 10);