Does anyone know how to Splunk a listing of all alerts that are sending to a particular email address (e.g. ServiceNow) or get a listing of all alerts by email address they’re being delivered to?
I'm working to analyze our processes and the mechanisms currently being used.
You can use the rest function to search for this information:
| rest splunk_server=local count=0 /services/saved/searches
| search eai:acl.app="*" title="*" action.email.to="*"
| table eai:acl.app,title,action.email.to, next_scheduled_time, search
Just replace any of the asterisks to search for specific apps, saved search names, or the email recipient. You can add "action.email.cc" to include any CC addresses.
You can use the rest function to search for this information:
| rest splunk_server=local count=0 /services/saved/searches
| search eai:acl.app="*" title="*" action.email.to="*"
| table eai:acl.app,title,action.email.to, next_scheduled_time, search
Just replace any of the asterisks to search for specific apps, saved search names, or the email recipient. You can add "action.email.cc" to include any CC addresses.