Getting Data In

"Calculating the difference in minutes between the current time and a given time."

Bracha
Path Finder

I'm trying to calculate the minute difference between two times
and get an empty field

 

.........base search here.........
|end_time = 2024-09-24 08:17:13.014337+00:00
|eval end_time = strptime(end_time_epoch, "%Y:%m:%d %H:%M:%S")
|eval _time = now()
|eval time_epoch = strptime(time_epoch, "%Y:%m:%d %H:%M:%S")
|eval diff = (time_epoch-end_time)/60

 

Labels (1)
0 Karma
1 Solution

inventsekar
SplunkTrust
SplunkTrust

Hi @Bracha Pls check this:

| makeresults | eval end_time="2024-09-24 08:17:13.014337+00:00"
|eval end_timeepoch = strptime(end_time, "%Y-%m-%d %H:%M:%S.%6Q+00:00")
|eval _time = now()
|eval diff = (end_timeepoch-_time)/60 | table end_time end_timeepoch _time diff

inventsekar_0-1728972499048.png

 

View solution in original post

0 Karma

inventsekar
SplunkTrust
SplunkTrust

Hi @Bracha Pls check this:

| makeresults | eval end_time="2024-09-24 08:17:13.014337+00:00"
|eval end_timeepoch = strptime(end_time, "%Y-%m-%d %H:%M:%S.%6Q+00:00")
|eval _time = now()
|eval diff = (end_timeepoch-_time)/60 | table end_time end_timeepoch _time diff

inventsekar_0-1728972499048.png

 

0 Karma

Bracha
Path Finder

thanks @inventsekar 

it solved!

0 Karma

inventsekar
SplunkTrust
SplunkTrust

@Bracha could you pls accept it as solution, thanks. 

Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...