You can add the asset tables for both the monitor and the computer to your report and define what you would like to see. The relation between assets and other assets connected to them is stored in table
tblAssetRelations. Please find a report below which lists computers in a state other than active which have a monitor asset connected to them in active state.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Lastseen,
tblAssets.Lasttried,
tMonitor.AssetName
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblAssetRelations
On tblAssets.AssetID = tblAssetRelations.ParentAssetID
Inner Join tblAssets tMonitor
On tMonitor.AssetID = tblAssetRelations.ChildAssetID
Inner Join tblAssetCustom tMonitorCustom On tMonitorCustom.AssetID =
tMonitor.AssetID
Where tblAssetRelations.Type = 3 And tblAssetCustom.State <> 1 And
tMonitorCustom.State = 1
Order By tblAssets.AssetName,
tMonitor.AssetName