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!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...