Splunk Search

Convert Snap-To Time to Epoch Time

michaelsplunk1
Path Finder

Hi everyone!

My time picker token spits out values like "-60m@m" and I want to convert this time value into an epoch time so I can filter based on epoch time. How do I convert this? Can I use strptime() to do it? What format would I tell strptime() the time is in?

Thank you!

Labels (1)
Tags (3)
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| eval epochtime=relative_time(now(),"-60m@m")

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| eval epochtime=relative_time(now(),"-60m@m")

to4kawa
Ultra Champion

your search
| addinfo
| eval your_time=strftime(info_min_time,"%F %T")

try addinfo command. info_min_time is epoch.

Get Updates on the Splunk Community!

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...