I have the following statement from a SQL query. How do I do the same thing in SWQL? Basically I am just looking for metrics in the past hour.
(CPULoad.DateTime > DATEADD(HOUR, - 1, GETDATE()))
Got it.
CPULoad.DATETIME > ADDDAY(-1, GETDATE())
SWQL Functions · solarwinds/OrionSDK Wiki · GitHub