Hello, I am in need of assistance using SWQL, I am able to get two columns Status and Total where total adds up the up nodes of all my up devices in one row and all down in the next row using:
SELECT SI.StatusName AS Status, COUNT(Status) AS Total FROM Orion.Nodes N INNER JOIN Orion.StatusInfo SI ON SI.StatusId = N.Status GROUP BY SI.StatusName ORDER BY Total DESC
However, I only want access points to be included in my table. I do know that they are under Orion.Wireless.AccessPoint, but there is no Orion.Wireless.AccessPoint.StatusInfo. How should I edit this query for only inluding access points?
For reference this is going into a google pie chart, which I will display on my dashbaord.