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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...