All Apps and Add-ons

Field extraction

kaw243
Explorer

Below is an example from an access.log that I am trying to extract the productList from. The number of products numbers change for each request. i.e. some may have 1 product number some may have 5. I need some help in extracting the productList separately.

2013-12-31 12:30:53 0.0010 0 - 204.107.141.40 GET /open-sounthing/compete.html?pagename=myco:getsomething:page7:goodjob&differentinfo=someinfo&productList=4004,4102,4107 200

I would like to be able to pull out the productList and rename them by number to use in pivot
4004= corn
4102= viper
4107= dog

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

This would get you a multivalue field with the three productIds:

... | rex "productList=(?<productId>(\d+,?)+)" | makemv productId delim=","

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

This would get you a multivalue field with the three productIds:

... | rex "productList=(?<productId>(\d+,?)+)" | makemv productId delim=","

somesoni2
Revered Legend

Then you can have lookup file containing productId and productionName and do a lookup to get productName into your result.

...@martin's search | lookup productiondetail.csv productId OUTPUT productName

kaw243
Explorer

Thanks that worked

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Casting Call: Compete in Cyber Games

Lights, Camera, SecOps: Apply to Compete in Cyber Games     Think you have what it takes to beat the clock? ...

Data Management Digest – June 2026

Welcome to the June 2026 edition of Data Management Digest! This month’s update is short and sweet, with a ...

Think Like an Architect: Introducing the Splunk Certified Cybersecurity Defense ...

In cybersecurity, defenders respond to threats. Architects design the systems that stop them.    As ...