← All stories
● Covered by 1 source · 1 reportMedium impact1 positive

Kubernetes v1.37 Graduates Native Histograms to Beta, Enabled by Default

🔄 Updated 15h ago
New to BrevFeed? We gather this story from every outlet covering it into one summary — ranked by real-world impact, not just the latest headline — so you never miss what matters. What is BrevFeed? →

Key points

  • Native histograms are now Beta in Kubernetes v1.37.
  • Enabled by default in v1.37.
  • Improves accuracy for latency/duration metrics.
  • Reduces telemetry storage and scraping overhead.

Native Histograms Reach Beta

Native histogram support for Kubernetes metrics has graduated to Beta and is enabled by default in Kubernetes v1.37. This feature, previously introduced as Alpha in Kubernetes v1.36 under KEP-5808, brings high-resolution, low-cardinality observability to Kubernetes metrics.

Addressing Limitations of Classic Histograms

Historically, Kubernetes observability for duration and latency metrics relied on classic Prometheus histograms, which required defining static bucket boundaries. This approach led to challenges such as loss of visibility when workload latency profiles changed, high cardinality and storage costs due to each bucket boundary being a separate time series, and interpolation errors in quantile calculations.

Classic histograms could multiply the number of time series by 10 for a histogram with 10 buckets across multiple labels, increasing memory consumption and storage costs.

Benefits of Prometheus Native Histograms

Prometheus Native Histograms replace static user-defined buckets with dynamic, exponential buckets. Instead of emitting a separate time series for each bucket boundary, a native histogram is stored as a single time series with a rich schema.

This new approach offers high resolution automatically, as exponential buckets dynamically adjust to any value range without pre-configured boundaries. It also reduces the number of time series by up to 90% by consolidating buckets into structured spans within a single time series.

✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →

The daily brief

One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.

One email a day. Unsubscribe in one click, any time.

Today's brief

Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.

~11 min · 9 stories · Sep 12

▶ Play today's brief Listen on Spotify

New every morning, and the back catalogue is archived by date.

Reporting from

Kubernetes v1.37 now includes native histogram support for metrics as a Beta feature, enabled by default. This change improves the accuracy of latency and duration metrics while reducing telemetry storage and scraping overhead by adopting Prometheus Native Histograms.