How would you construct a SWQL to return the statistic value for two different SAM components?
SELECT E0.[Uri], E0.[DisplayName], E0.[Application].[Node].[SysName], E0.[ComponentAlert].[StatisticData],E0.[Application].[Node].[CPULoad] FROM Orion.APM.Component AS E0 WHERE ( E0.[ComponentAlert].[ComponentName] = 'Processor Queue Length' )
And
SELECT E0.[Uri], E0.[DisplayName], E0.[Application].[Node].[SysName], E0.[ComponentAlert].[StatisticData],E0.[Application].[Node].[CPULoad] FROM Orion.APM.Component AS E0 WHERE ( E0.[ComponentAlert].[ComponentName] = '% Processor Time' )
I've tried UNION but to no joy.