Hello, I am trying to make a KPI widget on a modern dashboard that displays how many computers are up and running, and how many are shut down.
I work in a very large organization with thousands of computers, but I am only interested in about 100, which I have gathered in a node group in Solarwinds.
How do I customize my widget to show only the group that I am interested in?
I have tried the following SWQL query, but I get an unspecified error with no debugging information. I guess WHERE clauses don't work?
SELECT COUNT(NodeID) AS value, Status AS status
FROM Orion.Nodes
WHERE GroupName = 'PI Servers'