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!

Enterprise Security Content Update (ESCU) | New Releases

In the last month, the Splunk Threat Research Team (STRT) has had 2 releases of new security content via the ...

Announcing the 1st Round Champion’s Tribute Winners of the Great Resilience Quest

We are happy to announce the 20 lucky questers who are selected to be the first round of Champion's Tribute ...

We’ve Got Education Validation!

Are you feeling it? All the career-boosting benefits of up-skilling with Splunk? It’s not just a feeling, it's ...