Splunk Search

Query email sent success or failed

shanaz
Engager

Please suggest a splunk query to find whether email abc@def.com successfully sent emails or any emails failed between 5-6pm to qbc@xyz.com

Labels (4)
0 Karma
1 Solution

ro_mc
Path Finder

You should adjust the following query based on the index and sourcetype of your email data.

If you don't have extracted fields, you can just list the email addresses on the first line.

sender_field=abc@def.com recipient_field=qbc@xyz.com
earliest="9/20/2021:17:00:00" latest="9/20/2021:18:00:00"
| stats count by sender_field, recipient_field, status

Alternatively, you can schedule an alert to run with a cron schedule of 5 18 * * * with an earliest -65m@m and latest of -5m@m.

The status is the field that advises of success or failure. If this is not present, you can extract it using something like

| rex field=_raw "<text before status>(?<status>[^\s]+)"

This will extract one or more characters after the specified text up until the next space.

View solution in original post

ro_mc
Path Finder

You should adjust the following query based on the index and sourcetype of your email data.

If you don't have extracted fields, you can just list the email addresses on the first line.

sender_field=abc@def.com recipient_field=qbc@xyz.com
earliest="9/20/2021:17:00:00" latest="9/20/2021:18:00:00"
| stats count by sender_field, recipient_field, status

Alternatively, you can schedule an alert to run with a cron schedule of 5 18 * * * with an earliest -65m@m and latest of -5m@m.

The status is the field that advises of success or failure. If this is not present, you can extract it using something like

| rex field=_raw "<text before status>(?<status>[^\s]+)"

This will extract one or more characters after the specified text up until the next space.

richgalloway
SplunkTrust
SplunkTrust

Search splunkd.log for "sendemail" or the specific email address(es).

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...