Query Raw

Query Raw

An API to check if ingested points are as expected. Points ingested within a single second are averaged when returned.

Request
URI
GET
https:////api/v2/chart/raw?&metric
COPY
Query Parameters
string
host
Optional

host to query ingested points for (cannot contain wildcards). host or source is equivalent, only one should be used.

string
source
Optional

source to query ingested points for (cannot contain wildcards). host or source is equivalent, only one should be used.

string
metric
Required

metric to query ingested points for (cannot contain wildcards)

integer
startTime
Optional

start time in epoch milliseconds (cannot be more than a day in the past) null to use an hour before endTime

integer
endTime
Optional

end time in epoch milliseconds (cannot be more than a day in the past) null to use now


Authentication
This operation uses the following authentication methods.
Responses
200

successful operation

Returns Array of RawTimeseries of type(s) application/json
[
    {
        "points": [
            {
                "value": "number",
                "timestamp": "integer"
            }
        ]
    }
]

400

Invalid request parameters

Operation doesn't return any data structure

401

Authorization Error

Operation doesn't return any data structure

404

Metric not found for specified source/host

Operation doesn't return any data structure

500

Server Error

Operation doesn't return any data structure