Hi all,
I've just started using Orion/Solarwinds today and wanted to find out if I am on the right track.
I basically need to find out all hosts that authenticate to a domain controller in the past 24 hours.
Am I on the right track with the below? ie. Am I querying the correct table and using the correct column for the timestamp?
res = s.query('''SELECT
DISTINCT(SourceHostname)
FROM
Orion.Netflow.Flows
WHERE
DestinationIP='%s'
AND
TimeStamp >= AddHour(-24, GETDATE())
''' % dc_ip)Thank you