I have the following view which is fine, but I would like that in volumes it indicates an alarm of some disk that is alarmed and is shown in the table in the same row

SELECT TOP 10 n.IP_Address,n.NodeName,n.CPULoad,n.PercentMemoryUsed,aggSub1._count AS Orion_Volumes_Status_count
FROM Orion.Nodes n
LEFT JOIN (
SELECT i.NodeID,i.InstanceSiteId
, count(i.Status) AS _count FROM Orion.Volumes i
GROUP BY i.NodeID,i.InstanceSiteId
) aggSub1 ON aggSub1.NodeID=n.NodeID AND aggSub1.InstanceSiteId=n.InstanceSiteId
WHERE (IP_Address LIKE '%')