So far I just have it being listed as top 10 from the list. | stats count by dest_ip | sort -count | head 10 | rename dest_ip as LIST, count as "Events" | table LIST, "Events" | lookup Lookup.csv LIST OUTPUT FirstSeenDate,LastSeenDate,TotalSeenCount |rename LIST as "IP"| table "IP", "Events", FirstSeenDate,LastSeenDate,TotalSeenCount The format of the FirstSeenDate is YYYY-mm-dd HH:MM:SS I want to have the results give me the top 10 events by count which it already does but also filter the FirstSeenDate as only list the top 10 events from the last 3 months. Thank you
... View more