Hi - I am trying to create a widget running information on Hard Disk space along with specific information on cpu load etc.
I am asking it to focus on a specific group rather than every node. Whats missing is the hard drive information
the SWQL script 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
LEFT JOIN Orion.ContainerMembers ON ContainerMembers.name=n.caption AND MemberEntityType='Orion.Nodes'
WHERE ContainerMembers.ContainerID = '122'
How do i join the information from 'orion volumes' section so i can display that part in my widget output?
Any help will be brilliant