Alertmanager
Alertmanager from Prometheus handles alerts sent by applications like the Prometheus server. Use alerts from Alertmanager to power incidents and notifications in FireHydrant.
Alertmanager and Signals
If you're looking to connect Alertmanager to FireHydrant to create alerts in Signals, checkout the Signals Integration guide for Alertmanager
Configuration steps
- First, you need to authorize the Alertmanager integration on FireHydrant's
integrations page. - You'll see a webhook URL provided once you click Authorize Application.
- Now configure Alertmanager to send alerts to the webhook above. This is done
by creating a new "receiver" in Alertmanager. You will need to add something
similar to the following snippet to your configuration:
"receivers":
- name: firehydrant
webhook_configs:
- url: "<integration-webhook-url>"
"route":
"routes":
- receiver: firehydrant
continue: true
See additional documentation for configuring Alertmanager webhooks.
Using Alert Routes with Alertmanager
Once Alertmanager is configured, you can set up Alert Routes to take action on your alerts based on the data included in the alert. You can automatically open new incidents, send alerts to any Slack channel, log an alert in FireHydrant, or simply ignore it. To learn more, read about Alert Routing.
Updated 9 months ago