mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
3a1ef3184d
app/victoriametrics: update the test suite * simplify /query and /query_range test cases configuration and tests * support instant queries with lookbehind window like `query=foo[5m]` * support instant queries selecting scalar value like `query=42` * add query_range test for prometheus Signed-off-by: hagen1778 <roman@victoriametrics.com>
18 lines
792 B
JSON
18 lines
792 B
JSON
{
|
|
"name": "query range",
|
|
"issue": "https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5553",
|
|
"data": ["[{\"labels\":[{\"name\":\"__name__\",\"value\":\"bar\"}],\"samples\":[{\"value\":1,\"timestamp\":\"{TIME_MS-60s}\"}, {\"value\":2,\"timestamp\":\"{TIME_MS-120s}\"}, {\"value\":1,\"timestamp\":\"{TIME_MS-180s}\"}]}]"],
|
|
"query": ["/api/v1/query_range?query=bar&step=30s&start={TIME_MS-180s}"],
|
|
"result_query": {
|
|
"status": "success",
|
|
"data":{
|
|
"resultType":"matrix",
|
|
"result":[
|
|
{
|
|
"metric":{"__name__":"bar"},
|
|
"values":[["{TIME_S-180s}", "1"],["{TIME_S-150s}", "1"],["{TIME_S-120s}", "2"],["{TIME_S-90s}", "2"], ["{TIME_S-60s}", "1"], ["{TIME_S-30s}", "1"], ["{TIME_S}", "1"]]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|