Splunk Search

How do you display the last 4 months in Splunk starting from the current month?

sbhatnagar88
Path Finder

How do you display the last 4 months in Splunk starting from the current month?

Required output is:

January 2019
December 2018
November 2018
October 2018

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

@sbhatnagar88 ,

Try

 |makeresults
 |eval months=strftime(mvrange(relative_time(_time,"-3mon@mon"),relative_time(_time,"@mon+1"),"1mon"),"%B %Y")
 |mvexpand months

Detailed/expanded version

|makeresults
|eval earliest=relative_time(_time,"-3mon@mon") 
|eval latest=relative_time(_time,"@mon+1")
|eval months=mvrange(earliest,latest,"1mon")
|eval months=strftime(months,"%B %Y")
|mvexpand months|table months
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

0 Karma

ryhluc01
Communicator

I believe you need to change the maximum amount of results your query can display before you can do this. Unless you're talking about the actual syntax query.

Are you talking about the query or about not being able to see 4 months of data?

0 Karma

renjith_nair
Legend

@sbhatnagar88 ,

Try

 |makeresults
 |eval months=strftime(mvrange(relative_time(_time,"-3mon@mon"),relative_time(_time,"@mon+1"),"1mon"),"%B %Y")
 |mvexpand months

Detailed/expanded version

|makeresults
|eval earliest=relative_time(_time,"-3mon@mon") 
|eval latest=relative_time(_time,"@mon+1")
|eval months=mvrange(earliest,latest,"1mon")
|eval months=strftime(months,"%B %Y")
|mvexpand months|table months
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

sbhatnagar88
Path Finder

Great!! that works absolutely fine...thanks for help!!!

0 Karma

renjith_nair
Legend

@sbhatnagar88 , if it helped, please accept as answer

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

richgalloway
SplunkTrust
SplunkTrust

@sbhatnagar88 If your problem is resolved, please accept an answer to help future readers.

---
If this reply helps you, Karma would be appreciated.
0 Karma

sbhatnagar88
Path Finder

Thanks much!! Problem has been solved...

0 Karma
Get Updates on the Splunk Community!

Aligning Observability Costs with Business Value: Practical Strategies

 Join us for an engaging Tech Talk on Aligning Observability Costs with Business Value: Practical ...

Mastering Data Pipelines: Unlocking Value with Splunk

 In today's AI-driven world, organizations must balance the challenges of managing the explosion of data with ...

Splunk Up Your Game: Why It's Time to Embrace Python 3.9+ and OpenSSL 3.0

Did you know that for Splunk Enterprise 9.4, Python 3.9 is the default interpreter? This shift is not just a ...