Sensu Integration

The ilert Sensu Integration helps you to publish alerts into your channels or resolve alerts.

Sensu is a tool that functions as an observability pipeline which delivers monitoring as code on any cloud.

In ilert: Create a Sensu alert source

  1. Go to Alert sources --> Alert sources and click on Create new alert source

  2. Search for Sensu in the search field, click on the Sensu tile and click on Next.

  3. Give your alert source a name, optionally assign teams and click Next.

  4. Select an escalation policy by creating a new one or assigning an existing one.

  5. Select you Alert grouping preference and click Continue setup. You may click Do not group alerts for now and change it later.

  6. The next page show additional settings such as customer alert templates or notification prioritiy. Click on Finish setup for now.

  7. On the final page, an API key and / or webhook URL will be generated that you will need later in this guide.

In Sensu

  1. Add Sensu ilert Handler

  1. Make sure that the asset was added to your Sensu backend. Run:

  1. In the following command, replace <ilert_key> with your ilert API key.

Then run the updated command:

  1. Make sure that your handler was added by retrieving the complete handler definition in YAML or JSON format:

  1. Trigger an event. You can try it with the file_exists check and an ilert handler workflow in place - remove a file to cause Sensu to send a non-OK event.

You can refer to the next section for more instructions.

Triggering an event

Add system subscription to entity

  1. Find your entity name:

  1. The ID in the response is the name of your entity and replace <entity_name> with the name of your entity in the sensuctl command below. Then run the command to add the system subscription to your entity:

  1. For Entity Class, press enter.

  2. For Subscriptions, type system and press enter.

  3. Confirm both sensu-backend and sensu-agent are running. You can use docker ps if you are running both from docker.

Add the file_exists check

  1. Before you can add the check, you need to add the Nagios Foundation asset to your Sensu configuration:

  1. To confirm that the asset was added to your Sensu backend, run:

  1. The check command includes the path for the file that the check will look for on your system, /tmp/my-file.txt. For this guide, you’ll add /tmp/my-file.txt as a temporary file:

  1. You should see === ncr-devops-platform/nagiosfoundation followed by a list of available builds for the asset. Now that you’ve added the Nagios Foundation dynamic runtime asset, you can add its file_exists check to your Sensu backend. Use sensuctl to add the check:

  1. To confirm that the check was added to your Sensu backend and view the check definition in YAML or JSON format,

Trigger a file_exists check

  1. Remove the file /tmp/my-file.txt:

  1. This will make sure the file is not there for Sensu to find the next time the file_exists check runs. After about 10 seconds, Sensu will detect that my-file.txt is missing and reflect that in an event. To view the event with sensuctl, run:

  1. The response should show that the file removal resulted in a CRITICAL (2) event:

  1. Open the Sensu web UI to see the events the file_exists check is generating. Visit http://127.0.0.1:3000, and log in as the admin user (created during initialization when you installed the Sensu backend). The failing check’s events will be listed on the Events page.

  2. The Alert should be created on the Sensu Alert Source on ilert's side as well

  3. To complete your workflow, restore the file that you removed so Sensu sends a resolution to ilert:

Last updated

Was this helpful?