Hi All,
Don't know if this is the correct place
I am fairly new to the SolarWinds platform and getting to grips with the SWQL creation. so hopefully this is easy.
We have a table widget for health of all our nodes which includes details such as cpu loads memory usage etc.
Now i have created a custom group under the name "telephony" which reports on all the nodes for our telephony servers.
How do i add to only report on those in that group? I have been pulling my hair out. the current SWQL is below.
SELECT n.Caption AS [Node Name]
, n.Status
, n.IPAddress
, n.StatusDescription AS [Status Description]
, n.DetailsURL AS [Node Details URL]
, n.MachineType AS [Vendor Name]
, n.VendorInfo.Icon AS [System Vendor Icon]
, n.CPULoad AS [CPULoad]
, n.ResponseTime AS [Response Time]
, n.PercentMemoryUsed AS [Memory Usge]
, n.PercentLoss AS [Packet Loss]
, CONCAT ('/Orion/SSH/Terminal.aspx?NodeId=' , n.NodeID) AS [SSH]
FROM Orion.Nodes n
WHERE n.MachineType NOT LIKE '%Wind%' AND n.Status != Unmanaged
If any ideas or if its just a simple change please let me know.
Thanks!