mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
3b89616d82
This offers new semantics in allowing on() for matching two single-element vectors with no known common labels. Previosuly this was often done using on(dummy). This also allows making it explict that you meant to do an aggregation without labels via by(). Fixes #1597.
129 lines
4.2 KiB
Plaintext
129 lines
4.2 KiB
Plaintext
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="app-server", instance="0", group="production"} 0+50x10
|
|
http_requests{job="app-server", instance="1", group="production"} 0+60x10
|
|
http_requests{job="app-server", instance="0", group="canary"} 0+70x10
|
|
http_requests{job="app-server", instance="1", group="canary"} 0+80x10
|
|
|
|
load 5m
|
|
foo{job="api-server", instance="0", region="europe"} 0+90x10
|
|
foo{job="api-server"} 0+100x10
|
|
|
|
# Simple sum.
|
|
eval instant at 50m SUM BY (group) (http_requests{job="api-server"})
|
|
{group="canary"} 700
|
|
{group="production"} 300
|
|
|
|
# Test alternative "by"-clause order.
|
|
eval instant at 50m sum by (group) (http_requests{job="api-server"})
|
|
{group="canary"} 700
|
|
{group="production"} 300
|
|
|
|
# Simple average.
|
|
eval instant at 50m avg by (group) (http_requests{job="api-server"})
|
|
{group="canary"} 350
|
|
{group="production"} 150
|
|
|
|
# Simple count.
|
|
eval instant at 50m count by (group) (http_requests{job="api-server"})
|
|
{group="canary"} 2
|
|
{group="production"} 2
|
|
|
|
# Simple without.
|
|
eval instant at 50m sum without (instance) (http_requests{job="api-server"})
|
|
{group="canary",job="api-server"} 700
|
|
{group="production",job="api-server"} 300
|
|
|
|
# Empty by.
|
|
eval instant at 50m sum by () (http_requests{job="api-server"})
|
|
{} 1000
|
|
|
|
# No by/without.
|
|
eval instant at 50m sum (http_requests{job="api-server"})
|
|
{} 1000
|
|
|
|
# Empty without.
|
|
eval instant at 50m sum without () (http_requests{job="api-server",group="production"})
|
|
{group="production",job="api-server",instance="0"} 100
|
|
{group="production",job="api-server",instance="1"} 200
|
|
|
|
# Without with mismatched and missing labels. Do not do this.
|
|
eval instant at 50m sum without (instance) (http_requests{job="api-server"} or foo)
|
|
{group="canary",job="api-server"} 700
|
|
{group="production",job="api-server"} 300
|
|
{region="europe",job="api-server"} 900
|
|
{job="api-server"} 1000
|
|
|
|
# Lower-cased aggregation operators should work too.
|
|
eval instant at 50m sum(http_requests) by (job) + min(http_requests) by (job) + max(http_requests) by (job) + avg(http_requests) by (job)
|
|
{job="app-server"} 4550
|
|
{job="api-server"} 1750
|
|
|
|
# Test alternative "by"-clause order with "keep_common".
|
|
eval instant at 50m sum by (group) keep_common (http_requests{job="api-server"})
|
|
{group="canary", job="api-server"} 700
|
|
{group="production", job="api-server"} 300
|
|
|
|
# Test both alternative "by"-clause orders in one expression.
|
|
# Public health warning: stick to one form within an expression (or even
|
|
# in an organization), or risk serious user confusion.
|
|
eval instant at 50m sum(sum by (group) keep_common (http_requests{job="api-server"})) by (job)
|
|
{job="api-server"} 1000
|
|
|
|
|
|
|
|
# Standard deviation and variance.
|
|
eval instant at 50m stddev(http_requests)
|
|
{} 229.12878474779
|
|
|
|
eval instant at 50m stddev by (instance)(http_requests)
|
|
{instance="0"} 223.60679774998
|
|
{instance="1"} 223.60679774998
|
|
|
|
eval instant at 50m stdvar(http_requests)
|
|
{} 52500
|
|
|
|
eval instant at 50m stdvar by (instance)(http_requests)
|
|
{instance="0"} 50000
|
|
{instance="1"} 50000
|
|
|
|
|
|
|
|
# Regression test for missing separator byte in labelsToGroupingKey.
|
|
clear
|
|
load 5m
|
|
label_grouping_test{a="aa", b="bb"} 0+10x10
|
|
label_grouping_test{a="a", b="abb"} 0+20x10
|
|
|
|
eval instant at 50m sum(label_grouping_test) by (a, b)
|
|
{a="a", b="abb"} 200
|
|
{a="aa", b="bb"} 100
|
|
|
|
|
|
|
|
# Tests for min/max.
|
|
clear
|
|
load 5m
|
|
http_requests{job="api-server", instance="0", group="production"} 1
|
|
http_requests{job="api-server", instance="1", group="production"} 2
|
|
http_requests{job="api-server", instance="0", group="canary"} NaN
|
|
http_requests{job="api-server", instance="1", group="canary"} 3
|
|
http_requests{job="api-server", instance="2", group="canary"} 4
|
|
|
|
eval instant at 0m max(http_requests)
|
|
{} 4
|
|
|
|
eval instant at 0m min(http_requests)
|
|
{} 1
|
|
|
|
eval instant at 0m max by (group) (http_requests)
|
|
{group="production"} 2
|
|
{group="canary"} 4
|
|
|
|
eval instant at 0m min by (group) (http_requests)
|
|
{group="production"} 1
|
|
{group="canary"} 3
|