Skip to main content
Version: 3.5.0

How to Send Discord Notifications

Resoto constantly monitors your infrastructure, and can alert you to any detected issues.

One way to receive these alerts is via Discord. In this guide, we will configure Resoto to send alerts to a Discord text channel.

Prerequisites​

This guide assumes that you have already installed and configured Resoto to collect your cloud resources.

You will also need the Manage Webhooks permission for the target text channel in your Discord server.

Directions​

  1. Create a webhook in your Discord server. Be sure to select the channel to which you want Resoto to send alerts.

    tip

    Customize the webhook name and avatar to make it easier to distinguish multiple webhooks for different alerts or services.

  2. Define search criteria that will trigger an alert. For example, let's say we have a test account test-account where instances with more than 4GB of RAM are not permitted:

    > search is(instance) and instance_memory>4 and /ancestors.account.reported.name==test-account
  3. Now that we've defined the alert trigger, we will simply pipe the result of the search query to the discord custom command, replacing the title with your desired alert text and webhook with your Discord webhook URL:

    > search is(instance) and instance_memory>4 and /ancestors.account.reported.name==test-account | discord title="Large instances found in test-account" webhook="https://discord.com/api/webhooks/..."

    If the defined condition is currently true, you should see a new message in the specified Discord text channel:

    Example Discord alert

  4. Finally, we want to automate checking of the defined alert trigger and send alerts to Discord whenever the result is true. We can accomplish this by creating a job:

    > jobs add --id notify_large_test_instances --wait-for-event post_collect 'search is(instance) and instance_memory>4 and /ancestors.account.reported.name==test-account | discord title="Large instances found in test-account" webhook="https://discord.com/api/webhooks/..."'
tip

A default webhook URL can be specified in the discord custom command configuration, so that you can simply execute discord title="...".

Further Reading​

Contact Us

 

 

Â