Splunk Search

rex to extract string

indeed_2000
Motivator

Hi I have log like this:

2022-02-01 11:59:59,869 INFO CUS.AbCD-Host-000000 [AppListener] Receive Packet[0000000*]: Cluster[String1.String2]

 

How can I extract String1 and String2 separately with a single rex like this? 

Cluster\[(?<GroupREX>\w+\.\w+)

 

Any idea?

Thanks,

Labels (3)
Tags (3)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
Cluster\[(?<String1>\w+)\.(?<String2>\w+)\]

View solution in original post

gcusello
SplunkTrust
SplunkTrust

Hi @indeed_2000 ,

if you're sure that the division between strings is dot, you could use a regex like this:

| rex "Cluster\[(?<string1>[^\.]+)\.(?<string2>[^\]]+)"

that you can test at https://regex101.com/r/5r3Mvp/1

Ciao.

Giuseppe

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
Cluster\[(?<String1>\w+)\.(?<String2>\w+)\]
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

.conf25 Global Broadcast: Don’t Miss a Moment

Hello Splunkers, .conf25 is only a click away.  Not able to make it to .conf25 in person? No worries, you can ...

Observe and Secure All Apps with Splunk

 Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

What's New in Splunk Observability - August 2025

What's New We are excited to announce the latest enhancements to Splunk Observability Cloud as well as what is ...