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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...