Splunk Search

Need REGEX to capture outermost curly-braces in CSV (some fields have nested curly-braces)

woodcock
Esteemed Legend

I have CSV events like this:


f1,f2,{f3a,f3b},f4,{f5a,{f5b1,f5b2,{f5c2a,f5c2b}}},f6

Only certain fields have sub-fields designated by curly-braces (in this case f3, and f5).

I'd like to do a field extraction in transforms.conf that will capture these which should look something like this (which would work if there was no curly-brace nesting at all):

REGEX = ^([^,]*),([^,]*),\{([^\}]*)\},([^,]*),\{([^\}]*)\},([^,]*)

The fly in the ointment is that I do not know the depth of the curly brace nesting so it is not possible to build an explicitly OR'd REGEX.

Does Splunk support .NET style REGEX "balancing groups" or is there some other way to do this (e.g. pass the event to a Python script that does the extraction)?

dwaddle
SplunkTrust
SplunkTrust

Does Splunk support .NET style REGEX "balancing groups"

Not exactly, no, but there is the PCRE concept of a "recursive pattern" that can closely emulate it. (Splunk uses PCRE so this should work as well.) A good starting point would be the PCRE documentation, search for "RECURSIVE PATTERNS". There is a usable starting example there.

hexx
Splunk Employee
Splunk Employee

... is there some other way to do this (e.g. pass the event to a Python script that does the extraction)?

One thing you can try if you are proficient in Python is to write a custom search command.

Note that this is not trivial. You can take a look at some examples in $SPLUNK_HOME/etc/apps/search/bin. You will specifically want to look at commands like diff.py or rangemap.py which perform field-level operations.

Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...