Splunk Search

Field Extraction - Multi Line Text Comma Separated

Razziq
Explorer

Hello,

Hoping someone can help with a Field Extraction question regarding multi line text and capturing a specific value before a comma for each line.

The text example is below where I am trying to get the Tagname for each line, but the Field Extraction is only applying to the first line. Testing in Rubular or Regex101 and it works fine.

Tag: Tagname,Date,Value
Tag: Tagname1,Date1,Value1
Tag: Tagname2,Date2,Value2
Tag: Tagname3,Date3,Value3
Tag: Tagname4,Date4,Value4
Tag: Tagname5,Date5,Value5

I've tried :

Tag:\s(?<Tag>.+?),

(?ms)Tag:\s (?<Tag>.+?),

(?m)Tag: \s(?<Tag>.+?),

 

As well as a few others, but all seem to stop after the first capture. Any help would be appreciated, thanks!

 

Labels (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The default behavior is to extract only the first match.  To get more matches, use the max_match=0 option of rex in SPL, the MV_ADD attribute at search time, or the REPEAT_MATCH attribute at index time.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

The default behavior is to extract only the first match.  To get more matches, use the max_match=0 option of rex in SPL, the MV_ADD attribute at search time, or the REPEAT_MATCH attribute at index time.

---
If this reply helps you, Karma would be appreciated.

Razziq
Explorer

Never mind - I was able to get it working via the following in a search instead:

| rex max_match=0 field=_raw "(?ms)Tag:\s(?<Tag>.+?),"

0 Karma
Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...