oncall-engine/engine/apps/integrations/templates/html/integration_alertmanager_v2.html
Innokentii Konstantinov f0f2e7c8c6
Draft AlertManager integration v2 (#2167)
# What this PR does
Introduces AlertManagerV2 integration with better grouping and
autoresolving, not intended for production use yet.

---------

Co-authored-by: Ildar Iskhakov <Ildar.iskhakov@grafana.com>
2023-06-13 07:10:38 +00:00

20 lines
559 B
HTML

<h4>How to start sending alerts to Grafana OnCall from AlertManager</h4>
<p><ol>
<li>
1. Add the new receiver to the AlertManager configuration file:
<pre>
receivers:
- name: 'grafana_oncall'
webhook_configs:
- url: {{ alert_receive_channel.integration_url }}
max_alerts: 100
</pre>
2. Use receiver in route tree:
</pre>
routes:
- matchers:
- severity="critical"
receiver: grafana_oncall
</pre>
</li>
</ol></p>