Skip to main content
Version: 4.2.0

Load time series data.

POST 

https://localhost:8900/timeseries/:timeseries

Load time series data.

Request​

Path Parameters

    timeseries stringrequired

    The name of the time series.

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​

A required property is missing or the request can not be read.

Schema

    string

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"
}'
Request Collapse all
Base URL
https://localhost:8900
Parameters
— pathrequired
Body
{
  "start": "2024-12-11T08:53:11.948Z",
  "end": "2024-12-11T08:53:11.948Z",
  "group": [
    "string"
  ],
  "filter": "group_var_foo == \"bla\"",
  "granularity": "string"
}