Splunk Enterprise Security

How to delete rows in lookup based on time or date

KumarGB
Explorer

Hi,

I am trying to build a query to monitor the IOCs in the lookup which has the time field in it.

Attached the screenshot.alt text

Based on the time field the rows should be automatically deleted. For example: the rows meets the condition "_time < 7 Oct 2019" should be deleted.

Do anyone have an idea on how to create saved search to delete the rows based on the condition.

1 Solution

jkat54
SplunkTrust
SplunkTrust

If you can write a search that produces all the other rows excluding what you want to delete, then you can just | outputlookup your_lookup

View solution in original post

0 Karma

jkat54
SplunkTrust
SplunkTrust

If you can write a search that produces all the other rows excluding what you want to delete, then you can just | outputlookup your_lookup

0 Karma

KumarGB
Explorer

Thanks!! It helped.

the below eval command was not giving a correct value

| eval 60dAgo=now()-(86400*60)

so I changed as below

| eval dif=(now()-TIME)/86400
| where dif <= 60

jkat54
SplunkTrust
SplunkTrust

Nice work adapting my example for your needs!

0 Karma

KumarGB
Explorer

I will be keep on adding IOCs on weekly basis.. I don't want the IOCs which are older than 60 days. So it should be deleted automatically from this lookup using the saved search.

0 Karma

jkat54
SplunkTrust
SplunkTrust

Yes thats what I'm saying...

| inputlookup append=true your_lookup 
| eval TIME=strptime(_time,"%m/%d/%Y")
| eval 60dAgo=now()-(86400*60)
| where TIME<60dAgo
| outputlookup your_lookup

Run it for all time however often you like.

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...