Get Point In Time Data
Gives last reported metric data for a given resource_type and resource_id. This can be raw value or life-time counter value. (use /key-info API to check which keys have 'is_point_in_time' as 'true')
Request
URI
POST
https://{api_host}/napp/api/v1/metrics/point-in-time/data
COPY
Request Body
Request for raw data
PointInTimeMetricsQuery
of type(s)
application/json
Required
This request body class requires all of the following:
InlinePointInTimeMetricsQuery0
{
"resource_ids": [
"string"
],
"resource_types": [
"string"
],
"keys": [
"string"
],
"sort_by": "string",
"sort_ascending": false,
"page_number": 0,
"page_size": 0,
"filters": [
{
"filter_field": "string",
"filter_operation": "string",
"value": "string"
}
],
"aggregation": {
"aggregation_dimension": "string",
"aggregation_function": "string"
}
}
Responses
200
OK
Returns
PointInTimeMetricsResponse
of type(s)
application/json
This response body class contains all of the following:
InlinePointInTimeMetricsResponse0 ,
InlinePointInTimeMetricsResponse1
"PointInTimeMetricsResponse Object"
400
Invalid Input
Operation doesn't return any data structure
Code Samples
COPY
curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"resource_ids":["string"],"keys":["string"],"resource_types":["string"]}' https://{api_host}/napp/api/v1/metrics/point-in-time/data
Availability
Added in 4.2
Metrics Operations
GET
Get Metric Keys Information Per Resource Type
POST
Get Time Series Data
POST
Get Point In Time Data
POST
Get Object Information
GET
Get Metrics Data Collection
POST
Update Metrics Data Collection