Getting Data In

understanding EVENT-BREAK settings

Abha
Explorer

Hi
I am just exploring how can event break settings be used.Need some help with it.

My input data is simply a text document, containing just a paragraph.
I want Splunk to take every word as one event.
What LINE_BREAKER do I specify in props.conf??
Can it be done in any other way?

Tags (1)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

To get each word split into its own event you could do this:

LINE_BREAKER=(\W+)
SHOULD_LINEMERGE=0

That will break events at every group of non-word characters and consume them so they will not appear in your event.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

To get each word split into its own event you could do this:

LINE_BREAKER=(\W+)
SHOULD_LINEMERGE=0

That will break events at every group of non-word characters and consume them so they will not appear in your event.

Abha
Explorer

It worked! Thanks a million 🙂

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...