Hi , https://documentation.meraki.com/MX/Monitoring_and_Reporting/Device_Utilization 3 Things concerning Device utilization 1- Reading Device Utilization via API MX device utilization can be retrieved using the API as well. This section refers a link to the API v0. It should be updated to v1. 2- The Performance API call returns latest performance score average from within the last one hour. e.g. If the Performance API is queried at 21:00, the API will return the performance score average from 20:00. Is it really per hour ? My stats says otherwise : In 1 hour , I noticed around 4 updates to the score. 3- Can't find any reference to /devices/{serial}/appliance/performance in the Developper Hub documentation , but the endpoint is present in the OpenApi Spec. "/devices/{serial}/appliance/performance": {
"get": {
"description": "Return the performance score for a single MX. Only primary MX devices supported. If no data is available, a 204 error code is returned.",
"operationId": "getDeviceAppliancePerformance",
"parameters": [
{
"name": "serial",
"in": "path",
"type": "string",
"required": true
}
],
"responses": {
"200": {
"description": "Successful operation",
"schema": {
"type": "object"
},
"examples": {
"application/json": {
"perfScore": 10
}
}
}
},
"summary": "Return the performance score for a single MX",
"tags": [
"appliance",
"monitor",
"performance"
]
}
}, I have no idea if I should have opened a case about those points. Thanks ,
... View more