<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Grafana Alerting on Grafana Labs</title><link>https://grafana.com/docs/grafana/v11.4/alerting/</link><description>Recent content in Grafana Alerting on Grafana Labs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/docs/grafana/v11.4/alerting/index.xml" rel="self" type="application/rss+xml"/><item><title>Introduction to Alerting</title><link>https://grafana.com/docs/grafana/v11.4/alerting/fundamentals/</link><pubDate>Sun, 08 Mar 2026 02:10:29 +0000</pubDate><guid>https://grafana.com/docs/grafana/v11.4/alerting/fundamentals/</guid><content><![CDATA[&lt;h1 id=&#34;introduction-to-alerting&#34;&gt;Introduction to Alerting&lt;/h1&gt;
&lt;p&gt;Whether you’re just starting out or you&amp;rsquo;re a more experienced user of Grafana Alerting, learn more about the fundamentals and available features that help you create, manage, and respond to alerts; and improve your team’s ability to resolve issues quickly.&lt;/p&gt;


&lt;div class=&#34;admonition admonition-tip&#34;&gt;&lt;blockquote&gt;&lt;p class=&#34;title text-uppercase&#34;&gt;Tip&lt;/p&gt;&lt;p&gt;For a hands-on introduction, refer to our &lt;a href=&#34;/tutorials/alerting-get-started/&#34;&gt;tutorial to get started with Grafana Alerting&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;

&lt;p&gt;The following diagram gives you an overview of Grafana Alerting and introduces you to some of the fundamental features that are the principles of how Grafana Alerting works.&lt;/p&gt;
&lt;br/&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link&#34;
        href=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload &#34;
          data-src=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png&#34;data-srcset=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png?w=320 320w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=550 550w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=750 750w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=900 900w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=1040 1040w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=1240 1240w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;How Grafana Alerting works&#34;width=&#34;713&#34;height=&#34;224&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png&#34;
            alt=&#34;How Grafana Alerting works&#34;width=&#34;713&#34;height=&#34;224&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;h2 id=&#34;how-it-works-at-a-glance&#34;&gt;How it works at a glance&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Grafana Alerting periodically queries data sources and evaluates the condition defined in the alert rule&lt;/li&gt;
&lt;li&gt;If the condition is breached, an alert instance fires&lt;/li&gt;
&lt;li&gt;Firing (and resolved) alert instances are sent for notifications, either directly to a contact point or through notification policies for more flexibility&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;fundamentals&#34;&gt;Fundamentals&lt;/h2&gt;
&lt;p&gt;The following concepts are key to your understanding of how Grafana Alerting works.&lt;/p&gt;
&lt;h3 id=&#34;alert-rules&#34;&gt;Alert rules&lt;/h3&gt;
&lt;p&gt;An 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/alert-rules/&#34;&gt;alert rule&lt;/a&gt; consists of one or more queries and expressions that select the data you want to measure. It also contains a condition, which is the threshold that an alert rule must meet or exceed to fire.&lt;/p&gt;
&lt;p&gt;In the alert rule, choose the contact point or notification policies to determine how to receive the alert notifications.&lt;/p&gt;
&lt;h3 id=&#34;alert-instances&#34;&gt;Alert instances&lt;/h3&gt;
&lt;p&gt;Each alert rule can produce multiple alert instances (also known as alerts) - one alert instance for each time series. This is exceptionally powerful as it allows you to observe multiple series in a single expression.&lt;/p&gt;

&lt;div class=&#34;code-snippet &#34;&gt;&lt;div class=&#34;lang-toolbar&#34;&gt;
    &lt;span class=&#34;lang-toolbar__item lang-toolbar__item-active&#34;&gt;promql&lt;/span&gt;
    &lt;span class=&#34;code-clipboard&#34;&gt;
      &lt;button x-data=&#34;app_code_snippet()&#34; x-init=&#34;init()&#34; @click=&#34;copy()&#34;&gt;
        &lt;img class=&#34;code-clipboard__icon&#34; src=&#34;/media/images/icons/icon-copy-small-2.svg&#34; alt=&#34;Copy code to clipboard&#34; width=&#34;14&#34; height=&#34;13&#34;&gt;
        &lt;span&gt;Copy&lt;/span&gt;
      &lt;/button&gt;
    &lt;/span&gt;
    &lt;div class=&#34;lang-toolbar__border&#34;&gt;&lt;/div&gt;
  &lt;/div&gt;&lt;div class=&#34;code-snippet &#34;&gt;
    &lt;pre data-expanded=&#34;false&#34;&gt;&lt;code class=&#34;language-promql&#34;&gt;sum by(cpu) (
  rate(node_cpu_seconds_total{mode!=&amp;#34;idle&amp;#34;}[1m])
)&lt;/code&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;A rule using the PromQL expression above creates as many alert instances as the amount of CPUs after the first evaluation, enabling a single rule to report the status of each CPU.&lt;/p&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 2294px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link captioned&#34;
        href=&#34;/static/img/docs/alerting/unified/multi-dimensional-alert.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload mb-0&#34;
          data-src=&#34;/static/img/docs/alerting/unified/multi-dimensional-alert.png&#34;data-srcset=&#34;/static/img/docs/alerting/unified/multi-dimensional-alert.png?w=320 320w, /static/img/docs/alerting/unified/multi-dimensional-alert.png?w=550 550w, /static/img/docs/alerting/unified/multi-dimensional-alert.png?w=750 750w, /static/img/docs/alerting/unified/multi-dimensional-alert.png?w=900 900w, /static/img/docs/alerting/unified/multi-dimensional-alert.png?w=1040 1040w, /static/img/docs/alerting/unified/multi-dimensional-alert.png?w=1240 1240w, /static/img/docs/alerting/unified/multi-dimensional-alert.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;Multiple alert instances from a single alert rule&#34;width=&#34;2294&#34;height=&#34;442&#34;title=&#34;Multiple alert instances from a single alert rule&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/static/img/docs/alerting/unified/multi-dimensional-alert.png&#34;
            alt=&#34;Multiple alert instances from a single alert rule&#34;width=&#34;2294&#34;height=&#34;442&#34;title=&#34;Multiple alert instances from a single alert rule&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;figcaption class=&#34;w-100p caption text-gray-13  &#34;&gt;Multiple alert instances from a single alert rule&lt;/figcaption&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;p&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/alert-rules/rule-evaluation/&#34;&gt;Alert rules are frequently evaluated&lt;/a&gt; and the state of their alert instances is updated accordingly. Only alert instances that are in a firing or resolved state are sent in notifications.&lt;/p&gt;
&lt;h3 id=&#34;contact-points&#34;&gt;Contact points&lt;/h3&gt;
&lt;p&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/notifications/contact-points/&#34;&gt;Contact points&lt;/a&gt; determine the notification message and where notifications are sent. For example, you might have a contact point that sends notifications to an email address, to Slack, to an incident management system (IRM) such as Grafana OnCall or Pagerduty, or to a webhook.&lt;/p&gt;
&lt;h3 id=&#34;notification-messages&#34;&gt;Notification messages&lt;/h3&gt;
&lt;p&gt;By default, notification messages include alert details, such as the number of alerts, their status, and annotations to help responders address alert issues. Notification messages can also be customized.&lt;/p&gt;
&lt;p&gt;In the alert rule, you can choose a contact point to receive the alert notifications or use notification policies instead.&lt;/p&gt;
&lt;h3 id=&#34;notification-policies&#34;&gt;Notification policies&lt;/h3&gt;
&lt;p&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/notifications/notification-policies/&#34;&gt;Notification policies&lt;/a&gt; is an advanced option to handle alert notifications for larger systems.&lt;/p&gt;
&lt;p&gt;Notification policies routes alerts to contact points via label matching. Each notification policy consists of a set of label matchers (0 or more) that specify which alert instances (identified by their labels) they handle. Notification policies are defined in a tree structure, where the root of the notification policy tree is the &lt;strong&gt;Default notification policy&lt;/strong&gt;, which ensures all alert instances are handled.&lt;/p&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link captioned&#34;
        href=&#34;/media/docs/alerting/notification-routing.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload mb-0&#34;
          data-src=&#34;/media/docs/alerting/notification-routing.png&#34;data-srcset=&#34;/media/docs/alerting/notification-routing.png?w=320 320w, /media/docs/alerting/notification-routing.png?w=550 550w, /media/docs/alerting/notification-routing.png?w=750 750w, /media/docs/alerting/notification-routing.png?w=900 900w, /media/docs/alerting/notification-routing.png?w=1040 1040w, /media/docs/alerting/notification-routing.png?w=1240 1240w, /media/docs/alerting/notification-routing.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;A diagram displaying how the notification policy tree routes alerts&#34;width=&#34;1598&#34;height=&#34;968&#34;title=&#34;Routing firing alert instances through notification policies&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/notification-routing.png&#34;
            alt=&#34;A diagram displaying how the notification policy tree routes alerts&#34;width=&#34;1598&#34;height=&#34;968&#34;title=&#34;Routing firing alert instances through notification policies&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;figcaption class=&#34;w-100p caption text-gray-13  &#34;&gt;Routing firing alert instances through notification policies&lt;/figcaption&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;br/&gt;
&lt;p&gt;Each notification policy decides where to send the alert (contact point) and when to send the notification (timing options). Additionally, it can 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/notifications/group-alert-notifications/&#34;&gt;group multiple firing alert instances into a single notification&lt;/a&gt; to reduce alert noise.&lt;/p&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link&#34;
        href=&#34;/media/docs/alerting/alerting-notification-policy-diagram-v5.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload &#34;
          data-src=&#34;/media/docs/alerting/alerting-notification-policy-diagram-v5.png&#34;data-srcset=&#34;/media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=320 320w, /media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=550 550w, /media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=750 750w, /media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=900 900w, /media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=1040 1040w, /media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=1240 1240w, /media/docs/alerting/alerting-notification-policy-diagram-v5.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;A diagram of the notification policy component&#34;width=&#34;1724&#34;height=&#34;464&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/alerting-notification-policy-diagram-v5.png&#34;
            alt=&#34;A diagram of the notification policy component&#34;width=&#34;1724&#34;height=&#34;464&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;h3 id=&#34;silences-and-mute-timings&#34;&gt;Silences and mute timings&lt;/h3&gt;
&lt;p&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/create-silence/&#34;&gt;Silences&lt;/a&gt; and 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/mute-timings/&#34;&gt;mute timings&lt;/a&gt; allow you to pause notifications for specific alerts or even entire notification policies. Use a silence to pause notifications on an ad-hoc basis, such as during a maintenance window; and use mute timings to pause notifications at regular intervals, such as evenings and weekends.&lt;/p&gt;
&lt;h3 id=&#34;architecture&#34;&gt;Architecture&lt;/h3&gt;
&lt;p&gt;Grafana Alerting is built on the Prometheus model of designing alerting systems. Prometheus-based alerting systems have two main components:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;An alert generator that 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/alert-rules/rule-evaluation/&#34;&gt;evaluates alert rules&lt;/a&gt; and sends firing and resolved alerts to the alert receiver.&lt;/li&gt;
&lt;li&gt;An alert receiver (also known as Alertmanager) that receives the alerts and is responsible for sending their 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/notifications/&#34;&gt;notifications&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;design-your-alerting-system&#34;&gt;Design your Alerting system&lt;/h2&gt;
&lt;p&gt;Monitoring complex IT systems and understanding whether everything is up and running correctly is a difficult task. Setting up an effective alert management system is therefore essential to inform you when things are going wrong before they start to impact your business outcomes.&lt;/p&gt;
&lt;p&gt;Designing and configuring an alert management set up that works takes time.&lt;/p&gt;
&lt;p&gt;Here are some tips on how to create an effective alert management set up for your business:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Which are the key metrics for your business that you want to monitor and alert on?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Find events that are important to know about and not so trivial or frequent that recipients ignore them.&lt;/li&gt;
&lt;li&gt;Alerts should only be created for big events that require immediate attention or intervention.&lt;/li&gt;
&lt;li&gt;Consider quality over quantity.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;How do you want to organize your alerts and notifications?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Be selective about who you set to receive alerts. Consider sending them to the right teams, whoever is on call, and the specific channels.&lt;/li&gt;
&lt;li&gt;Think carefully about priority and severity levels.&lt;/li&gt;
&lt;li&gt;Automate as far as possible provisioning Alerting resources with the API or Terraform.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Which information should you include in notifications?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Consider who the alert receivers and responders are.&lt;/li&gt;
&lt;li&gt;Share information that helps responders identify and address potential issues.&lt;/li&gt;
&lt;li&gt;Link alerts to dashboards to guide responders on which data to investigate.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;How can you reduce alert fatigue?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Avoid noisy, unnecessary alerts by using silences, mute timings, or pausing alert rule evaluation.&lt;/li&gt;
&lt;li&gt;Continually tune your alert rules to review effectiveness. Remove alert rules to avoid duplication or ineffective alerts.&lt;/li&gt;
&lt;li&gt;Continually review your thresholds and evaluation rules.&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="introduction-to-alerting">Introduction to Alerting&lt;/h1>
&lt;p>Whether you’re just starting out or you&amp;rsquo;re a more experienced user of Grafana Alerting, learn more about the fundamentals and available features that help you create, manage, and respond to alerts; and improve your team’s ability to resolve issues quickly.&lt;/p></description></item><item><title>Configure alert rules</title><link>https://grafana.com/docs/grafana/v11.4/alerting/alerting-rules/</link><pubDate>Sun, 08 Mar 2026 02:10:29 +0000</pubDate><guid>https://grafana.com/docs/grafana/v11.4/alerting/alerting-rules/</guid><content><![CDATA[&lt;h1 id=&#34;configure-alert-rules&#34;&gt;Configure alert rules&lt;/h1&gt;
&lt;p&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/alert-rules/&#34;&gt;Alert rules&lt;/a&gt; are the central component of your alerting system.&lt;/p&gt;
&lt;p&gt;An alert rule consists of one or more queries and expressions that select the data you want to measure. It contains a condition to trigger the alert, an evaluation period that determines how often the rule is evaluated, and additional options to manage alert events and their notifications.&lt;/p&gt;
&lt;p&gt;Grafana supports two types of alert rules:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Grafana-managed alert rules: These can query multiple data sources.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Data source-managed alert rules: These can only query Prometheus-based data sources and support horizontal scaling.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;We recommend using Grafana-managed alert rules whenever possible, and opting for data source-managed alert rules when horizontal scaling is required. Refer to the 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/alert-rules/#comparison-between-alert-rule-types&#34;&gt;comparison table of alert rule types&lt;/a&gt; for a more detailed overview.&lt;/p&gt;
&lt;p&gt;Both types of alert rules can be configured in Grafana using the &lt;strong&gt;&#43; New alert rule&lt;/strong&gt; flow. For step-by-step instructions, refer to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/alerting-rules/create-grafana-managed-rule/&#34;&gt;Configure Grafana-managed alert rules&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/alerting-rules/create-data-source-managed-rule/&#34;&gt;Configure data source-managed alert rules&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/templates/&#34;&gt;Create and link alert rules to panels&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Alert rules can also query metrics generated by recording rules. To learn more, refer to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/alerting-rules/create-recording-rules/&#34;&gt;Create recording rules&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
]]></content><description>&lt;h1 id="configure-alert-rules">Configure alert rules&lt;/h1>
&lt;p>
&lt;a href="/docs/grafana/v11.4/alerting/fundamentals/alert-rules/">Alert rules&lt;/a> are the central component of your alerting system.&lt;/p>
&lt;p>An alert rule consists of one or more queries and expressions that select the data you want to measure. It contains a condition to trigger the alert, an evaluation period that determines how often the rule is evaluated, and additional options to manage alert events and their notifications.&lt;/p></description></item><item><title>Configure notifications</title><link>https://grafana.com/docs/grafana/v11.4/alerting/configure-notifications/</link><pubDate>Sun, 08 Mar 2026 02:10:29 +0000</pubDate><guid>https://grafana.com/docs/grafana/v11.4/alerting/configure-notifications/</guid><content><![CDATA[&lt;h1 id=&#34;configure-notifications&#34;&gt;Configure notifications&lt;/h1&gt;
&lt;p&gt;Configuring how, when, and where to send alert notifications is an essential part of your alerting system.&lt;/p&gt;
&lt;p&gt;By default, Grafana Alerting provides default notification messages with relevant alert information, so you don&amp;rsquo;t need to configure messages initially. In the alert rule, you need to configure how to forward alerts:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Directly to a contact point.&lt;/li&gt;
&lt;li&gt;To a contact point via notification policies (more flexible).&lt;/li&gt;
&lt;/ol&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link&#34;
        href=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload &#34;
          data-src=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png&#34;data-srcset=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png?w=320 320w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=550 550w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=750 750w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=900 900w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=1040 1040w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=1240 1240w, /media/docs/alerting/alerting-configure-notifications-v2.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;In the alert rule, you can configure alert forwarding directly to a contact point or through notification policies&#34;width=&#34;713&#34;height=&#34;224&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/alerting-configure-notifications-v2.png&#34;
            alt=&#34;In the alert rule, you can configure alert forwarding directly to a contact point or through notification policies&#34;width=&#34;713&#34;height=&#34;224&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;p&gt;Notification setup is essential for an effective alerting system to scale across multiple teams and services. For a quick overview about the various components involved in handling notifications, refer to the 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/fundamentals/notifications/&#34;&gt;introduction about notifications&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The topics in this section include step-by-step instructions for:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/manage-contact-points/&#34;&gt;Configuring contact points&lt;/a&gt; to specify where to receive alert notifications.&lt;/li&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/create-notification-policy/&#34;&gt;Configuring notification policies&lt;/a&gt; to determine how alerts are routed to contact points.&lt;/li&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/template-notifications/&#34;&gt;Templating notifications&lt;/a&gt; to customize notification messages.&lt;/li&gt;
&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/create-silence/&#34;&gt;Configuring silences&lt;/a&gt; or 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/mute-timings/&#34;&gt;mute timings&lt;/a&gt; to stop notifications.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;alertmanager-architecture&#34;&gt;Alertmanager architecture&lt;/h2&gt;
&lt;p&gt;Grafana Alerting is based on the Prometheus Alerting model, whose architecture decouples rule evaluation from notification handling.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The alert rule evaluator, either Grafana or the data source, evaluates alert rules and triggers alerts.&lt;/li&gt;
&lt;li&gt;The alert notification manager, known as the &lt;strong&gt;Alertmanager&lt;/strong&gt;, receives alerts and manages their notifications.&lt;/li&gt;
&lt;/ul&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link&#34;
        href=&#34;/media/docs/alerting/alerting-alertmanager-architecture.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload &#34;
          data-src=&#34;/media/docs/alerting/alerting-alertmanager-architecture.png&#34;data-srcset=&#34;/media/docs/alerting/alerting-alertmanager-architecture.png?w=320 320w, /media/docs/alerting/alerting-alertmanager-architecture.png?w=550 550w, /media/docs/alerting/alerting-alertmanager-architecture.png?w=750 750w, /media/docs/alerting/alerting-alertmanager-architecture.png?w=900 900w, /media/docs/alerting/alerting-alertmanager-architecture.png?w=1040 1040w, /media/docs/alerting/alerting-alertmanager-architecture.png?w=1240 1240w, /media/docs/alerting/alerting-alertmanager-architecture.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;A diagram with the alert generator and alert manager architecture&#34;width=&#34;669&#34;height=&#34;240&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/alerting-alertmanager-architecture.png&#34;
            alt=&#34;A diagram with the alert generator and alert manager architecture&#34;width=&#34;669&#34;height=&#34;240&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;p&gt;In Grafana, you can use different types of alert rules and configure multiple Alertmanagers.&lt;/p&gt;
&lt;p&gt;By default, Grafana uses its built-in Alertmanager, and Grafana Cloud instances include an additional Alertmanager.&lt;/p&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link&#34;
        href=&#34;/media/docs/alerting/alerting-choose-alertmanager.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload &#34;
          data-src=&#34;/media/docs/alerting/alerting-choose-alertmanager.png&#34;data-srcset=&#34;/media/docs/alerting/alerting-choose-alertmanager.png?w=320 320w, /media/docs/alerting/alerting-choose-alertmanager.png?w=550 550w, /media/docs/alerting/alerting-choose-alertmanager.png?w=750 750w, /media/docs/alerting/alerting-choose-alertmanager.png?w=900 900w, /media/docs/alerting/alerting-choose-alertmanager.png?w=1040 1040w, /media/docs/alerting/alerting-choose-alertmanager.png?w=1240 1240w, /media/docs/alerting/alerting-choose-alertmanager.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;A screenshot choosing an Alertmanager in the notification policies UI&#34;width=&#34;950&#34;height=&#34;117&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/alerting-choose-alertmanager.png&#34;
            alt=&#34;A screenshot choosing an Alertmanager in the notification policies UI&#34;width=&#34;950&#34;height=&#34;117&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;p&gt;When having multiple Alertmanagers, note that each Alertmanager manages its own independent notification resources, such as contact points, templates, policies, silences, mute timings, and active notifications.&lt;/p&gt;
&lt;p&gt;These notification resources cannot be shared across different Alertmanagers.&lt;/p&gt;
&lt;p&gt;Use the &lt;strong&gt;Choose Alertmanager&lt;/strong&gt; dropdown to select the Alertmanager you want to configure.&lt;/p&gt;
]]></content><description>&lt;h1 id="configure-notifications">Configure notifications&lt;/h1>
&lt;p>Configuring how, when, and where to send alert notifications is an essential part of your alerting system.&lt;/p>
&lt;p>By default, Grafana Alerting provides default notification messages with relevant alert information, so you don&amp;rsquo;t need to configure messages initially. In the alert rule, you need to configure how to forward alerts:&lt;/p></description></item><item><title>Monitor alerts</title><link>https://grafana.com/docs/grafana/v11.4/alerting/monitor-status/</link><pubDate>Sun, 08 Mar 2026 02:10:29 +0000</pubDate><guid>https://grafana.com/docs/grafana/v11.4/alerting/monitor-status/</guid><content><![CDATA[&lt;h1 id=&#34;monitor-alerts&#34;&gt;Monitor alerts&lt;/h1&gt;
&lt;p&gt;Alerts and alert notifications should provide key information to help alert responders and incident participants understand what happened in their system and how to respond.&lt;/p&gt;
&lt;p&gt;Grafana Alerting offers the ability to monitor your alerts and manage your alerting setup. You can get an overview of your alerts, track the history of alert states, and monitor notification statuses. These can help you start investigating alert issues within Grafana and improve the reliability of your alerting implementation.&lt;/p&gt;
&lt;figure
    class=&#34;figure-wrapper figure-wrapper__lightbox w-100p &#34;
    style=&#34;max-width: 750px;&#34;
    itemprop=&#34;associatedMedia&#34;
    itemscope=&#34;&#34;
    itemtype=&#34;http://schema.org/ImageObject&#34;
  &gt;&lt;a
        class=&#34;lightbox-link&#34;
        href=&#34;/media/docs/alerting/alert-history-page.png&#34;
        itemprop=&#34;contentUrl&#34;
      &gt;&lt;div class=&#34;img-wrapper w-100p h-auto&#34;&gt;&lt;img
          class=&#34;lazyload &#34;
          data-src=&#34;/media/docs/alerting/alert-history-page.png&#34;data-srcset=&#34;/media/docs/alerting/alert-history-page.png?w=320 320w, /media/docs/alerting/alert-history-page.png?w=550 550w, /media/docs/alerting/alert-history-page.png?w=750 750w, /media/docs/alerting/alert-history-page.png?w=900 900w, /media/docs/alerting/alert-history-page.png?w=1040 1040w, /media/docs/alerting/alert-history-page.png?w=1240 1240w, /media/docs/alerting/alert-history-page.png?w=1920 1920w&#34;data-sizes=&#34;auto&#34;alt=&#34;History page in Grafana Alerting&#34;width=&#34;1999&#34;height=&#34;1339&#34;/&gt;
        &lt;noscript&gt;
          &lt;img
            src=&#34;/media/docs/alerting/alert-history-page.png&#34;
            alt=&#34;History page in Grafana Alerting&#34;width=&#34;1999&#34;height=&#34;1339&#34;/&gt;
        &lt;/noscript&gt;&lt;/div&gt;&lt;/a&gt;&lt;/figure&gt;
&lt;p&gt;The previous sections explain how to 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/alerting-rules/&#34;&gt;configure alert rules&lt;/a&gt; and 
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/configure-notifications/&#34;&gt;configure notifications&lt;/a&gt; to generate alerts and send their notifications.&lt;/p&gt;
&lt;p&gt;This section focuses on finding and understanding the state of your alert rules, alert instances, and their notifications. For more details, refer to:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/monitor-status/view-alert-rules/&#34;&gt;View alert rules&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/monitor-status/view-alert-state/&#34;&gt;View alert state&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/monitor-status/view-alert-state-history/&#34;&gt;View alert state history&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/monitor-status/view-active-notifications/&#34;&gt;View active notifications&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/monitor-status/declare-incident-from-alert/&#34;&gt;Declare incidents from firing alerts&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
]]></content><description>&lt;h1 id="monitor-alerts">Monitor alerts&lt;/h1>
&lt;p>Alerts and alert notifications should provide key information to help alert responders and incident participants understand what happened in their system and how to respond.&lt;/p></description></item><item><title>Additional configuration</title><link>https://grafana.com/docs/grafana/v11.4/alerting/set-up/</link><pubDate>Sun, 08 Mar 2026 02:10:29 +0000</pubDate><guid>https://grafana.com/docs/grafana/v11.4/alerting/set-up/</guid><content><![CDATA[&lt;h1 id=&#34;additional-configuration&#34;&gt;Additional configuration&lt;/h1&gt;
&lt;p&gt;Grafana Alerting offers a variety of advanced configuration options to further tailor your alerting setup. These optional features include configuring up permissions and role-based access control, adding external Alertmanagers, or defining your alerting setup as code. While not essential for basic alerting, these options can enhance security, scalability, and automation in complex environments.&lt;/p&gt;
&lt;p&gt;The following topics provide you with advanced configuration options for Grafana Alerting.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/configure-roles/&#34;&gt;Configure roles and permissions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/configure-rbac/&#34;&gt;Configure RBAC&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/configure-alertmanager/&#34;&gt;Configure Alertmanagers&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/configure-alert-state-history/&#34;&gt;Configure alert state history&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/provision-alerting-resources/&#34;&gt;Provision Alerting resources&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/configure-high-availability/&#34;&gt;Configure high availability&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/meta-monitoring/&#34;&gt;Meta monitoring&lt;/a&gt;&lt;/li&gt;&lt;li&gt;
    &lt;a href=&#34;/docs/grafana/v11.4/alerting/set-up/performance-limitations/&#34;&gt;Performance considerations and limitations&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
]]></content><description>&lt;h1 id="additional-configuration">Additional configuration&lt;/h1>
&lt;p>Grafana Alerting offers a variety of advanced configuration options to further tailor your alerting setup. These optional features include configuring up permissions and role-based access control, adding external Alertmanagers, or defining your alerting setup as code. While not essential for basic alerting, these options can enhance security, scalability, and automation in complex environments.&lt;/p></description></item></channel></rss>