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!

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