Hey Folks - I want to nest this swql below in the alert swql trigger condition, but the SELECT statement is pre hard-coded within the alert trigger condition. It is basically monitoring a sum of 10 values then checking if the sum value is greater that 650
SELECT value FROM
(SELECT SUM(data.NumericData) as value
FROM Orion.APM.MultipleStatisticData data
WHERE data.Name != 'Offline'
AND data.ComponentID = '12345'
AND data.NumericData is not NULL)
WHERE value > 650;
Many thanks