## Configure Notification System ### MS Teams - Default 1. Open *notification.yaml* under your application configuration folder. You will see that all notification systems are via MS Teams by default with an https://empty webhook (not configured). 2. Let's suppose you want to start receiving alerts from Dynatrace via MS Teams just for your *EMEA PROD*. Create an incoming webhook in MS Teams Follow [this](https://www.dynatrace.com/support/help/shortlink/set-up-msteams-integration#configuration-in-microsoft-teams) link 3. Add the incoming webhook to this line: `-PROD.EMEA-Prod:` `- name: CD_ PROD` `- alertingProfile: CD_/alerting-profile/CD-PROD.id` `- webhook: ` `- skipDeployment: "false"` 4. Save and commit changes: `git add ` `git commit -m " configuration changes"` `git push -u origin ` Note: If you want to enable MS Teams for any other hub/stage, follow the same steps but make sure you're under the right configuration: `-.-:` ### Email In the following example, the team intends to use email instead of the default one (MS Teams) for the EMEA PROD notification system. For that, the following changes have to be done: 1. Keep the MS Teams integration disabled, with the https://empty webhook `-PROD.EMEA-Prod:` `- name: CD_ PROD` `- alertingProfile: CD_/alerting-profile/CD-PROD.id` `- webhook: https://empty` `- skipDeployment: "false"` 2. Create a new configuration template under config, using the email template: `config:` `- CDemail: email.json` 3. Describe the configuration below, using the following template: `CDemail.EMEA-Prod:` `- name: CD_ PROD` `- alertingProfile: CD_/alerting-profile/CD-PROD.id` `- receivers: distributionEmailexample@bmw.de` ### ITSM Coming soon!