It would be great to have a resource that show who is currently logged in the solarwinds web console.
Thanks,
Why not use a bit of SQL?
This SQL example details all users who were logged in currently.
SELECT [AccountID]
FROM [SolarWinds].[dbo].[Accounts]
WHERE [LastLogin] >= GETUTCDATE()