Splunk Search

How to include month name in streamstats as?

dvg06
Path Finder

Hi Legends

How do I give bit more meaningful names for fields last_sum and first_sum in below query?

i.e. something like sum_February and sum_March? 

Is there a way to use the value of date_month field in a search? 

streamstats current=f window=1 last(sum) as last_sum  first(sum) as first_sum

Labels (1)

yeahnah
Motivator

Hi @dvg06 

Assuming you want something dynamic, then this run anywhere example shows a method to use...

| makeresults | eval last_sum="100", first_sum="200"
| eval current_month=strftime(now(), "%B"), previous_month=strftime(relative_time(now(), "-1month@month"), "%B")
      ,last_{current_month}=last_sum, first_{previous_month}=first_sum
| table last* first*

Hope that helps

0 Karma
Get Updates on the Splunk Community!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...