content/flux/v0/stdlib/internal/promql/promhistogramquantile.md
promql.promHistogramQuantile() implements functionality equivalent to
PromQL's histogram_quantile() function.
Important: The internal/promql package is not meant for external use.
(
<-tables: stream[A],
?countColumn: string,
?quantile: float,
?upperBoundColumn: string,
?valueColumn: string,
) => stream[B] where A: Record, B: Record
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Input data. Default is piped-forward data (<-).
Quantile to compute ([0.0 - 1.0]).
Count column name.
Upper bound column name.
Output value column name.