There was a need to display just specific hardware information and the built-in resource didn't quite do it. So, I decided to replicate it using swql for maximum flexibility.
In this the server NOC can have hardware faults on their devices and network NOC can have their devices and storage NOC can have just array information.
This can also be modified to have it on the "nodes detail" page by filtering on ${nodeid}.
SELECT
n.Caption AS [Node Name]
,n.DetailsUrl AS [_LinkFor_Node Name]
,'/Orion/images/StatusIcons/Small-' + n.StatusIcon AS [_IconFor_Node Name]
,hi.name as [HW Device]
,'/Orion/images/StatusIcons/Small-'+hi.StatusDescription+'.gif' as [_IconFor_HW Device]
--,hi.DetailsUrl AS [_LinkFor_HW Device]
,hi.OriginalStatus
FROM Orion.Nodes n
inner join Orion.HardwareHealth.HardwareItem hi on hi.NodeID=n.nodeid
WHERE -- n.nodeid= ${nodeid}
hi.StatusDescription not in ('up','unknown')
Thanks
amit