Splunk Search

Splunk regex help

pjtbasu
Explorer

Hi Team,

 

I've a field name uri, which has value like this --

/dev/{AccountNumber}/accountDetail

/uat/{ContentID}/content

 

I want to extract one column like, 'uriwithregex' so that I can use it later. The value of uriwithregex will be like 

/dev/*/accountDetail

/uat/*/content

So basically want to replace the string with * (Including the curly brackets)

Could someone please help ?

Labels (1)
0 Karma
1 Solution

renjith_nair
Legend

Try

|makeresults|eval urls="/dev/{AccountNumber}/accountDetail /uat/{ContentID}/content"
|makemv urls| mvexpand urls
|eval uriwithregex=urls
|rex field=uriwithregex mode=sed "s/\{.+\}/*/g"
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

renjith_nair
Legend

Try

|makeresults|eval urls="/dev/{AccountNumber}/accountDetail /uat/{ContentID}/content"
|makemv urls| mvexpand urls
|eval uriwithregex=urls
|rex field=uriwithregex mode=sed "s/\{.+\}/*/g"
---
What goes around comes around. If it helps, hit it with Karma 🙂

pjtbasu
Explorer

Works fine. Thanks for the help

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!

Event Series: Splunk Observability Metrics Cost Optimization

Balancing Scale and Spend: Gaining Control Over High-Volume Metrics in Splunk Observability Cloud As ...

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...