Splunk Search

Using eval to create date in epoch time

hcannon
Path Finder

I need to create a field today that is equal to the epoch timestamp in milliseconds for midnight yesterday. I've been successful in using eval for this, but splunk is adding ".000" to the end of the field value and I can't for the life of me figure out why or how to remove .000, so that the value can be passed to a dbxquery formatted in milliseconds.

I've tried using rex mode=sed field=today "s/.000//", then attempted to convert the value to a string first, before sending to rex/sed.
The .000 persists.

...| eval today=(relative_time(now(),"-1d@d")*1000) | top today

search result:
today=1513832400000.000

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

Try this

..| eval today=round(relative_time(now(),"-1d@d")*1000) | top today

View solution in original post

micahkemp
Champion

Try

eval today=round(relative_time(now(), “-1d@d”) * 1000, 0)
0 Karma

somesoni2
Revered Legend

Try this

..| eval today=round(relative_time(now(),"-1d@d")*1000) | top today

hcannon
Path Finder

this did the trick, thank you!!

0 Karma
Get Updates on the Splunk Community!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...