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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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