Splunk Enterprise

Help in writing regex

Deepz2612
Explorer

Hi,
I wanted to extract the words that comes after 3 back slashes as field API

Please help me in writing the regular expression

Tags (1)
0 Karma

woodcock
Esteemed Legend

Like this:

| rex field=_raw "\\{3}(?<API>\w+)"

I took you literally and I am quite sure that what you said you need is not actually what you need.

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi Deepz2612,
if you want to use the rex command, use this:

your_search
| rex "\/\w+\/\w+\/(?<my_field>.*)"
| ...

You can test it at https://regex101.com/r/EceD4t/1

Bye.
Giuseppe

kmorris_splunk
Splunk Employee
Splunk Employee

Give this a try:

\/\w+\/\w+\/(?\w+)

Check out regex101.com if you aren't familiar. It is a good place to work out / test regex against text.

Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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