You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: util/annotations/annotations.go
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,7 @@ var (
143
143
NativeHistogramNotGaugeWarning=fmt.Errorf("%w: this native histogram metric is not a gauge:", PromQLWarning)
144
144
MixedExponentialCustomHistogramsWarning=fmt.Errorf("%w: vector contains a mix of histograms with exponential and custom buckets schemas for metric name", PromQLWarning)
145
145
IncompatibleCustomBucketsHistogramsWarning=fmt.Errorf("%w: vector contains histograms with incompatible custom buckets for metric name", PromQLWarning)
146
+
IncompatibleBucketLayoutInBinOpWarning=fmt.Errorf("%w: incompatible bucket layout encountered for binary operator", PromQLWarning)
146
147
147
148
PossibleNonCounterInfo=fmt.Errorf("%w: metric might not be a counter, name does not end in _total/_sum/_count/_bucket:", PromQLInfo)
148
149
HistogramQuantileForcedMonotonicityInfo=fmt.Errorf("%w: input to histogram_quantile needed to be fixed for monotonicity (see https://prometheus.io/docs/prometheus/latest/querying/functions/#histogram_quantile) for metric name", PromQLInfo)
0 commit comments