Splunk Search

Can you help me come up with a regex for an API path?

serviceinfrastr
Explorer

Hi Community,

Sorry this should be easiest for you, but i have many problem with regex ....

i want to keep the first 3 sets of information (bellow in red)

alt text

i have already done this :

" |rex field=uri_path "^/(?\w+)" |

but i have only the first.

Can you help me ?

Tags (2)
0 Karma
1 Solution

jlelli
Path Finder

this should work:

  | rex field=uri_path "^(?<myfield>/\w+/\w+/\w+/)"

View solution in original post

0 Karma

jlelli
Path Finder

this should work:

  | rex field=uri_path "^(?<myfield>/\w+/\w+/\w+/)"
0 Karma

harsmarvania57
Ultra Champion

Hi,

You can use below regular expression to extract those values

<yourBaseSearch> | rex field=uri_path "^(?<extracted_uri>\/\w+\/\w+\/\w+\/?)"
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...