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!

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

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...