So I'd like to obtain a table for a dashboard with all the servers within a particular group that have had memory utilisation of 95% or more over a 30 minute period.
Example of table;
Node Name | Current Memory Usage | Time and Date Utilisation started | Total Minutes Memory Utilisation |
Test Server1 | 98% | 11/04/2025 11:26 | 46 minutes |
The group name is Test Servers
Thanks in advance
POST EDIT: So I've managed to get this SWQL to work, however it still needs improving;
SELECT [data].[DisplayName] AS [DisplayName],[data].[InstanceSiteID] AS [InstanceSiteID],[data].[PercentMemoryUsed] AS [PercentMemoryUsed]
FROM orion.nodes AS data
WHERE [data].[PercentMemoryUsed] > 95