Splunk Search

Help with regex to extract field "failure" and add to field called "error"

denisevw
Path Finder

Can anyone help me with a regular expression for an extraction please?

Need to extract "failure" from below and add to field called "Error":

160.2:ERR Code = <1/failure/7353280025534419>

This regex does not work:

rex field=_raw "\d+\:ERR\s+Code\s+\=\s\<1\/(?P<Error>[^\>]+)\/[0-9]\>"

Thanks in advance.

Tags (2)

alacercogitatus
SplunkTrust
SplunkTrust

REGEX! YAY!

<your_search> | rex field=_raw "\d+\:ERR\s+Code\s+=\s+<1/(?<Error>[^/]+)/"
0 Karma

somesoni2
Revered Legend

Try this

your base search | rex "\<\d+\/(?<Error>\w+)\/"
0 Karma

alacercogitatus
SplunkTrust
SplunkTrust

heh, I should reload page before answering 😄

linu1988
Champion

Hello,
Am not sure which part exactly would you like to extract.

if it's failure: |rex field=_raw "\/(?<Error>\S+)\/"

if it's the long digit which is the error code then: |rex field=_raw "\/(?<Error>\d+)\>"

Thanks,
L

0 Karma

linu1988
Champion

do you get any error? and is this all you have in the _raw data? try with more match...

|rex field=_raw "\\d+\/(?<Error>\S+)\/"
0 Karma

denisevw
Path Finder

The above regex did not work in my search.

0 Karma

denisevw
Path Finder

Thanks for the reply. I want to extract only the word "failure"

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...