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+)\]
Get Updates on the Splunk Community!

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...

Splunk MCP & Agentic AI: Machine Data Without Limits

Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization uses ...