I would like to filter on the worldmap showing only down nodes that have not have their alert acknowledged.
I see limited options. Currently, only down nodes using node properties. See below.

I can do this with a swql command with proper results using the code below.
SELECT TOP 100 AlertDefID, ActiveObject, ObjectType, State, WorkingState, ObjectName, AlertMessage, TriggerTimeStamp, TriggerTimeOffset, TriggerCount, ResetTimeStamp, Acknowledged, AcknowledgedBy, AcknowledgedTime, LastUpdate, AlertNotes, Notes, AlertObjectID, DisplayName, Description, InstanceType, Uri, InstanceSiteId
FROM Orion.AlertStatus where acknowledged=0
I am wondering how I apply this logic to the WorldMap.
Am I missing something? A node property or using a custom group?
Any help is appreciated.