From 472456efdeabf007eda963ec53ff67cc6c75d690 Mon Sep 17 00:00:00 2001 From: David N Perkins Date: Fri, 7 Jan 2022 15:38:15 -0500 Subject: [PATCH] Added issue link to the comment Signed-off-by: David N Perkins --- promql/functions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/promql/functions.go b/promql/functions.go index 3fad20d15c..20eafd0e61 100644 --- a/promql/functions.go +++ b/promql/functions.go @@ -811,7 +811,7 @@ func funcHistogramQuantile(vals []parser.Value, args parser.Expressions, enh *Ev } l := sigf(el.Metric) // Add the metric name (which is always removed) to the signature to prevent combining multiple histograms - // with the same label set + // with the same label set. See https://github.com/prometheus/prometheus/issues/9910 l = l + el.Metric.Get(model.MetricNameLabel) mb, ok := enh.signatureToMetricWithBuckets[l]