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!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...