MS Teams
The MS Teams alert method sends alerts through MS Teams to notify Nobl9 users whenever an incident is triggered.
Authenticationβ
Webhook URL β
According to Microsoft's announcement, all MS Teams connectors will be deprecated by the end of 2024.
Existing MS Teams alerts configured with the old webhook URLs will remain functional until Microsoft officially deprecates them.
You can continue using the deprecated webhook URL to set up new alerts in MS Teams until August 15. After this date, we recommend switching to using the Workflow URL.
If you're currently using the deprecated webhook URLs, we recommend configuring both URL types for a while. This approach will help ensure a smooth transition and avoid any disruption in your alerts.
MS Teams Webhook URLs
To set up the MS Teams integration, youβll need to provide an MS Teams Webhook URL. This allows you to send an automated notification to a channel of your choice. For details, see MS Teams documentation.
MS Teams Workflow URL β
To set up the MS Teams integration, youβll need to provide an MS Teams Workflow URL.
Follow the steps below to create the Workflow URL:
-
In Microsoft Teams, click on Workflows from the sidebar.
-
Choose the template βPost to a channel when a webhook request is received.β
-
Enter a name for your flow in the Flow name field.
-
Specify Team and Channel:
- Select the team and channel where notifications will be sent.
-
Click Create Flow to finalize the setup. Once the workflow is created, you can copy the webhook URL provided.
-
If you encounter issues, verify that your configuration matches the screenshot below.
Configuring the MS Teams alert methodβ
You can configure your MS Teams alert method directly in the Nobl9 UI, or by applying a YAML file in sloctl
.
Nobl9 UIβ
To set up the alert method in the Nobl9 UI, follow these steps:
- Navigate to Integrations > Alert Methods.
- Click .
- Click the relevant Alert Method icon.
Then, in the MS Teams Configuration Wizard:
- Enter the URL.
This is your MS Teams Workflows URL. For more information, refer to the Authentication section.
- Select a Project.
Specifying a project is helpful when multiple users are spread across multiple teams or projects. When the Project field is left blank, Nobl9 uses thedefault
project. - Enter a Display Name.
You can enter a user-friendly name with spaces in this field. - Enter a Name.
The name is mandatory and can only contain lowercase, alphanumeric characters, and dashes (for example,my-alert-method-1
). Nobl9 duplicates the display name here, transforming it into the supported format, but you can edit the result. - Enter a Description.
Here you can add details such as who is responsible for the integration (team/owner) and the purpose of creating it. - Click Add Alert Method
YAML configuration for MS Teams alertsβ
- YAML
- Example
apiVersion: n9/v1alpha
kind: AlertMethod
metadata:
name: string # Mandatory
displayName: string # Mandatory
project: string # Mandatory
spec:
description: string # Mandatory
msteams:
url: string # Mandatory, requires https://, secret field
apiVersion: n9/v1alpha
kind: AlertMethod
metadata:
name: teams-notification
displayName: MSTeams notification
project: default
spec:
description: Send message to MS Teams channel
msteams:
url: <https://server-name.region.logic.azure.com:443/workflows/12345/triggers/manual/paths/invoke?api-version=2016-06-01&sp=12345>
The only field that is specific to MS Teams is url
. This field is kept secret and will be replaced with the [hidden]
string when returned from sloctl
. The https://
prefix is required.
Testing the MS Teams alert method in the UIβ
- Navigate to Integrations > Alert Methods.
- Click the required alert method.
Its Details page opens. - Click Test under the alert method name:
- For the correct configuration, Nobl9 displays Test completed successfully! under the button
- Otherwise, Nobl9 displays the Test failed message, specifying what is set incorrectly