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
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...