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!

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 ...

Introduction to Splunk AI

How are you using AI in Splunk? Whether you see AI as a threat or opportunity, AI is here to stay. Lucky for ...