Splunk Search

Regex on search output?

jcmaynard
Explorer

Search: index=XXX source=/xxx/xxx/xxxx.log | regex 'something'

How would I do this properly showing just the regexed output?

Thanks...

0 Karma
1 Solution

alacercogitatus
SplunkTrust
SplunkTrust

So there are two ways.

  1. index=xx source=/xx.log | rex field=your_field "(?<your_new_field>REGEX)"| table your_new_field

This shows only the value of the captured regex.

  1. index=xx source=/xx.log | regex _raw="REGEX"

This keeps only the events that match REGEX.

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Regex
http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Rex

View solution in original post

0 Karma

jcmaynard2
New Member

The second one gives me the lines with what I'm looking for, when I choose 'View Source', it's giving me the full line and not the extracted data from each line. Can I do that?

0 Karma

rtadams89
Contributor

You can either use the first method and then filter out events where "your_new_field" is null (because the regex didn't match anything). Or you could run the second command given to filter out the relevant events, and then pipe that to the first command to actually do the extraction.

0 Karma

alacercogitatus
SplunkTrust
SplunkTrust

So there are two ways.

  1. index=xx source=/xx.log | rex field=your_field "(?<your_new_field>REGEX)"| table your_new_field

This shows only the value of the captured regex.

  1. index=xx source=/xx.log | regex _raw="REGEX"

This keeps only the events that match REGEX.

http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Regex
http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Rex

0 Karma
Get Updates on the Splunk Community!

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

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...