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
Happy Splunking!

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
Happy Splunking!
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

Happy Splunking!
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!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...