Discord alert method
Reading time: 0 minute(s) (0 words)
The Discord alert method sends alerts through Discord to notify Nobl9 users whenever an incident is triggered.
Authentication
To set up the Discord integration, you’ll need to provide a Discord Webhook URL. This allows you to send an automated notification to a channel of your choice. For details, see Discord documentation.
Known limitations
Currently, Nobl9 doesn't return the severity level when a Discord alert is triggered.
Configuring the Discord alert method
You can configure your Discord alert method directly in the Nobl9 Web, or by applying a YAML file in sloctl
.
Nobl9 Web
To set up the alert method in the Nobl9 Web, follow these steps:
- Navigate to Integrations > Alert methods.
- Click
.
- Select Discord.
- Enter the URL.
This is your Discord Webhook URL. For more information, refer to the Authentication section.
- Select a Project.
Project is a way to organize your Nobl9 resources and manage access to them.
When Project is skipped, 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. - You can add Description to your resource, providing extra details about it, its purpose, responsible persons, etc.
Up to 1050 characters. - Click Add Alert Method
YAML configuration
- YAML
- Example
General YAML sample for discord
apiVersion: n9/v1alpha
kind: AlertMethod
metadata:
name: string # Mandatory
displayName: string # Optional
project: default # Mandatory
# Optional
# The key value: only alphanumeric characters, `-`, `_`, or `.` are allowed.
# The key value must start and end with an alphanumeric character.
# An optional DNS subdomain prefix followed by `/` is allowed.
annotations:
key: value
spec:
description: string # Optional
discord:
url: # URL to Discord webhook, must start with https://
Working YAML sample for Discord
apiVersion: n9/v1alpha
kind: AlertMethod
metadata:
name: discord
displayName: Discord Alert Method
project: default
annotations:
area: latency
env: prod
region: us
team: sales
spec:
description: Example Discord Alert Method
discord:
url: https://discord.com/api/webhooks/123/secret
Testing the Discord alert method in the Web
You can test alert methods for all notification services supported by the Nobl9 platform through the UI.To verify the correctness of your alert method configuration:
- Navigate to Integrations > Alert methods.
- Click the required alert method.
Its Details page opens. - Click Test under the alert method name:
- When the configuration is correct, Nobl9 displays Test completed successfully! under the button.
- Otherwise, the Test failed message appears. It contains the details of incorrect settings.
Useful links
For a more in-depth look, consult additional resources: