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!

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

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...