Splunk Search

How to write the regex to extract a field for offset columns?

jlim2003
New Member

Hello,

I am trying to extract a field that is offset by one column:

Event 1: [DT_2.0_REAL][0x80c00002]
Event 2: [0x80c00002]
Event 3: [HONDA_REAL][0x80c00002]
Event 4: [0x80c00002]

As you can see, the [0x80c00002] is offset by one column here, so the automatic field extraction fails.

How can I adjust the regex to account for this offset? Thanks!

0 Karma

woodcock
Esteemed Legend

If you are always going for the last one, like this:

... | rex "\[(?<lastBracketedField>[^\]]+)\]$"
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Do you need the enclosing brackets? This regex will extract the field without them.

(?P<field>0x[^\]]+)
---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...