Splunk Search

Get domain name from urls

Sagarvadlamani
Engager

Hello,

I'm trying get the domain name alone from any given urls. Please see the list of url formats i'm dealing with and how i want the result to be. 

 

https://www.example.com:9090
https://abc.example-url.uk/username/test
https://test-url.web-url.ch/test
https://hello.example.co?test
https://test.example.com,

 

Expected output for the URL field as follows

 

www.example.com
abc.example-url.uk
test-url.web-url.ch
hello.example.co
test.example.com

 

 I tried the following rex 

 

rex "Value1=https://(?P<URL>([\w]+\.[\w]+\.[\w]+))"

 

The above won't pull anything like abc.example-url.uk or test-url.web-url.ch. Looks like i'm missing something here. Can anyone please help. 

Labels (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi @Sagarvadlamani ,

try this regex:

https:\/\/(?<domain>[^:\/\?,]*)

that you can test at https://regex101.com/r/7XmpL4/1

Ciao.

Giuseppe 

View solution in original post

to4kawa
Ultra Champion
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Sagarvadlamani ,

try this regex:

https:\/\/(?<domain>[^:\/\?,]*)

that you can test at https://regex101.com/r/7XmpL4/1

Ciao.

Giuseppe 

Sagarvadlamani
Engager

Thank you @gcusello . It worked. 

0 Karma
Get Updates on the Splunk Community!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...