Splunk Search

extract names from URL using regex

anooshac
Communicator

Hello all,

I haven't used rex many times.

I have a URL like this, http;s://ab-abcd.in.xyz.com/abcd_xyz/job/example_name/" .

Here ab-abcd.in.xyz.com is server name, abcd_xyz is project name and example_name is task name.

I have to extract these using regex. I have tried using this query,

|rex field=URL "https:\//(?<server_name>\w*)/\(?<project_name>\w*)\/job\/(?<task_name>\w*)\/"| table server_name project_name task_name

I know that this query is wrong.But confused on how to correct it.  Can anyone help me to correct this query.

Labels (2)
Tags (3)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

Try this

| rex field=URL "https://(?<server_name>[^/]*)/(?<project_name>[^/]*)/job/(?<task_name>[^/]*)" 

View solution in original post

0 Karma

bowesmana
SplunkTrust
SplunkTrust

Try this

| rex field=URL "https://(?<server_name>[^/]*)/(?<project_name>[^/]*)/job/(?<task_name>[^/]*)" 
0 Karma
Get Updates on the Splunk Community!

Say goodbye to manually analyzing phishing and malware threats with Splunk Attack ...

In today’s evolving threat landscape, we understand you’re constantly bombarded with phishing and malware ...

AppDynamics is now part of Splunk Ideas

Hello Splunkers, We have exciting news for you! AppDynamics has been added to the Splunk Ideas Portal. Which ...

Advanced Splunk Data Management Strategies

Join us on Wednesday, May 14, 2025, at 11 AM PDT / 2 PM EDT for an exclusive Tech Talk that delves into ...