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
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: Matching cron expressions

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

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas

Why Splunk Customers Should Attend Cisco Live 2026 Las Vegas     Cisco Live 2026 is almost here, and this ...

Data Management Digest – May 2026

Welcome to the May 2026 edition of Data Management Digest!   As your trusted partner in data innovation, the ...