Splunk Search

How to calculate the difference between two dates?

marceldera
Explorer

I have 2 dates

first_found: 2022-08-23T21:08:54.808Z

last_fixed:2022-08-30T12:56:58.860Z

I am trying to calculate the difference in days between (first-found - last_fixed) and dump the result in a new field called "remediation_days"

 

Labels (1)
0 Karma

marceldera
Explorer

It works, however the results come back like this. 2419200.000000 even after i do the division.

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Dates can only be compared/calculated in integer (epoch) form.

| eval remediation_days = (strptime(last_fixed, "%Y-%m-%dT%H:%M:%S.%3N%Z") - strptime(first_found, "%Y-%m-%dT%H:%M:%S.%3N%Z") / 86400)
---
If this reply helps you, Karma would be appreciated.
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Parens error on my part.

| eval remediation_days = (strptime(last_fixed, "%Y-%m-%dT%H:%M:%S.%3N%Z") - strptime(first_found, "%Y-%m-%dT%H:%M:%S.%3N%Z")) / 86400

There's also this alternative.

 

| eval remediation_secs = strptime(last_fixed, "%Y-%m-%dT%H:%M:%S.%3N%Z") - strptime(first_found, "%Y-%m-%dT%H:%M:%S.%3N%Z")
| eval remediation_days = round(remediation_secs / 86400, 2)

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...