VictoriaMetrics/docs/url-examples.md

612 lines
15 KiB
Markdown
Raw Normal View History

2022-02-15 15:19:55 +01:00
---
sort: 21
2022-02-15 15:19:55 +01:00
---
2022-02-15 20:24:49 +01:00
# VictoriaMetrics API examples
2022-02-15 15:19:55 +01:00
## /api/v1/admin/tsdb/delete_series
2022-02-15 20:24:49 +01:00
**Deletes time series from VictoriaMetrics**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
curl -v 'http://<victoriametrics-addr>:8428/api/v1/admin/tsdb/delete_series?match[]=vm_http_request_errors_total'
```
</div>
The expected output should return [HTTP Status 204](https://datatracker.ietf.org/doc/html/rfc7231#page-53) and will look like:
<div class="with-copy" markdown="1">
```console
* Trying 127.0.0.1:8428...
* Connected to 127.0.0.1 (127.0.0.1) port 8428 (#0)
> GET /api/v1/admin/tsdb/delete_series?match[]=vm_http_request_errors_total HTTP/1.1
> Host: 127.0.0.1:8428
> User-Agent: curl/7.81.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 204 No Content
< X-Server-Hostname: eba075fb0e1a
< Date: Tue, 21 Jun 2022 07:33:35 GMT
<
* Connection #0 to host 127.0.0.1 left intact
2022-02-15 15:19:55 +01:00
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
curl -v'http://<vmselect>:8481/delete/0/prometheus/api/v1/admin/tsdb/delete_series?match[]=vm_http_request_errors_total'
```
</div>
The expected output should return [HTTP Status 204](https://datatracker.ietf.org/doc/html/rfc7231#page-53) and will look like:
<div class="with-copy" markdown="1">
```console
* Trying 127.0.0.1:8481...
* Connected to 127.0.0.1 (127.0.0.1) port 8481 (#0)
> GET /delete/0/prometheus/api/v1/admin/tsdb/delete_series?match[]=vm_http_request_errors_total HTTP/1.1
> Host: 127.0.0.1:8481
> User-Agent: curl/7.81.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 204 No Content
< X-Server-Hostname: 101ed7a45c94
< Date: Tue, 21 Jun 2022 07:21:36 GMT
<
* Connection #0 to host 127.0.0.1 left intact
2022-02-15 15:19:55 +01:00
```
</div>
2022-02-15 15:19:55 +01:00
Additional information:
* [How to delete time series](https://docs.victoriametrics.com/#how-to-delete-time-series)
2022-02-15 15:19:55 +01:00
## /api/v1/export/csv
**Exports CSV data from VictoriaMetrics**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl 'http://<victoriametrics-addr>:8428/api/v1/export/csv?format=__name__,__value__,__timestamp__:unix_s&match=vm_http_request_errors_total' > filename.txt
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/export/csv?format=__name__,__value__,__timestamp__:unix_s&match=vm_http_request_errors_total' > filename.txt
```
</div>
Additional information:
2022-02-15 15:19:55 +01:00
* [How to export time series](https://docs.victoriametrics.com/#how-to-export-csv-data)
* [URL Format](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html#url-format)
## /api/v1/export/native
2022-02-15 20:24:49 +01:00
**Exports data from VictoriaMetrics in native format**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -G 'http://<victoriametrics-addr>:8428/api/v1/export/native?match[]=vm_http_request_errors_total' > filename.txt
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/export/native?match=vm_http_request_errors_total' > filename.txt
```
</div>
2022-02-15 15:19:55 +01:00
More information:
2022-02-15 20:24:49 +01:00
* [How to export data in native format](https://docs.victoriametrics.com/#how-to-export-data-in-native-format)
2022-02-15 20:24:49 +01:00
## /api/v1/import
**Imports custom data as well as data obtained via /api/v1/export**
2022-02-15 20:24:49 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 20:24:49 +01:00
curl --data-binary "@import.txt" -X POST 'http://destination-victoriametrics:8428/api/v1/import'
```
2022-02-15 15:19:55 +01:00
</div>
2022-02-15 20:24:49 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-04-01 10:23:18 +02:00
curl --data-binary "@import.txt" -X POST 'http://<vminsert>:8480/insert/0/prometheus/api/v1/import'
2022-02-15 20:24:49 +01:00
```
</div>
<div class="with-copy" markdown="1">
```console
curl -d 'metric_name{foo="bar"} 123' -X POST 'http://<vminsert>:8480/insert/0/prometheus/api/v1/import/prometheus'
```
</div>
2022-02-15 20:24:49 +01:00
Additional information:
2022-02-15 15:19:55 +01:00
* [How to import time series data](https://docs.victoriametrics.com/#how-to-import-time-series-data)
2022-02-15 15:19:55 +01:00
## /api/v1/import/csv
2022-02-15 15:19:55 +01:00
**Imports CSV data to VictoriaMetrics**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl --data-binary "@import.txt" -X POST 'http://localhost:8428/api/v1/import/prometheus'
curl -d "GOOG,1.23,4.56,NYSE" 'http://localhost:8428/api/v1/import/csv?format=2:metric:ask,3:metric:bid,1:label:ticker,4:label:market'
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl --data-binary "@import.txt" -X POST 'http://<vminsert>:8480/insert/0/prometheus/api/v1/import/csv'
curl -d "GOOG,1.23,4.56,NYSE" 'http://<vminsert>:8480/insert/0/prometheus/api/v1/import/csv?format=2:metric:ask,3:metric:bid,1:label:ticker,4:label:market'
```
</div>
Additional information:
2022-02-15 20:24:49 +01:00
* [URL format](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html#url-format)
* [How to import CSV data](https://docs.victoriametrics.com/Single-server-VictoriaMetrics.html#how-to-import-csv-data)
2022-02-15 15:19:55 +01:00
## /api/v1/labels
**Get a list of label names**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/prometheus/api/v1/labels'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/labels'
```
</div>
Additional information:
* [Prometheus querying API usage](https://docs.victoriametrics.com/#prometheus-querying-api-usage)
* [Querying label values](https://prometheus.io/docs/prometheus/latest/querying/api/#querying-label-values)
## /api/v1/label/\<label_name\>/values
**Querying label values**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/prometheus/api/v1/label/job/values'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/label/job/values'
```
</div>
Additional information:
* [Getting label names](https://prometheus.io/docs/prometheus/latest/querying/api/#getting-label-names)
## /api/v1/query
**Performs PromQL/MetricsQL instant query**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/prometheus/api/v1/query?query=vm_http_request_errors_total&time=2021-02-22T19:10:30.781Z'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/query?query=vm_http_request_errors_total&time=2021-02-22T19:10:30.781Z'
```
</div>
Additional information:
* [Prometheus querying API usage](https://docs.victoriametrics.com/#prometheus-querying-api-usage)
* [Instant queries](https://docs.victoriametrics.com/keyConcepts.html#instant-query)
* [Query language](https://docs.victoriametrics.com/keyConcepts.html#metricsql)
## /api/v1/query_range
**Performs PromQL/MetricsQL range_query**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/prometheus/api/v1/query_range?query=vm_http_request_errors_total&start=2021-02-22T19:10:30.781Z&step=20m'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/query_range?query=vm_http_request_errors_total&start=2021-02-22T19:10:30.781Z&step=20m'
```
</div>
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/query_range?query=vm_http_request_errors_total&start=-1h&step=10m'
```
```console
curl -G http://<vmselect>:8481/select/0/prometheus/api/v1/query_range --data-urlencode 'query=sum(increase(vm_http_request_errors_total{status=""}[5m])) by (status)'
```
</div>
Additional information:
* [Prometheus querying API usage](https://docs.victoriametrics.com/#prometheus-querying-api-usage)
* [Range queries](https://docs.victoriametrics.com/keyConcepts.html#range-query)
* [Query language](https://docs.victoriametrics.com/keyConcepts.html#metricsql)
## /api/v1/series
**Finding series by label matchers**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/prometheus/api/v1/series?match[]=vm_http_request_errors_total&start=-1h'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/series?match[]=vm_http_request_errors_total&start=-1h'
```
</div>
Additional information:
* [Prometheus querying API usage](https://docs.victoriametrics.com/#prometheus-querying-api-usage)
* [Finding series by label matchers](https://prometheus.io/docs/prometheus/latest/querying/api/#finding-series-by-label-matchers)
## /api/v1/status/tsdb
**Cardinality statistics**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/prometheus/api/v1/status/tsdb'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/api/v1/status/tsdb'
```
</div>
Additional information:
* [Prometheus querying API usage](https://docs.victoriametrics.com/#prometheus-querying-api-usage)
* [TSDB Stats](https://prometheus.io/docs/prometheus/latest/querying/api/#tsdb-stats)
## /api/v1/targets
**Checking targets**
Should be sent to vmagent/VMsingle
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmsingle>:8428/api/v1/targets'
```
</div>
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmagent>:8429/api/v1/targets'
```
</div>
Additional information:
* [Prometheus querying API usage](https://docs.victoriametrics.com/#prometheus-querying-api-usage)
* [Targets](https://prometheus.io/docs/prometheus/latest/querying/api/#targets)
2022-02-15 15:19:55 +01:00
## /datadog/api/v1/series
**Sends data from DataDog agent to VM**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
echo '
{
"series": [
{
"host": "test.example.com",
"interval": 20,
"metric": "system.load.1",
"points": [[
0,
0.5
]],
"tags": [
"environment:test"
],
"type": "rate"
}
]
}
' | curl -X POST --data-binary @- http://localhost:8428/datadog/api/v1/series
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
echo '
{
"series": [
{
"host": "test.example.com",
"interval": 20,
"metric": "system.load.1",
"points": [[
0,
0.5
]],
"tags": [
"environment:test"
],
"type": "rate"
}
]
}
' | curl -X POST --data-binary @- 'http://<vminsert>:8480/insert/0/datadog/api/v1/series'
```
</div>
2022-02-15 15:19:55 +01:00
Additional information:
* [How to send data from datadog agent](https://docs.victoriametrics.com/#how-to-send-data-from-datadog-agent)
2022-02-15 15:19:55 +01:00
## /federate
**Returns federated metrics**
Single:
<div class="with-copy" markdown="1">
```console
curl -G 'http://localhost:8428/federate?match[]=vm_http_request_errors_total&start=2021-02-22T19:10:30.781Z'
```
</div>
Cluster:
<div class="with-copy" markdown="1">
```console
curl -G 'http://<vmselect>:8481/select/0/prometheus/federate?match[]=vm_http_request_errors_total&start=2021-02-22T19:10:30.781Z'
```
</div>
Additional information:
* [Federation](https://docs.victoriametrics.com/#federation)
* [Prometheus-compatible federation data](https://prometheus.io/docs/prometheus/latest/federation/#configuring-federation)
2022-02-15 15:19:55 +01:00
## /graphite/metrics/find
2022-02-15 20:24:49 +01:00
**Searches Graphite metrics in VictoriaMetrics**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -G 'http://localhost:8428/graphite/metrics/find?query=vm_http_request_errors_total'
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -G 'http://<vmselect>:8481/select/0/graphite/metrics/find?query=vm_http_request_errors_total'
```
</div>
2022-02-15 15:19:55 +01:00
Additional information:
2022-02-15 15:19:55 +01:00
* [Metrics find](https://graphite-api.readthedocs.io/en/latest/api.html#metrics-find)
* [How to send data from graphite compatible agents such as statsd](https://docs.victoriametrics.com/Single-server-VictoriaMetrics.html#how-to-send-data-from-graphite-compatible-agents-such-as-statsd)
2022-02-15 20:24:49 +01:00
* [URL Format](https://docs.victoriametrics.com/Cluster-VictoriaMetrics.html#url-format)
2022-02-15 15:19:55 +01:00
## /influx/write
2022-02-15 20:24:49 +01:00
**Writes data with InfluxDB line protocol to VictoriaMetrics**
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -d 'measurement,tag1=value1,tag2=value2 field1=123,field2=1.23' -X POST 'http://localhost:8428/write'
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -d 'measurement,tag1=value1,tag2=value2 field1=123,field2=1.23' -X POST 'http://<vminsert>:8480/insert/0/influx/write'
```
</div>
2022-02-15 15:19:55 +01:00
Additional information:
* [How to send data from influxdb compatible agents such as telegraf](https://docs.victoriametrics.com/#how-to-send-data-from-influxdb-compatible-agents-such-as-telegraf)
2022-02-15 15:19:55 +01:00
## TCP and UDP
2022-02-15 20:24:49 +01:00
**How to send data from OpenTSDB-compatible agents to VictoriaMetrics**
2022-02-15 15:19:55 +01:00
2022-02-15 20:24:49 +01:00
Turned off by default. Enable OpenTSDB receiver in VictoriaMetrics by setting `-opentsdbListenAddr` command-line flag.
2022-02-15 15:19:55 +01:00
*If run from docker, '-opentsdbListenAddr' port should be exposed*
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
echo "put foo.bar.baz `date +%s` 123 tag1=value1 tag2=value2" | nc -N localhost 4242
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
echo "put foo.bar.baz `date +%s` 123 tag1=value1 tag2=value2 VictoriaMetrics_AccountID=0" | nc -N http://<vminsert> 4242
```
</div>
2022-02-15 20:24:49 +01:00
Enable HTTP server for OpenTSDB /api/put requests by setting `-opentsdbHTTPListenAddr` command-line flag.
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -H 'Content-Type: application/json' -d '[{"metric":"foo","value":45.34},{"metric":"bar","value":43}]' http://localhost:4242/api/put
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
curl -H 'Content-Type: application/json' -d '[{"metric":"foo","value":45.34},{"metric":"bar","value":43}]'
'http://<vminsert>:8480/insert/42/opentsdb/api/put'
```
</div>
2022-02-15 15:19:55 +01:00
Additional information:
2022-02-15 15:19:55 +01:00
* [Api http put](http://opentsdb.net/docs/build/html/api_http/put.html)
* [How to send data from opentsdb compatible agents](https://docs.victoriametrics.com/Single-server-VictoriaMetrics.html#how-to-send-data-from-opentsdb-compatible-agents)
2022-02-15 20:24:49 +01:00
**How to write data with Graphite plaintext protocol to VictoriaMetrics**
2022-02-15 15:19:55 +01:00
2022-02-15 20:24:49 +01:00
Enable Graphite receiver in VictoriaMetrics by setting `-graphiteListenAddr` command-line flag.
2022-02-15 15:19:55 +01:00
Single:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
echo "foo.bar.baz;tag1=value1;tag2=value2 123 `date +%s`" |
nc -N localhost 2003
```
</div>
2022-02-15 15:19:55 +01:00
Cluster:
<div class="with-copy" markdown="1">
```console
2022-02-15 15:19:55 +01:00
echo "foo.bar.baz;tag1=value1;tag2=value2;VictoriaMetrics_AccountID=42 123 `date +%s`" | nc -N http://<vminsert> 2003
```
</div>
2022-02-15 15:19:55 +01:00
Additional information:
2022-02-15 20:24:49 +01:00
`VictoriaMetrics_AccountID=42` - tag that indicated tenant ID.
2022-02-15 15:19:55 +01:00
* [Request handler](https://github.com/VictoriaMetrics/VictoriaMetrics/blob/a3eafd2e7fc75776dfc19d3c68c85589454d9dce/app/vminsert/opentsdb/request_handler.go#L47)
* [How to send data from graphite compatible agents such as statsd](https://docs.victoriametrics.com/Single-server-VictoriaMetrics.html#how-to-send-data-from-graphite-compatible-agents-such-as-statsd)