mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
c94c5b64c3
* rebase 2024-07-01, picks previous renaming to `limitk()` and `limit_ratio()` Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * gofumpt -d -extra Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * more lint fixes Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * more lint fixes+ Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * put limitk() and limit_ratio() behind --enable-feature=promql-experimental-functions Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * EnableExperimentalFunctions for TestConcurrentRangeQueries() also Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * use testutil.RequireEqual to fix tests, WIP equivalent thingie for require.Contains Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * lint fix Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * moar linting Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * rebase 2024-06-19 Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * re-add limit(2, metric) testing for N=2 common series subset Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * move `ratio = param` to default switch case, for better readability Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * gofumpt -d -extra util/testutil/cmp.go Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * early break when reaching k elems in limitk(), should have always been so (!) Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * small typo fix Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * no-change small break-loop rearrange for readability Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * remove IsNan(ratio) condition in switch-case, already handled as input validation Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * no-change adding some comments Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * no-change simplify fullMatrix() helper functions used for tests Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * add `limitk(-1, metric)` testcase, which is handled as any k < 1 case Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * engine_test.go: no-change create `requireCommonSeries() helper func (moving code into it) for readability Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * rebase 2024-06-21 Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * engine_test.go: HAPPY NOW about its code -> reorg, create and use simpleRangeQuery() function, less lines and more readable ftW \o/ Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * move limitk(), limit_ratio() testing to promql/promqltest/testdata/limit.test Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * remove stale leftover after moving tests from engine_test.go to testdata/ Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * fix flaky `limit_ratio(0.5, ...)` test case Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * Update promql/engine.go Co-authored-by: Julius Volz <julius.volz@gmail.com> Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * Update promql/engine.go Co-authored-by: Julius Volz <julius.volz@gmail.com> Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * Update promql/engine.go Co-authored-by: Julius Volz <julius.volz@gmail.com> Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * fix AddRatioSample() implementation to use a single conditional (instead of switch/case + fallback return) Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * docs/querying/operators.md: document r < 0 Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * add negative limit_ratio() example to docs/querying/examples.md Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * move more extensive docu examples to docs/querying/operators.md Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * typo Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * small docu fix for poor-mans-normality-check, add it to limit.test ;) Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * limit.test: expand "Poor man's normality check" to whole eval range Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * restore mistakenly removed existing small comment Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * expand poors-man-normality-check case(s) Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * Revert "expand poors-man-normality-check case(s)" This reverts commit f69e1603b2ebe69c0a100197cfbcf6f81644b564, indeed too flaky 0:) Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * remove humor from docs/querying/operators.md Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * fix signoff Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * add web/ui missing changes Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * expand limit_ratio test cases, cross-fingering they'll not be flaky Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * remove flaky test Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * add missing warnings.Merge(ws) in instant-query return shortcut Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * add missing LimitK||LimitRatio case to codemirror-promql/src/parser/parser.ts Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * fix ui-lint Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> * actually fix returned warnings :] Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> --------- Signed-off-by: JuanJo Ciarlante <juanjosec@gmail.com> Co-authored-by: Julius Volz <julius.volz@gmail.com>
120 lines
4.7 KiB
Plaintext
120 lines
4.7 KiB
Plaintext
# Tests for limitk
|
|
#
|
|
# NB: those many `and http_requests` are to ensure that the series _are_ indeed
|
|
# a subset of the original series.
|
|
load 5m
|
|
http_requests{job="api-server", instance="0", group="production"} 0+10x10
|
|
http_requests{job="api-server", instance="1", group="production"} 0+20x10
|
|
http_requests{job="api-server", instance="0", group="canary"} 0+30x10
|
|
http_requests{job="api-server", instance="1", group="canary"} 0+40x10
|
|
http_requests{job="api-server", instance="2", group="canary"} 0+50x10
|
|
http_requests{job="api-server", instance="3", group="canary"} 0+60x10
|
|
|
|
eval instant at 50m count(limitk by (group) (0, http_requests))
|
|
# empty
|
|
|
|
eval instant at 50m count(limitk by (group) (-1, http_requests))
|
|
# empty
|
|
|
|
# Exercise k==1 special case (as sample is added before the main series loop
|
|
eval instant at 50m count(limitk by (group) (1, http_requests) and http_requests)
|
|
{} 2
|
|
|
|
eval instant at 50m count(limitk by (group) (2, http_requests) and http_requests)
|
|
{} 4
|
|
|
|
eval instant at 50m count(limitk(100, http_requests) and http_requests)
|
|
{} 6
|
|
|
|
# Exercise k==1 special case (as sample is added before the main series loop
|
|
eval instant at 50m count(limitk by (group) (1, http_requests) and http_requests)
|
|
{} 2
|
|
|
|
eval instant at 50m count(limitk by (group) (2, http_requests) and http_requests)
|
|
{} 4
|
|
|
|
eval instant at 50m count(limitk(100, http_requests) and http_requests)
|
|
{} 6
|
|
|
|
# limit_ratio
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.0, http_requests))
|
|
# empty
|
|
|
|
# limitk(2, ...) should always return a 2-count subset of the timeseries (hence the AND'ing)
|
|
eval range from 0 to 50m step 5m count(limitk(2, http_requests) and http_requests)
|
|
{} 2+0x10
|
|
|
|
# Tests for limit_ratio
|
|
#
|
|
# NB: below 0.5 ratio will depend on some hashing "luck" (also there's no guarantee that
|
|
# an integer comes from: total number of series * ratio), as it depends on:
|
|
#
|
|
# * ratioLimit = [0.0, 1.0]:
|
|
# float64(sample.Metric.Hash()) / float64MaxUint64 < Ratio ?
|
|
# * ratioLimit = [-1.0, 1.0):
|
|
# float64(sample.Metric.Hash()) / float64MaxUint64 >= (1.0 + Ratio) ?
|
|
#
|
|
# See `AddRatioSample()` in promql/engine.go for more details.
|
|
|
|
# Half~ish samples: verify we get "near" 3 (of 0.5 * 6)
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.5, http_requests) and http_requests) <= bool (3+1)
|
|
{} 1+0x10
|
|
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.5, http_requests) and http_requests) >= bool (3-1)
|
|
{} 1+0x10
|
|
|
|
# All samples
|
|
eval range from 0 to 50m step 5m count(limit_ratio(1.0, http_requests) and http_requests)
|
|
{} 6+0x10
|
|
|
|
# All samples
|
|
eval range from 0 to 50m step 5m count(limit_ratio(-1.0, http_requests) and http_requests)
|
|
{} 6+0x10
|
|
|
|
# Capped to 1.0 -> all samples
|
|
eval_warn range from 0 to 50m step 5m count(limit_ratio(1.1, http_requests) and http_requests)
|
|
{} 6+0x10
|
|
|
|
# Capped to -1.0 -> all samples
|
|
eval_warn range from 0 to 50m step 5m count(limit_ratio(-1.1, http_requests) and http_requests)
|
|
{} 6+0x10
|
|
|
|
# Verify that limit_ratio(value) and limit_ratio(1.0-value) return the "complement" of each other
|
|
# Complement below for [0.2, -0.8]
|
|
#
|
|
# Complement 1of2: `or` should return all samples
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.2, http_requests) or limit_ratio(-0.8, http_requests))
|
|
{} 6+0x10
|
|
|
|
# Complement 2of2: `and` should return no samples
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.2, http_requests) and limit_ratio(-0.8, http_requests))
|
|
# empty
|
|
|
|
# Complement below for [0.5, -0.5]
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.5, http_requests) or limit_ratio(-0.5, http_requests))
|
|
{} 6+0x10
|
|
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.5, http_requests) and limit_ratio(-0.5, http_requests))
|
|
# empty
|
|
|
|
# Complement below for [0.8, -0.2]
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.8, http_requests) or limit_ratio(-0.2, http_requests))
|
|
{} 6+0x10
|
|
|
|
eval range from 0 to 50m step 5m count(limit_ratio(0.8, http_requests) and limit_ratio(-0.2, http_requests))
|
|
# empty
|
|
|
|
# Complement below for [some_ratio, 1.0 - some_ratio], some_ratio derived from time(),
|
|
# using a small prime number to avoid rounded ratio values, and a small set of them.
|
|
eval range from 0 to 50m step 5m count(limit_ratio(time() % 17/17, http_requests) or limit_ratio(1.0 - (time() % 17/17), http_requests))
|
|
{} 6+0x10
|
|
|
|
eval range from 0 to 50m step 5m count(limit_ratio(time() % 17/17, http_requests) and limit_ratio(1.0 - (time() % 17/17), http_requests))
|
|
# empty
|
|
|
|
# Poor man's normality check: ok (loaded samples follow a nice linearity over labels and time)
|
|
# The check giving: 1 (i.e. true)
|
|
eval range from 0 to 50m step 5m abs(avg(limit_ratio(0.5, http_requests)) - avg(limit_ratio(-0.5, http_requests))) <= bool stddev(http_requests)
|
|
{} 1+0x10
|
|
|