Splunk Search

Extract domain part of list of emails addresses.

dhabbal
Explorer

Hi,

My results are a bunch of email address, I want to display them in table grouped by their domains.

What's the best way to achieve this?

Thanks!

Tags (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi dhabbal,
if your emails are in a field called "email", you could run a search like this:

index=my_index
| rex field=email "\@(?<domain>[^ ]*)"
| stats dc(email) AS num_email BY domain

in this way you have the count of different emails in your logs.

If in addition you want also the name of your emails, you could run:

index=my_index
| rex field=email "\@(?<domain>[^ ]*)"
| stats values(email) AS email dc(email) AS num_email BY domain

If at least, you want the number of emails ordered by domain, you could run:

index=my_index
| stats count BY email
| rex field=email "\@(?<domain>[^ ]*)"
| sort domain
| table domain email count

Bye.
Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi dhabbal,
if your emails are in a field called "email", you could run a search like this:

index=my_index
| rex field=email "\@(?<domain>[^ ]*)"
| stats dc(email) AS num_email BY domain

in this way you have the count of different emails in your logs.

If in addition you want also the name of your emails, you could run:

index=my_index
| rex field=email "\@(?<domain>[^ ]*)"
| stats values(email) AS email dc(email) AS num_email BY domain

If at least, you want the number of emails ordered by domain, you could run:

index=my_index
| stats count BY email
| rex field=email "\@(?<domain>[^ ]*)"
| sort domain
| table domain email count

Bye.
Giuseppe

0 Karma

dineshraj9
Builder

Can you post a sample event?

0 Karma
Get Updates on the Splunk Community!

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...