Splunk Search

Field extraction

sandeepmakkena
Contributor

I have field in my raw events

src = https://www.abcd.com/shop/buy-laptop/dell-200
src= https://www.abcd.com/shop/buy-mobile/LG-i20

I want to extract files product family and products. family like laptop, mobile and Products values like dell-200, LG-i20

Thanks for your time.

0 Karma
1 Solution

MuS
Legend

Hi sandeepmakkena,

Try something like this:

your search here
| rex field=src "buy-(?<family>[^\/]+)\/(?<product>.+)$"
| more SPL here

This will return a field called family and product with values of laptop or mobile respectively dell-200 or LG-i20 based on your provided sample events.

Hope this helps ...

cheers, MuS

View solution in original post

0 Karma

MuS
Legend

Hi sandeepmakkena,

Try something like this:

your search here
| rex field=src "buy-(?<family>[^\/]+)\/(?<product>.+)$"
| more SPL here

This will return a field called family and product with values of laptop or mobile respectively dell-200 or LG-i20 based on your provided sample events.

Hope this helps ...

cheers, MuS

0 Karma

jacobpevans
Motivator

Greetings @sandeepmakkena,

Please try this run-anywhere search. Pick and choose the values you need.

| makeresults
| eval src = "https://www.abcd.com/shop/buy-laptop/dell-200"
| append 
    [ | makeresults 
      | eval src= "https://www.abcd.com/shop/buy-mobile/LG-i20" ]
| rex field=src "(?<category>[^/]+)/[^/]+$"
| rex field=src "buy-(?<category_no_buy>[^/]+)/[^/]+$"
| rex field=src "(?<item>[^/]+)$"
| table src category_no_buy category item

Output:

src                                        category_no_buy   category      item
https://www.abcd.com/shop/buy-laptop/dell-200    laptop      buy-laptop dell-200
https://www.abcd.com/shop/buy-mobile/LG-i20    mobile        buy-mobile LG-i20
Cheers,
Jacob

If you feel this response answered your question, please do not forget to mark it as such. If it did not, but you do have the answer, feel free to answer your own post and accept that as the answer.
0 Karma
Get Updates on the Splunk Community!

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

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...