Getting Data In

days information

roopeshetty
Path Finder

Hi Guys,

We have a field by name “Validity” which shows the validity date as below for different products;

Validity : Dec 19, 2021

Validity : Dec 11, 2022

Validity : Mar 14, 2023

Validity : Aug 24, 2021

Here we need to create a field by name “DaysRemaining” which will have the values as number of days left from today by deducting the current date (of host running splunk ) with that Validity date. We will run that query once in every day so that the Days remaining will change every day.

Can someone please help us with the splunk query?

0 Karma

woodcock
Esteemed Legend

Add this to the bottom of existing search:

... | eval Validity = strptime(Validity, "%b %d, %Y")
| fieldformat Validity = strftime(Validity, "%b %d, %Y")
| eval DaysRemaining = now() - Validity
| fieldformat DaysRemaining = tostring(DaysRemaining, "duration")
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @roopeshetty,
you have to convert dates in epochtime and then use eval to subtract:

your_search
| eval diff_days=(strptime(Validity,"%b %d,%Y")-now())/3600/24
| table Validity diff_days

Eventually, you can round.

Ciao.
Giuseppe

richgalloway
SplunkTrust
SplunkTrust

Finding the difference between timestamps requires first converting them to epoch (integer) form. Try this:

... | eval DaysRemaining = (now() - strptime(Validity, "%b %d, %Y")) / 86400
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...