All Apps and Add-ons

Date time difference

vaibhavagg2006
Communicator

Hi,
I am having events with start datetime and end datetime in it.I want to calculate difference between them in the format:- Number of days-number of hours-number of minutes-no of seconds-number of miliseconds

The date format is as mentioned below
Startdate :- 12/24/2012 02-13-41.224
Enddate :- 12/24/2012 02-14-46.330
I tried various convert options but splunk is not calculating the difference and not able to convert datetime in epoch format.Everytime it displays blank values.
Any help will be appreciated and useful.

yannK
Splunk Employee
Splunk Employee

If the conversions do not work, is it because they do not go up to the millisecond, or because you cannot revert to days/hour/min/sec/millsec after ?

  • the long way is to extract all to epochtime using convert and TIMEFORMAT.


    | convert TIMEFORMAT="%m/%d/%Y %H-%M-%S" mktime(Startdate) AS startdate_epoch
    | rex field="Startdate" ".(?<start_millisec>\d+)"

    eventually keep the milliseconds aside it they are not converted.

  • do the subtraction.
    | eval duration_sec=startdate_epoch-enddate_epoch
    | eval duration_millisec=start_millisec-end_millisec

  • use a giant eval to convert the seconds to days / hour / min /sec, then add the milliseconds + extra seconds.

Drainy
Champion

Don't forget to click the tick mark next to the answer! That way anyone else with the same problem will be able to find this one easily 🙂

vaibhavagg2006
Communicator

This worked. Thankyou.

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!

From Data to Insight: Announcing the Winners of the Splunk Dashboard Contest

Hi Splunkers, First off, thank you to everyone who participated in our very first From Data to Insight: The ...

Splunk Developers: Construct Your Future at the .conf26 Builder Bar

Calling all Splunk architects, platform admins, and app developers: the site is open, and the blueprints are ...

Quick connection discovery mode for forwarders

When a Splunk forwarder loses connectivity to its indexers, it does not always reconnect immediately. In many ...