Hi, I am looking to filter the Proportional widget by custom property... I used the query provided in the SW "How to" for modern dashboards:
SELECT COUNT(1) AS Count_Items, Status FROM Orion.Nodes GROUP BY Status
Thanks
Try this, replace Applicaitons to the name of your property, and '%SQL%' means match property string with SQL anywhere in it. The % is a match for any other set of characters, so if you don't need the wild cards, skip them. If you need 1, its still better.
SELECT COUNT(1) AS Count_Items, N.StatusFROM Orion.Nodes N Where N.CustomProperties.Applications like '%SQL%'GROUP BY N.Status
That worked like a charm!!! Thanks.