Splunk Enterprise Security

How to filter only one email address domain if you have multiple email address entries

rodrigvi
New Member

How to filter only one email address domain if you have multiple email address entries, example :
I have more than 1000 gmail.com entries. Only I need to filter "gmail.com" domain in splunk , I don't care about other emails. but I don't want to create a filter with 1000 records each for any gmail.com account.

acb@gmail.com
cde@gmail.com
1234@gmail.com
321@yahoo.com
123@yahoo.com
terra@hotmail.com
z@roo@hotmail.com

Thanks for your help

0 Karma

adonio
Ultra Champion

create a new field that matches the domain and search against it ...

form the top of my head:
try this anywhere to see

| makeresults count=1
| eval emails = "acb@gmail.com;;;cde@gmail.com;;;1234@gmail.com;;;321@yahoo.com;;;123@yahoo.com;;;terra@hotmail.com;;;z@roo@hotmail.com"
| makemv delim=";;;" emails
| mvexpand emails
| rex field=emails "\@(?<domain>[^\.]+)"
| search domain=gmail

you might need a better regex for more complex / emails that have the @ in the address itself

0 Karma
Get Updates on the Splunk Community!

Almost Too Eventful Assurance: Part 1

Modern IT and Network teams still struggle with too many alerts and isolating issues before they are notified. ...

Demo Day: Strengthen Your SOC with Splunk Enterprise Security 8.1

Today’s threat landscape is more complex than ever. Security operation centers (SOCs) are overwhelmed with ...

Dashboards: Hiding charts while search is being executed and other uses for tokens

There are a couple of features of SimpleXML / Classic dashboards that can be used to enhance the user ...