Skip to content

Commit c39776c

Browse files
committed
promql: Add NHCB tests
This adds equivalent NHCB tests to the existing classic histogram tests. Signed-off-by: beorn7 <[email protected]>
1 parent bab098a commit c39776c

File tree

1 file changed

+181
-10
lines changed

1 file changed

+181
-10
lines changed

promql/promqltest/testdata/histograms.test

+181-10
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,32 @@ eval instant at 50m histogram_count(testhistogram3)
7373
{start="positive"} 110
7474
{start="negative"} 20
7575

76+
# Classic way of accessing the count still works.
77+
eval instant at 50m testhistogram3_count
78+
testhistogram3_count{start="positive"} 110
79+
testhistogram3_count{start="negative"} 20
80+
7681
# Test histogram_sum.
7782
eval instant at 50m histogram_sum(testhistogram3)
7883
{start="positive"} 330
7984
{start="negative"} 80
8085

81-
# Test histogram_avg.
86+
# Classic way of accessing the sum still works.
87+
eval instant at 50m testhistogram3_sum
88+
testhistogram3_sum{start="positive"} 330
89+
testhistogram3_sum{start="negative"} 80
90+
91+
# Test histogram_avg. This has no classic equivalent.
8292
eval instant at 50m histogram_avg(testhistogram3)
8393
{start="positive"} 3
8494
{start="negative"} 4
8595

86-
# Test histogram_stddev.
96+
# Test histogram_stddev. This has no classic equivalent.
8797
eval instant at 50m histogram_stddev(testhistogram3)
8898
{start="positive"} 2.8189265757336734
8999
{start="negative"} 4.182715937754936
90100

91-
# Test histogram_stdvar.
101+
# Test histogram_stdvar. This has no classic equivalent.
92102
eval instant at 50m histogram_stdvar(testhistogram3)
93103
{start="positive"} 7.946347039377573
94104
{start="negative"} 17.495112615949154
@@ -103,156 +113,315 @@ eval instant at 50m histogram_fraction(0, 0.2, rate(testhistogram3[5m]))
103113
{start="positive"} 0.6363636363636364
104114
{start="negative"} 0
105115

106-
# Test histogram_quantile.
116+
# In the classic histogram, we can access the corresponding bucket (if
117+
# it exists) and divide by the count to get the same result.
118+
119+
eval instant at 50m testhistogram3_bucket{le=".2"} / ignoring(le) testhistogram3_count
120+
{start="positive"} 0.6363636363636364
121+
122+
eval instant at 50m rate(testhistogram3_bucket{le=".2"}[5m]) / ignoring(le) rate(testhistogram3_count[5m])
123+
{start="positive"} 0.6363636363636364
124+
125+
# Test histogram_quantile, native and classic.
126+
127+
eval instant at 50m histogram_quantile(0, testhistogram3)
128+
{start="positive"} 0
129+
{start="negative"} -0.25
107130

108131
eval instant at 50m histogram_quantile(0, testhistogram3_bucket)
109132
{start="positive"} 0
110133
{start="negative"} -0.25
111134

135+
eval instant at 50m histogram_quantile(0.25, testhistogram3)
136+
{start="positive"} 0.055
137+
{start="negative"} -0.225
138+
112139
eval instant at 50m histogram_quantile(0.25, testhistogram3_bucket)
113140
{start="positive"} 0.055
114141
{start="negative"} -0.225
115142

143+
eval instant at 50m histogram_quantile(0.5, testhistogram3)
144+
{start="positive"} 0.125
145+
{start="negative"} -0.2
146+
116147
eval instant at 50m histogram_quantile(0.5, testhistogram3_bucket)
117148
{start="positive"} 0.125
118149
{start="negative"} -0.2
119150

151+
eval instant at 50m histogram_quantile(0.75, testhistogram3)
152+
{start="positive"} 0.45
153+
{start="negative"} -0.15
154+
120155
eval instant at 50m histogram_quantile(0.75, testhistogram3_bucket)
121156
{start="positive"} 0.45
122157
{start="negative"} -0.15
123158

159+
eval instant at 50m histogram_quantile(1, testhistogram3)
160+
{start="positive"} 1
161+
{start="negative"} -0.1
162+
124163
eval instant at 50m histogram_quantile(1, testhistogram3_bucket)
125164
{start="positive"} 1
126165
{start="negative"} -0.1
127166

128167
# Quantile too low.
168+
169+
eval_warn instant at 50m histogram_quantile(-0.1, testhistogram)
170+
{start="positive"} -Inf
171+
{start="negative"} -Inf
172+
129173
eval_warn instant at 50m histogram_quantile(-0.1, testhistogram_bucket)
130174
{start="positive"} -Inf
131175
{start="negative"} -Inf
132176

133177
# Quantile too high.
178+
179+
eval_warn instant at 50m histogram_quantile(1.01, testhistogram)
180+
{start="positive"} +Inf
181+
{start="negative"} +Inf
182+
134183
eval_warn instant at 50m histogram_quantile(1.01, testhistogram_bucket)
135184
{start="positive"} +Inf
136185
{start="negative"} +Inf
137186

138187
# Quantile invalid.
188+
189+
eval_warn instant at 50m histogram_quantile(NaN, testhistogram)
190+
{start="positive"} NaN
191+
{start="negative"} NaN
192+
139193
eval_warn instant at 50m histogram_quantile(NaN, testhistogram_bucket)
140194
{start="positive"} NaN
141195
{start="negative"} NaN
142196

143197
# Quantile value in lowest bucket.
198+
199+
eval instant at 50m histogram_quantile(0, testhistogram)
200+
{start="positive"} 0
201+
{start="negative"} -0.2
202+
144203
eval instant at 50m histogram_quantile(0, testhistogram_bucket)
145204
{start="positive"} 0
146205
{start="negative"} -0.2
147206

148207
# Quantile value in highest bucket.
208+
209+
eval instant at 50m histogram_quantile(1, testhistogram)
210+
{start="positive"} 1
211+
{start="negative"} 0.3
212+
149213
eval instant at 50m histogram_quantile(1, testhistogram_bucket)
150214
{start="positive"} 1
151215
{start="negative"} 0.3
152216

153217
# Finally some useful quantiles.
218+
219+
eval instant at 50m histogram_quantile(0.2, testhistogram)
220+
{start="positive"} 0.048
221+
{start="negative"} -0.2
222+
154223
eval instant at 50m histogram_quantile(0.2, testhistogram_bucket)
155224
{start="positive"} 0.048
156225
{start="negative"} -0.2
157226

227+
eval instant at 50m histogram_quantile(0.5, testhistogram)
228+
{start="positive"} 0.15
229+
{start="negative"} -0.15
230+
158231
eval instant at 50m histogram_quantile(0.5, testhistogram_bucket)
159232
{start="positive"} 0.15
160233
{start="negative"} -0.15
161234

235+
eval instant at 50m histogram_quantile(0.8, testhistogram)
236+
{start="positive"} 0.72
237+
{start="negative"} 0.3
238+
162239
eval instant at 50m histogram_quantile(0.8, testhistogram_bucket)
163240
{start="positive"} 0.72
164241
{start="negative"} 0.3
165242

166243
# More realistic with rates.
244+
245+
eval instant at 50m histogram_quantile(0.2, rate(testhistogram[5m]))
246+
{start="positive"} 0.048
247+
{start="negative"} -0.2
248+
167249
eval instant at 50m histogram_quantile(0.2, rate(testhistogram_bucket[5m]))
168250
{start="positive"} 0.048
169251
{start="negative"} -0.2
170252

253+
eval instant at 50m histogram_quantile(0.5, rate(testhistogram[5m]))
254+
{start="positive"} 0.15
255+
{start="negative"} -0.15
256+
171257
eval instant at 50m histogram_quantile(0.5, rate(testhistogram_bucket[5m]))
172258
{start="positive"} 0.15
173259
{start="negative"} -0.15
174260

261+
eval instant at 50m histogram_quantile(0.8, rate(testhistogram[5m]))
262+
{start="positive"} 0.72
263+
{start="negative"} 0.3
264+
175265
eval instant at 50m histogram_quantile(0.8, rate(testhistogram_bucket[5m]))
176266
{start="positive"} 0.72
177267
{start="negative"} 0.3
178268

179269
# Want results exactly in the middle of the bucket.
270+
271+
eval instant at 7m histogram_quantile(1./6., testhistogram2)
272+
{} 1
273+
180274
eval instant at 7m histogram_quantile(1./6., testhistogram2_bucket)
181275
{} 1
182276

277+
eval instant at 7m histogram_quantile(0.5, testhistogram2)
278+
{} 3
279+
183280
eval instant at 7m histogram_quantile(0.5, testhistogram2_bucket)
184281
{} 3
185282

283+
eval instant at 7m histogram_quantile(5./6., testhistogram2)
284+
{} 5
285+
186286
eval instant at 7m histogram_quantile(5./6., testhistogram2_bucket)
187287
{} 5
188288

289+
eval instant at 47m histogram_quantile(1./6., rate(testhistogram2[15m]))
290+
{} 1
291+
189292
eval instant at 47m histogram_quantile(1./6., rate(testhistogram2_bucket[15m]))
190293
{} 1
191294

295+
eval instant at 47m histogram_quantile(0.5, rate(testhistogram2[15m]))
296+
{} 3
297+
192298
eval instant at 47m histogram_quantile(0.5, rate(testhistogram2_bucket[15m]))
193299
{} 3
194300

301+
eval instant at 47m histogram_quantile(5./6., rate(testhistogram2[15m]))
302+
{} 5
303+
195304
eval instant at 47m histogram_quantile(5./6., rate(testhistogram2_bucket[15m]))
196305
{} 5
197306

198-
# Aggregated histogram: Everything in one.
307+
# Aggregated histogram: Everything in one. Note how native histograms
308+
# don't require aggregation by le.
309+
310+
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds[5m])))
311+
{} 0.075
312+
199313
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds_bucket[5m])) by (le))
200314
{} 0.075
201315

316+
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds[5m])))
317+
{} 0.1277777777777778
318+
202319
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds_bucket[5m])) by (le))
203320
{} 0.1277777777777778
204321

205322
# Aggregated histogram: Everything in one. Now with avg, which does not change anything.
323+
324+
eval instant at 50m histogram_quantile(0.3, avg(rate(request_duration_seconds[5m])))
325+
{} 0.075
326+
206327
eval instant at 50m histogram_quantile(0.3, avg(rate(request_duration_seconds_bucket[5m])) by (le))
207328
{} 0.075
208329

330+
eval instant at 50m histogram_quantile(0.5, avg(rate(request_duration_seconds[5m])))
331+
{} 0.12777777777777778
332+
209333
eval instant at 50m histogram_quantile(0.5, avg(rate(request_duration_seconds_bucket[5m])) by (le))
210334
{} 0.12777777777777778
211335

212336
# Aggregated histogram: By instance.
337+
338+
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds[5m])) by (instance))
339+
{instance="ins1"} 0.075
340+
{instance="ins2"} 0.075
341+
213342
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds_bucket[5m])) by (le, instance))
214343
{instance="ins1"} 0.075
215344
{instance="ins2"} 0.075
216345

346+
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds[5m])) by (instance))
347+
{instance="ins1"} 0.1333333333
348+
{instance="ins2"} 0.125
349+
217350
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds_bucket[5m])) by (le, instance))
218351
{instance="ins1"} 0.1333333333
219352
{instance="ins2"} 0.125
220353

221354
# Aggregated histogram: By job.
355+
356+
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds[5m])) by (job))
357+
{job="job1"} 0.1
358+
{job="job2"} 0.0642857142857143
359+
222360
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds_bucket[5m])) by (le, job))
223361
{job="job1"} 0.1
224362
{job="job2"} 0.0642857142857143
225363

364+
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds[5m])) by (job))
365+
{job="job1"} 0.14
366+
{job="job2"} 0.1125
367+
226368
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds_bucket[5m])) by (le, job))
227369
{job="job1"} 0.14
228370
{job="job2"} 0.1125
229371

230372
# Aggregated histogram: By job and instance.
373+
374+
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds[5m])) by (job, instance))
375+
{instance="ins1", job="job1"} 0.11
376+
{instance="ins2", job="job1"} 0.09
377+
{instance="ins1", job="job2"} 0.06
378+
{instance="ins2", job="job2"} 0.0675
379+
231380
eval instant at 50m histogram_quantile(0.3, sum(rate(request_duration_seconds_bucket[5m])) by (le, job, instance))
232381
{instance="ins1", job="job1"} 0.11
233382
{instance="ins2", job="job1"} 0.09
234383
{instance="ins1", job="job2"} 0.06
235384
{instance="ins2", job="job2"} 0.0675
236385

386+
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds[5m])) by (job, instance))
387+
{instance="ins1", job="job1"} 0.15
388+
{instance="ins2", job="job1"} 0.1333333333333333
389+
{instance="ins1", job="job2"} 0.1
390+
{instance="ins2", job="job2"} 0.1166666666666667
391+
237392
eval instant at 50m histogram_quantile(0.5, sum(rate(request_duration_seconds_bucket[5m])) by (le, job, instance))
238393
{instance="ins1", job="job1"} 0.15
239394
{instance="ins2", job="job1"} 0.1333333333333333
240395
{instance="ins1", job="job2"} 0.1
241396
{instance="ins2", job="job2"} 0.1166666666666667
242397

243398
# The unaggregated histogram for comparison. Same result as the previous one.
399+
400+
eval instant at 50m histogram_quantile(0.3, rate(request_duration_seconds[5m]))
401+
{instance="ins1", job="job1"} 0.11
402+
{instance="ins2", job="job1"} 0.09
403+
{instance="ins1", job="job2"} 0.06
404+
{instance="ins2", job="job2"} 0.0675
405+
244406
eval instant at 50m histogram_quantile(0.3, rate(request_duration_seconds_bucket[5m]))
245407
{instance="ins1", job="job1"} 0.11
246408
{instance="ins2", job="job1"} 0.09
247409
{instance="ins1", job="job2"} 0.06
248410
{instance="ins2", job="job2"} 0.0675
249411

412+
eval instant at 50m histogram_quantile(0.5, rate(request_duration_seconds[5m]))
413+
{instance="ins1", job="job1"} 0.15
414+
{instance="ins2", job="job1"} 0.13333333333333333
415+
{instance="ins1", job="job2"} 0.1
416+
{instance="ins2", job="job2"} 0.11666666666666667
417+
250418
eval instant at 50m histogram_quantile(0.5, rate(request_duration_seconds_bucket[5m]))
251419
{instance="ins1", job="job1"} 0.15
252420
{instance="ins2", job="job1"} 0.13333333333333333
253421
{instance="ins1", job="job2"} 0.1
254422
{instance="ins2", job="job2"} 0.11666666666666667
255423

424+
# All NHCBs summed into one.
256425
eval instant at 50m sum(request_duration_seconds)
257426
{} {{schema:-53 count:250 custom_values:[0.1 0.2] buckets:[100 90 60]}}
258427

@@ -303,11 +472,13 @@ load_with_nhcb 5m
303472
eval instant at 50m histogram_quantile(0.2, rate(empty_bucket[5m]))
304473
{instance="ins1", job="job1"} NaN
305474

306-
# Load a duplicate histogram with a different name to test failure scenario on multiple histograms with the same label set
475+
# Load a duplicate histogram with a different name to test failure scenario on multiple histograms with the same label set.
307476
# https://github.com/prometheus/prometheus/issues/9910
308477
load_with_nhcb 5m
309-
request_duration_seconds2_bucket{job="job1", instance="ins1", le="0.1"} 0+1x10
310-
request_duration_seconds2_bucket{job="job1", instance="ins1", le="0.2"} 0+3x10
311-
request_duration_seconds2_bucket{job="job1", instance="ins1", le="+Inf"} 0+4x10
478+
request_duration_seconds2_bucket{job="job1", instance="ins1", le="0.1"} 0+1x10
479+
request_duration_seconds2_bucket{job="job1", instance="ins1", le="0.2"} 0+3x10
480+
request_duration_seconds2_bucket{job="job1", instance="ins1", le="+Inf"} 0+4x10
481+
482+
eval_fail instant at 50m histogram_quantile(0.99, {__name__=~"request_duration_seconds\\d*_bucket"})
312483

313-
eval_fail instant at 50m histogram_quantile(0.99, {__name__=~"request_duration_seconds\\d*_bucket$"})
484+
eval_fail instant at 50m histogram_quantile(0.99, {__name__=~"request_duration_seconds\\d*"})

0 commit comments

Comments
 (0)