prometheus.histogramQuantile() function

The prometheus.histogramQuantile() function is experimental and subject to change at any time. By using this function, you accept the risks of experimental functions.

The prometheus.histogramQuantile() function calculates quantiles on a set of values assuming the given histogram data is scraped or read from a Prometheus data source.

*Function type: Aggregate*

  1. import "experimental/prometheus"
  2. prometheus.histogramQuantile(
  3. quantile: 0.99
  4. )

Parameters

quantile

A value between 0.0 and 1.0 indicating the desired quantile.

*Data type: Float*

Examples

Calculate the 99th quantile in Prometheus data

  1. import "experimental/prometheus"
  2. prometheus.scrape(url: "https://example-url.com/metrics")
  3. |> prometheus.histogramQuantile(quantile: 0.99)