Splunk Search

How to search for the most common word used?

NoisyClip
Engager

Hi,

I've a file which contains a chunk of words. What I wanted to do is to find the top 10 most common word used from this file. How should my search looks like?

Thanks in advance!

Tags (3)
0 Karma
1 Solution

strive
Influencer

If you can post some sample data, then it will be helpful for splunkers to help you

Check this out if this solves your problem http://answers.splunk.com/answers/62413/how-to-extract-most-popular-words-from-the-source-data

View solution in original post

strive
Influencer

If you can post some sample data, then it will be helpful for splunkers to help you

Check this out if this solves your problem http://answers.splunk.com/answers/62413/how-to-extract-most-popular-words-from-the-source-data

msenebald
Explorer

Hi,
depends a bit how your events look like.
I guess the easiest way is make every word a new event and use top.

Or use just shell script on nix

cat file.txt | sed -r 's/[[:space:]]+/\n/g' | sed '/^$/d' | sort | uniq -c | sort -n | tail -n10

Good luck

Get Updates on the Splunk Community!

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...