Splunk Search

How to compare CutoffTime with current time?

pradeepkm
Explorer

 I have created a lookup table with filename and cutofftime within which we have to receive the file. I have to compare Cutofftime to check if its falling within 30 mins of current time and retrieve that particular file name from lookup  and search for it. Please help me with query

Labels (4)
Tags (1)
0 Karma

somesoni2
Revered Legend

Assuming your lookup field for cutofftime has epoch value, you can retrieve the filename based on your condition like this:

| inputlookup yourLookupName.csv | table filename cutofftime | where abs(cutofftime-now())<=1800 | table filename

If it's in some specific string timestamp format, replace "abs(cutofftime-now())" with "abs(strptime(cutofftime,"Your Time Format")-now()".  Find your Timeformat here.

Once you finalize your above query, your search data for your retrieved file like this:

index=YourIndex sourcetype=YourSourcetype [| your finalized query | which will give filename. your may have to rename field 'filename' to field name that your index/sourcetype has] 

pradeepkm
Explorer

I was able to figure out working query.Yes I have used similar logic mentioned by you.Thanks for the response.

0 Karma
Get Updates on the Splunk Community!

Don't wait! Accept the Mission Possible: Splunk Adoption Challenge Now and Win ...

Attention everyone! We have exciting news to share! We are recruiting new members for the Mission Possible: ...

Unify Your SecOps with Splunk Mission Control

In today’s post, I'm excited to share some recent Splunk Mission Control innovations. With Splunk Mission ...

Data Preparation Made Easy: SPL2 for Edge Processor

By now, you may have heard the exciting news that Edge Processor, the easy-to-use Splunk data preparation tool ...