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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...