Does anyone have a SWQL query for a custom widget that allows you to pull in number of active anyconnect sessions for multiple firewalls? Do I just need to repeat the last 2 lines with the other node ID's or is there a way to to add multiple node id's in the same line?
I am not great at writing these and the one I have only queries one node.
SELECT
count ([data].[RemoteAccessSessions].[UserName]) AS [Number]
FROM orion.asa.node AS data
where [data].[RemoteAccessSessions].[EncryptionAlgorithm] = 1
and ([data].[RemoteAccessSessions].[NodeId] = XXXXor [data].[RemoteAccessSessions].[NodeId] = XXXX)
and [data].[RemoteAccessSessions].[DisconnectedTime] is null
Also if you have any other cool SWQL queries for anyconnect sessions feel free to share them to me 
Thanks