Performance Monitoring
This section describes the /kpi URL, which provides access to performance monitoring parameters (PMs), also known as key performance indicators (KPIs), which are collected by the device.
URL
/api/v1/kpi
HTTP Method
GET
HTTP Response
200 OK
Example
| ■ | Request: |
GET /api/v1/kpi HTTP/1.1 Host: 10.4.219.229
| ■ | Response: |
HTTP/1.1 200 OK
Content-Type: application/json
{
"items": [
{
"id": "current",
"name": "Current",
"description": "Real-time KPIs",
"url": "/api/v1/kpi/current"
},
{
"id": "history",
"name": "History",
"description": "Historical KPIs",
"url": "/api/v1/kpi/history"
},
{
"id": "interval",
"name": "Interval",
"description": "Intervals Information",
"url": "/api/v1/kpi/interval"
}
]
}