Alerting

How to customize email alerts for recipients?

damucka
Builder

Hello,

I have the following alert search:

index=mlbso_changelog  (crash_context OR crash_stack OR crash_shortinfo) AND source="*crash*" NOT "Table of contents" | rex field=source "(?<filename>[\w\d\.-]+$)"

The idea is to notify the system responsibles on the crashes happening in the corresponding systems. The search itself goes over the crashdump files of many systems, the only differentiation would be then over the field filename.
Now, I would like to keep it simple and have only one alert for all the systems, but depending on the content of the filename trigger the alert e-mail to the specific recipient group, like for the filename 'A' to the defined e-mail group "Owner A", etc. These are not the same people.

How would I do it?

Kind Regards,
Kamil

0 Karma
1 Solution

DMohn
Motivator

You could include a lookup in your search, which maps the recipient email address according to the filename:

index=mlbso_changelog  (crash_context OR crash_stack OR crash_shortinfo) AND source="*crash*" NOT "Table of contents" | rex field=source "(?<filename>[\w\d\.-]+$)" | lookup email_mapping filename OUTPUT recipient_mail

Then use the variable in your alert by setting the recipient field as $result.recipient_mail$

See https://docs.splunk.com/Documentation/Splunk/latest/Alert/EmailNotificationTokens for further details

View solution in original post

0 Karma

DMohn
Motivator

You could include a lookup in your search, which maps the recipient email address according to the filename:

index=mlbso_changelog  (crash_context OR crash_stack OR crash_shortinfo) AND source="*crash*" NOT "Table of contents" | rex field=source "(?<filename>[\w\d\.-]+$)" | lookup email_mapping filename OUTPUT recipient_mail

Then use the variable in your alert by setting the recipient field as $result.recipient_mail$

See https://docs.splunk.com/Documentation/Splunk/latest/Alert/EmailNotificationTokens for further details

0 Karma

damucka
Builder

Hi @DMohn

Thank you, I implemented your idea and it works perfect.

Kind Regards,
Kamil

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...