Splunk Search

Using stats Min and Max commands inside a search

omend
Path Finder

Hi All,

I have inserted my raw data into Splunk. The data contains many records on sales statistics of different store branches. The data is in a format of "Date" "Branch_ID" "Sales in USD".

I would like to calculate "Score" for each of these records. For simplicity, Lets assume the Score function operates like this - For each record (that stands for one branch sales on a specific date), I would like to normalize the sales number by subtracting the minimal value of this branch sales across history, and divide it by the range of the sales across history (range as the difference between the max and min values).

i.e per record, Score = (Sales - min(All sales values of this branch)) / Range(All sales values of this branch)

Could someone help me with a snippet of this kind of query?

Thanks,
Ori.

Tags (5)
0 Karma
1 Solution

Ayn
Legend

You could probably use eventstats and eval for creating the stats and then performing your calculations.

... | eventstats min(Sales) as minSales, range(Sales) as rangeSales | eval Score = (Sales-minSales)/rangeSales

View solution in original post

Ayn
Legend

You could probably use eventstats and eval for creating the stats and then performing your calculations.

... | eventstats min(Sales) as minSales, range(Sales) as rangeSales | eval Score = (Sales-minSales)/rangeSales

omend
Path Finder

That works perfectly. Thank you very much!

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 ...