Is anyone else missing the the API return for the vpnstats where it doesn't include the latency information?
The documentation shows I should get a return that looks like this:
[
{
"networkId": "N_12345678",
"networkName": "San Francisco Office",
"merakiVpnPeers": [
{
"networkId": "L_23456789",
"networkName": "New York Office",
"usageSummary": {
"receivedInKilobytes": 1234567,
"sentInKilobytes": 2345678
},
"latencySummaries": [
{
"senderUplink": "wan1",
"receiverUplink": "wan1",
"avgLatencyMs": 15,
"minLatencyMs": 10,
"maxLatencyMs": 30
},
{
"senderUplink": "wan2",
"receiverUplink": "wan1",
"avgLatencyMs": 15,
"minLatencyMs": 10,
"maxLatencyMs": 30
}
],
"lossPercentageSummaries": [
{
"senderUplink": "wan1",
"receiverUplink": "wan1",
"avgLossPercentage": 0,
"minLossPercentage": 0,
"maxLossPercentage": 0.1
},
{
"senderUplink": "wan2",
"receiverUplink": "wan1",
"avgLossPercentage": 0,
"minLossPercentage": 0,
"maxLossPercentage": 0.1
}
],
"jitterSummaries": [
{
"senderUplink": "wan1",
"receiverUplink": "wan1",
"avgJitter": 0.01,
"minJitter": 0,
"maxJitter": 0.25
},
{
"senderUplink": "wan2",
"receiverUplink": "wan1",
"avgJitter": 0.01,
"minJitter": 0,
"maxJitter": 0.25
}
],
"mosSummaries": [
{
"senderUplink": "wan1",
"receiverUplink": "wan1",
"avgMos": 4.1,
"minMos": 4,
"maxMos": 4.2
},
{
"senderUplink": "wan2",
"receiverUplink": "wan1",
"avgMos": 4.1,
"minMos": 4,
"maxMos": 4.2
}
]
}
]
},
But I only get this as a return:
[
{
"networkId": "N_12345678",
"networkName": "San Francisco Office",
"merakiVpnPeers": [
{
"networkId": "L_23456789",
"networkName": "New York Office",
"usageSummary": {
"receivedInKilobytes": 1234567,
"sentInKilobytes": 2345678
},
}
]
}
]
Any help understanding why I am missing all the latency/connection info would be greatly appreciated