Splunk Search

mvindex after stats

asarolkar
Builder

We are attempting to get the top five modules that download mp3 music data THE MOST and their respective VOLUMES

DeviceNum is mp3 device number

TotalVolumeDownloaded is downloaded per DeviceNum

This is the query :

index="usage" | stats max(TotalVolumeDownloaded) as Max by DeviceNum | dedup DeviceNum  sortby -Max | eval DeviceNum_top_five =mvindex(DeviceNum, 0,4) | eval volume_top_five =mvindex(Max,0,4) | table DeviceNum_top_five volume_top_five

This should get me top 5 devices and top 5 usage. Curious so as to why this doesnt work

0 Karma
1 Solution

sowings
Splunk Employee
Splunk Employee

Stats alone is not sufficient to create a multivalued field; mvindex requires that the field be multi-valued. You might try head limit=5

View solution in original post

0 Karma

sowings
Splunk Employee
Splunk Employee

Stats alone is not sufficient to create a multivalued field; mvindex requires that the field be multi-valued. You might try head limit=5

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...