Load time series data.
POSThttps://localhost:8900/timeseries/:timeseries
Load time series data.
Request​
Path Parameters
timeseries stringrequired
The name of the time series.
- application/json
Body
Parameters of the time series request.
start date-time
The start of the time series. If not defined 7 days from now into the past.
end date-time
The end of the time series. If not defined now.
group string[]
Reduce the available groups to the set of defined ones.
filter string[]
Filter available group members by predicate. Only time series values with matching group criteria will be selected.
granularity duration
The granularity of the time series. This can be either a duration or the number of items for the time window that is selected. The granularity can not go below one hour. It defaults to (end-start) / 20.
Responses​
- 400
- default
A required property is missing or the request can not be read.
- text/plain
- Schema
Schema
string
The time series data
- application/json
- Schema
- Example (from schema)
- Example
Schema
property name* any
{}
{
"time": "2021-01-01T00:00:00Z",
"value": 1
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://localhost:8900/timeseries/:timeseries' \
-H 'Content-Type: application/json' \
-d '{
"start": "2024-12-11T08:53:11.948Z",
"end": "2024-12-11T08:53:11.948Z",
"group": [
"string"
],
"filter": "group_var_foo == \"bla\"",
"granularity": "string"
}'