Hi all,
I'm counting all "Up" entries from Orion.VIM.VirtualMachines and Orion.Nodes seperately.
Is there any way to combine these two "UP" KPI's to count as one? All my attempts hit SWQL limitations.
Current Look:
Top KPI for Up is
"SELECT N.TheCountFROM (SELECT COUNT(1) as TheCount FROM Orion.VIM.VirtualMachines n WHERE n.Tags.Name = 'VMtagName' AND (Status = '1') ) N"
Bottom KPI:
SELECT N.TheCountFROM (SELECT COUNT(1) as TheCount FROM Orion.Nodes n WHERE n.CustomProperties.Team IN ('XYZ') AND (Status = '1') ) N