Splunk Search

How to do operations with dates fields?

bruno_eduardo
Path Finder

Got a date field that I would like to return only events that were within a specific range, from today to 15 days in the future.
To get today:
|eval timenow=now() |eval nowstring=strftime(now(),"%d/%m/%Y %H:%M:%S")
|table nowstring
04/11/2014 10:35:59

My date field is already like this:
|table "Resolution Period"
27/01/2014 23:59:59

But when I try a simple search like this:
|where "Resolution Period" > nowstring |table "Resolution Period"
I still got all events, unfiltered. Do I need to change something on the "Resolution Period"??

And How to return only events that were within a specific range, from today to 15 days in the future.???

Thanks in advance

Tags (3)
0 Karma
1 Solution

MuS
Legend

Hi bruno_eduardo,

I would compare epoch times not human readable time stamps.

So something like this will do it:

... | eval now_time=now() 
| convert mktime("Resolution Period") AS Resolution_Period
| where Resolution_Period > now_time
| table Resolution_Period

regarding the future timestamp you can try this:

... | eval future_time=relative_time(now(), "+15d") | ...

this will return an epoch timestamp as well.

hope this helps ....

cheers, MuS

View solution in original post

MuS
Legend

Hi bruno_eduardo,

I would compare epoch times not human readable time stamps.

So something like this will do it:

... | eval now_time=now() 
| convert mktime("Resolution Period") AS Resolution_Period
| where Resolution_Period > now_time
| table Resolution_Period

regarding the future timestamp you can try this:

... | eval future_time=relative_time(now(), "+15d") | ...

this will return an epoch timestamp as well.

hope this helps ....

cheers, MuS

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 ...