This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

I wan to create a pie chart with the status of Cisco accespoint. Please any one send me script.

I wan to create a pie chart with the status of Cisco accespoint. Please any one send me script.

Parents Reply
  • Sorry, for this, I didn't give you the right query. Try this:

    SELECT s.StatusName AS State, COUNT(wap.status) AS StatusCOUNT
    FROM Orion.Wireless.AccessPoints wap
    INNER JOIN Orion.Wireless.Controllers c ON c.id = wap.ControllerID
    INNER JOIN Orion.Nodes n ON c.NodeID = n.NodeID
    INNER JOIN Orion.StatusInfo s on s.statusid = wap.Status
    WHERE n.vendor = 'Cisco'
    GROUP BY wap.status, s.StatusName

Children
  • The above script is working..But not able to add to my current script.

    Below is the script now I am using. Could you please add the acesspoint details on the below script.

    Thanks in Advance

    SELECT n.Vendor,
    COUNT (CASE n.Status WHEN '1' THEN 1 else NULL end) AS UP,
    COUNT (CASE n.Status WHEN '2' THEN 1 else NULL end) AS DOWN,
    COUNT (CASE n.Status WHEN '3' THEN 1 else NULL end) AS WARNING,
    COUNT (CASE n.Status WHEN '9' THEN 1 else NULL end) AS UNMANAGED
    FROM Orion.Nodes n
    WHERE n.Vendor like 'Cisco' or n.Vendor like 'Palo Alto Networks' or n.Vendor like 'Fortinet, Inc.'
    GROUP BY n.Vendor