I'm using multiple Prometheus histogram metrics following the pattern *_duration_seconds_bucket that represent latency breakdown across my pipeline. These metrics track iterations typically taking ~100ms, and I'm using le="+Inf" buckets in my queries. Currently displaying this data in Table, Bar Chart, and Histogram panels.
Two issues specifically with the Histogram panel only:
X-axis bucket width: The histogram automatically sets intervals (currently 2.40ms). Is it possible to manually define these intervals (e.g., 0.5ms) through dashboard variables or panel settings? Y-axis decimal issue: The y-axis shows count values with decimals (0.5, 1.5) which doesn't make sense for count data. When I set decimals=0 in panel options, it causes duplicate labels on the axis (2-2, 3-3). How can I properly display whole numbers without this duplication?
Thx
