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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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