Splunk Search

Splunk Date/Time comparison using _time generated through timechart for a Span of 1 Month

promukh
Path Finder

Hello Experts,

I  am having a search as below 

 

 

|search | eval _time=new_t | timechart span=1mon sum(alloc) as used | streamstats sum(used) as "Total" | predict "Total" as "Projected" future_timespan=8

 

 

 

Output from the search is as below

_timeUsedTotalProjectedlower95
2019-0911<some numbers><some numbers>
2020-0323<some numbers><some numbers>
2020-0447<some numbers><some numbers>
2020-05411<some numbers><some numbers>
2020-09516<some numbers><some numbers>
2020-10  <some numbers><some numbers>
2020-11  <some numbers><some numbers>
2020-12  <some numbers><some numbers>
2021-01  <some numbers><some numbers>

 

How can i compare the "_time" field with current "month-year"  and display only those rows greater than the current Year-Month.

| search _time>strftime(now(),"%Y-%m-%d")

 

 

Any hep will be appreciated ..Thanks

Labels (3)
Tags (1)
0 Karma
1 Solution

thambisetty
SplunkTrust
SplunkTrust

comparison of two times without convert them to epoch is difficult.  converting just year and month to epoch time doesn't happen. I have added 01 as day for each months and compared. add below line to your SPL.

| where (strptime(strftime(_time,"%Y-%m-01"),"%Y-%m-%d"))> (strptime(strftime(now(),"%Y-%m-01"),"%Y-%m-%d"))

 

————————————
If this helps, give a like below.

View solution in original post

thambisetty
SplunkTrust
SplunkTrust

comparison of two times without convert them to epoch is difficult.  converting just year and month to epoch time doesn't happen. I have added 01 as day for each months and compared. add below line to your SPL.

| where (strptime(strftime(_time,"%Y-%m-01"),"%Y-%m-%d"))> (strptime(strftime(now(),"%Y-%m-01"),"%Y-%m-%d"))

 

————————————
If this helps, give a like below.

promukh
Path Finder

perfect thanks for the explanation ..appreciate it !!

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...