# 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>
20 lines
559 B
HTML
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>
|