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!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...