Hi All,
I am attempting to make a dashboard that shows total counts of nodes in multiple containers with statuses of critical, warning etc.
Using SWQL
SELECT Count (n.DisplayName) as ContainerMembers FROM Orion.ContainerMembers n WHERE n.ContainerID = '1' AND n.Status = '14'
Works for a single container. I am struggling to work out how to make the count span multiple containers like 1, 2, 3 and 4 though.
Could anyone advise if this is possible and show an example?
Thanks.