Hello community,
Below query retrieves info about the top 10 wireless endpoints with high RX traffic, I managed to get data from the WLC but in some points (after couple of hours) the data stops being updated, last update was 2 days ago at 13:01.
The polling engine is working fine and it retrieves any other data and stats from the WLC (CPU ussage, Interface % ussage, response time, and so on). The polling interval is every 10 mins.
The query calls to the Orion.NPM.WL.Clients entity.
Any toughs about what can be happening in this scenario? Am I missing something?
SELECT TOP 10
FirstUpdate, LastUpdate, IPAddress, TotalBytesRx, TotalBytesTx
FROM Orion.NPM.WL.Clients
WHERE NodeID LIKE '1'
ORDER BY TotalBytesRx DESC