Splunk Search

How do you dynamically generate month name based on a search?

rwarnerii
New Member

I have created a Month over Month dashboard that will eventually become a report that is sent on the 1st day of the month, every month. Is it possible to dynamically generate the month name from the search? Assuming this is run on March 1st, my search contains the following for the time frames:

Previous Month (January) -  earliest=-2month@month latest=-1month@month
Current Month (February) - earliest=-1month@month latest=@month

How can I use these, or some other command, to generate the month names to use as column headers?

I'm currently using: "stats count as January" and "stats count as February" in the search, but I would like to remove those, so I don't have to edit the search for the proper month names each month.

Let me know if you need more information.

Thanks!

Rk.

0 Karma

woodcock
Esteemed Legend

Like this:

... | stats count AS [| makeresults | eval month=strftime(relative_time(now(), "@m"), "%B") | return $month ]

You may need to change @m to -1m@m.

0 Karma

mayurr98
Super Champion

hello

use this for every search:

index=<your_index> earliest=-2month@month latest=-1month@month date_month=* 
| stats count by date_month 
| transpose header_field=date_month 
| fields - column

this is common :

| stats count by date_month 
| transpose header_field=date_month 
| fields - column

let me know if this helps!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...