Splunk Search

How to find the average of top (max) values of a field sorted by other fields?

andrewhlui
Explorer

I have the following table of data generated by a search:

category a category b  count 
         A          E      1
         A          F     10
         B          E      2
         B          E     12
         B          F      3
         B          F      5
         A          E     10
         A          E      2
         A          E     15

I want to find the average of the top 3 values (or any other arbitrary number of values) for each grouping.

So for (A, E) the values would be:

1, 2, 10, 15 -> top 3 values are 2,10,15 -> average of 9

The resulting table should look something like this:

         E      F
  A      9     10
  B      7     4

How should I do this?

0 Karma

somesoni2
Revered Legend

GIve this a try. You would need to update the | dedup N... to configure how many top values you want to keep.

your current search
| sort 0 category_a category_b -count
| dedup 3 category_a category_b
|chart avg(count) by category_a category_b

cmerriman
Super Champion

I would start with a streamstats.

...base search|sort 0 - count category_a category_b|streamstats count as top by category_a category_b|where top<4|chart avg(count) by category_a category_b

http://docs.splunk.com/Documentation/SplunkCloud/6.6.3/SearchReference/Streamstats
with streamstats and sort, you should be able to filter the top three of each category set and average them with chart.

0 Karma
Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...