Activity Feed
- Posted Re: Are there any Text analyzer app that we can use in splunk? on All Apps and Add-ons. 12-18-2017 12:38 AM
Topics I've Started
No posts to display.
12-18-2017
12:38 AM
If you can limit yourself to words rather than phrases then this bit of code should work:
index="myIndex" | makemv myField | mvexpand myField | stats count by myField
It assumes that words are space separated, if you have any other separtor just tweak makemv command.
What happens here is makemv splits normal text field into multi value field, mvexpand "flattens" it (puts each value as a separate event) and stats part just makes stats magic 🙂
... View more