Splunk Search

What is the best way to remove dots from domain?

bosseres
Contributor

Hello everyone!

What is the best way to remove dots from domain in field?

for example | eval field = lower(mvindex(split(field, "."), 0)) removes just 1 dot, and what if 2+ dots in domain?

Labels (2)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@bosseres 

if you want to just replace the value you can use replace function.

Like

 |eval field = replace(field,"\.","")

 

Can you please try this?

| makeresults | eval _raw = "field
abc.com
1.abc.com
2.1.abc.com
3.2.1.abc.com"| multikv forceheader=1
 |eval field = replace(field,"\.","")

 

if it's still not working, please provide your expected output for below sample data.

abc.com
1.abc.com
2.1.abc.com
3.2.1.abc.com

 

Thanks
KV
If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.

bosseres
Contributor

I mean I want to remove part after dot

(for example google.domain.domain - must become google, google.domain1.domain2.domain3 must become google too, etc)

0 Karma

isoutamo
SplunkTrust
SplunkTrust

You could also use rex with sed mode like

 

....
| rex mode=sed field=<your field> "s/([^\.]+)(\..*)/$1/g"

 

kamlesh_vaghela
SplunkTrust
SplunkTrust

@bosseres 

Your search will work fine as you are selecting the first index after the split.

| eval field = lower(mvindex(split(field, "."), 0))

 

| makeresults | eval _raw = "field
abc.com
google.domain.domain
google.domain1.domain2.domain3
3.2.1.abc.com"| multikv forceheader=1
 | eval field = lower(mvindex(split(field, "."), 0))

 

Screenshot 2022-10-21 at 12.57.21 PM.png

 

🙂  

Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...