Greetings all,
I am very new to using SQL and am still having trouble wrapping my head around it. As you can see, that would be one of the main issues when trying to take the reigns at SWQL. As a rule of thumb, what is the best way to convert SWQL to SQL or vice-versa?
My objective is to pull data from my SolarWinds Database into the data visualizer Grafana via a Microsoft SQL plugin. Down below is the SWQL script I plan on starting with:
SELECT COUNT ([AlertObjects].AlertConfigurations.Severity) AS [Severity]
FROM Orion.AlertObjects AS [AlertObjects]
WHERE [AlertObjects].EntityCaption LIKE '%SQ75%' AND [AlertObjects].AlertConfigurations.Severity = 2 --CRITICAL--
AND [AlertObjects].AlertActive.AlertActiveID > 0