If i use this in sql, i pull the information needed...
SELECT [AuditEventID] AS [Event ID]
,[TimeLoggedUtc] AS [DATE]
,[AccountID] AS [USER]
,[ActionTypeID]
,[AuditEventMessage] AS Message
FROM [SolarWindsNPM1].[dbo].[AuditingEvents]
WHERE ActionTypeID LIKE '25' AND TimeLoggedUTC Like '%2022%'
ORDER BY TimeLoggedUtc DESC
It will give me all the information I am looking for...
Howerver, If I use swql, with this query..it always pulls 1530 rows..If I add anything to do with ActionTypeID, i receive an error
I only get 1530 rows, and there are no ActionTypeID of 25... or users adding nodes...
SELECT TimeLoggedUtc
,AccountID
,AuditEventMessage
FROM Orion.AuditingEvents
WHERE TimeLoggedUTC LIKE '%2022%'
ORDER BY TimeLoggedUtc DESC