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>
13 lines
499 B
JSON
13 lines
499 B
JSON
{
|
|
"name": "instant query with look-behind window",
|
|
"issue": "https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5553",
|
|
"data": ["[{\"labels\":[{\"name\":\"__name__\",\"value\":\"foo\"}],\"samples\":[{\"value\":1,\"timestamp\":\"{TIME_MS-60s}\"}]}]"],
|
|
"query": ["/api/v1/query?query=foo[5m]"],
|
|
"result_query": {
|
|
"status": "success",
|
|
"data":{
|
|
"resultType":"matrix",
|
|
"result":[{"metric":{"__name__":"foo"},"values":[["{TIME_S-60s}", "1"]]}]
|
|
}
|
|
}
|
|
}
|