Splunk Search

Calculating difference between two timestamp

Jananee_iNautix
Path Finder

Hi ,

There are two fields named "start_time" and "end_time" extracted from logs and displayed in the format "03/21/14 01:11:13".Can someone tell the search query on how to calculate the differnce between two time and display the difference in terms of seconds.For example

Start_time End_time duration
03/21/14 01:11:13 03/21/14 01:11:15 2

Tags (1)
0 Karma
1 Solution

kbecker
Communicator

Use the convert command to change them too epoch time. Then use eval to get the difference. In seconds.

View solution in original post

kbecker
Communicator

Use the convert command to change them too epoch time. Then use eval to get the difference. In seconds.

martin_mueller
SplunkTrust
SplunkTrust

I often find the various functions of convert to be confusing to beginners, so here's a working example:

| stats count | eval startTime = "03/21/14 01:11:13" | eval endTime = "03/21/14 01:11:15" | convert mktime(*Time) timeformat="%m/%d/%y %H:%M:%S" | eval diff = endTime - startTime
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...