mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
22e3fabefd
* [WIP] open tsdb and prometheus integration tests * app/victoria-metrics: fix race condition on parallel tests
9 lines
376 B
JSON
9 lines
376 B
JSON
{
|
|
"name": "basic_insertion",
|
|
"data": "measurement,tag1=value1,tag2=value2 field1=1.23,field2=123 {TIME}",
|
|
"query": "/api/v1/export?match={__name__!=\"\"}",
|
|
"result": [
|
|
{"metric":{"__name__":"measurement_field2","tag1":"value1","tag2":"value2"},"values":[123]},
|
|
{"metric":{"__name__":"measurement_field1","tag1":"value1","tag2":"value2"},"values":[1.23]}
|
|
]
|
|
}
|