Get Monitor Metrics (v2.3)
GET/sdwan/v2.3/api/monitor/metrics/:mtype
List all the details of the monitor metrics.
Request
Path Parameters
mtype stringrequired
The metric type.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
metrics MetricSchema[]required
The details of the metrics.
description required
The description of the metric schema. Max size = 256.
name stringrequired
The name of the metric schema. Max size = 126.
statistics string[]required
The metric statistics.
units string[]required
The units of the metrics.
{
"metrics": [
{
"name": "string",
"statistics": [
"string"
],
"units": [
"string"
]
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
message string
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "METRIC_NOT_SUPPORTED"
}
]
}
}
Loading...