Splunk Search

Sort and Sum...a more elegant way?

JamesPineda
New Member

New to dbs and Splunk.

Querying against a CSV file of buy events. Want to return top 10 Users by purchase totals.

I ran:
source="file_name.csv" | sort by userid | stats sum(price) as BuyerTotals by userId |rename userId as User | sort -num(BuyerTotals) by User limit=10

A sanity check indicates my returned values are correct.

Can anyone suggest a more elegant way of scripting?

Cheers,
James

Tags (4)
0 Karma

mayurr98
Super Champion

Hey
Try this !

source="file_name.csv"  | stats sum(price) as BuyerTotals by userId |rename userId as User | sort limit=10 BuyerTotals desc

Let me know if this helps you!

0 Karma
Get Updates on the Splunk Community!

Fall Into Learning with New Splunk Education Courses

Every month, Splunk Education releases new courses to help you branch out, strengthen your data science roots, ...

Super Optimize your Splunk Stats Searches: Unlocking the Power of tstats, TERM, and ...

By Martin Hettervik, Senior Consultant and Team Leader at Accelerate at Iver, Splunk MVPThe stats command is ...

How Splunk Observability Cloud Prevented a Major Payment Crisis in Minutes

Your bank's payment processing system is humming along during a busy afternoon, handling millions in hourly ...