Thanks! That really helped. I got it to where it is showing the down pools correctly in SQL manager. I'm trying it as an alert now.
SELECT F5_Device_V.NodeID AS NetObjectID, F5_Device_V.Caption AS Name, F5_Pools.Name AS PoolName
FROM F5_Device_V
JOIN
F5_Pools ON F5_Pools.NodeID = F5_Device_V.NodeID
WHERE F5_Pools.AvailabilityState = 3
AND F5_Pools.Name like '%App-%'
AND (F5_Device_V.Caption like 'F5-1' OR F5_Device_V.Caption like 'F5-2')
When I write the alert email, how would I show the the F5 Device Name and the Pool Name that is down?