--- Feedback Link: https://github.com/grafana/tutorials/issues/new categories: - alerting description: Get started with Grafana Alerting by creating your first alert in just a few minutes. Learn how to set up an alert, send alert notifications to a public webhook, and generate sample data to observe your alert in action. id: alerting-get-started-pt1 labels: products: - enterprise - oss - cloud tags: - beginner title: Get started with Grafana Alerting - Part 1 weight: 50 killercoda: title: Get started with Grafana Alerting - Part 1 description: Get started with Grafana Alerting by creating your first alert in just a few minutes. Learn how to set up an alert, send alert notifications to a public webhook, and generate sample data to observe your alert in action. backend: imageid: ubuntu --- # Get Started with Grafana Alerting - Part 1 In this guide, we'll walk you through the process of setting up your first alert in just a few minutes. You'll witness your alert in action with real-time data, as well as sending alert notifications. In this tutorial you will: - Create a contact point. - Set up an alert rule. - Receive firing and resolved alert notifications in a public webhook. {{< admonition type="tip" >}} Before you dive in, remember that you can [explore advanced topics like alert instances and notification routing](http://grafana.com/tutorials/alerting-get-started-pt2/) in the second part of this guide. {{< /admonition >}} {{< docs/ignore >}} > Before you dive in, remember that you can [explore advanced topics like alert instances and notification routing](http://grafana.com/tutorials/alerting-get-started-pt2/) in the second part of this guide. {{< /docs/ignore >}} {{< docs/ignore >}} ## Set up the Grafana stack {{< /docs/ignore >}} ## Before you begin There are different ways you can follow along with this tutorial. ### Grafana Cloud As a Grafana Cloud user, you don't have to install anything. [Create your free account](http://grafana.com/auth/sign-up/create-user). Continue to [Create a contact point](#create-a-contact-point). ### Interactive learning environment Alternatively, you can try out this example in our interactive learning environment: [Get started with Grafana Alerting](https://killercoda.com/grafana-labs/course/grafana/alerting-get-started/). It's a fully configured environment with all the dependencies already installed. ### Grafana OSS If you opt to run a Grafana stack locally, ensure you have the following applications installed: - [Docker Compose](https://docs.docker.com/get-docker/) (included in Docker for Desktop for macOS and Windows) - [Git](https://git-scm.com/) #### Set up the Grafana stack (OSS users) To demonstrate the observation of data using the Grafana stack, download and run the following files. 1. Clone the [tutorial environment repository](https://www.github.com/grafana/tutorial-environment). ``` git clone https://github.com/grafana/tutorial-environment.git ``` 1. Change to the directory where you cloned the repository: ``` cd tutorial-environment ``` 1. Run the Grafana stack: ``` docker compose up -d ``` {{< docs/ignore >}} ```bash docker-compose up -d ``` {{< /docs/ignore >}} The first time you run `docker compose up -d`, Docker downloads all the necessary resources for the tutorial. This might take a few minutes, depending on your internet connection. {{< admonition type="note" >}} If you already have Grafana, Loki, or Prometheus running on your system, you might see errors, because the Docker image is trying to use ports that your local installations are already using. If this is the case, stop the services, then run the command again. {{< /admonition >}} {{< docs/ignore >}} NOTE: If you already have Grafana, Loki, or Prometheus running on your system, you might see errors, because the Docker image is trying to use ports that your local installations are already using. If this is the case, stop the services, then run the command again. {{< /docs/ignore >}} ## Create a contact point Besides being an open-source observability tool, Grafana has its own built-in alerting service. This means that you can receive notifications whenever there is an event of interest in your data, and even see these events graphed in your visualizations. In this step, we'll set up a new [contact point](https://grafana.com/docs/grafana/latest/alerting/configure-notifications/manage-contact-points/integrations/webhook-notifier/). This contact point will use the _webhooks_ integration. In order to make this work, we also need an endpoint for our webhook integration to receive the alert. We will use [Webhook.site](https://webhook.site/) to quickly set up that test endpoint. This way we can make sure that our alert is actually sending a notification somewhere. 1. In your browser, **sign in** to your Grafana Cloud account. OSS users: To log in, navigate to [http://localhost:3000](http://localhost:3000), where Grafana is running. 1. In another tab, go to [Webhook.site](https://webhook.site/). 1. Copy Your unique URL. Your webhook endpoint is now waiting for the first request. Next, let's configure a contact point in Grafana's Alerting UI to send notifications to our webhook endpoint. 1. Return to Grafana. In Grafana's sidebar, hover over the **Alerting** (bell) icon and then click **Contact points**. 1. Click **+ Add contact point**. 1. In **Name**, write **Webhook**. 1. In **Integration**, choose **Webhook**. 1. In **URL**, paste the endpoint to your webhook endpoint. 1. Click **Test**, and then click **Send test notification** to send a test alert to your webhook endpoint. 1. Navigate back to [Webhook.site](https://webhook.site/). On the left side, there's now a `POST /` entry. Click it to see what information Grafana sent. {{< figure src="/media/docs/alerting/alerting-webhook-detail.png" max-width="1200px" caption="A POST entry in Webhook.site" >}} 1. Return to Grafana and click **Save contact point**. We have created a dummy Webhook endpoint and created a new Alerting contact point in Grafana. Now, we can create an alert rule and link it to this new integration. ## Create an alert Next, we'll establish an [alert rule](http://grafana.com/docs/grafana/next/alerting/fundamentals/alert-rule-evaluation/) within Grafana Alerting to notify us whenever alert rules are triggered and resolved. 1. In Grafana, **navigate to Alerting** > **Alert rules**. Click on **New alert rule**. 1. Enter alert rule name for your alert rule. Make it short and descriptive as this will appear in your alert notification. For instance, **database-metrics** ### Define query and alert condition In this section, we define queries, expressions (used to manipulate the data), and the condition that must be met for the alert to be triggered. 1. Select the **Prometheus** data source from the drop-down menu. 1. In the Query editor, switch to **Code** mode by clicking the button at the right. 1. Enter the following query: ```promql vector(1) ``` In Prometheus, `vector(1)` is a special type of PromQL query that generates a constant vector. This is useful in testing and query manipulation, where you might need a constant value for calculations or comparisons. This query will allow you to create an alert rule that will be always firing. 1. Remove the ‘B’ **Reduce expression** (click the bin icon). The Reduce expression comes by default, and in this case, it is not needed since the queried data is already reduced. Note that the Threshold expression is now your **Alert condition**. 1. In the ‘C’ **Threshold expression**: - Change the **Input** to **'A'** to select the data source. - Enter `0` as the threshold value. This is the value above which the alert rule should trigger. 1. Click **Preview** to run the queries. It should return a single sample with the value 1 at the current timestamp. And, since `1` is above `0`, the alert condition has been met, and the alert rule state is `Firing`. {{< figure src="/media/docs/alerting/alerting-always-firing-alert.png" max-width="1200px" caption="A preview of a firing alert" >}} ### Set evaluation behavior The [alert rule evaluation](https://grafana.com/docs/grafana/latest/alerting/fundamentals/alert-rules/rule-evaluation/) defines the conditions under which an alert rule triggers, based on the following settings: - **Evaluation group**: every alert rule is assigned to an evaluation group. You can assign the alert rule to an existing evaluation group or create a new one. - **Evaluation interval**: determines how frequently the alert rule is checked. For instance, the evaluation may occur every 10s, 30s, 1m, 10m, etc. - **Pending period**: how long the condition must be met to trigger the alert rule. To set up the evaluation: 1. In **Folder**, click **+ New folder** and enter a name. For example: _metric-alerts_. This folder will contain our alerts. 1. In the **Evaluation group**, repeat the above step to create a new evaluation group. We will name it _1m-evaluation_. 1. Choose an **Evaluation interval** (how often the alert will be evaluated). For example, every `1m` (1 minute). 1. Set the pending period to, `0s` (zero seconds), so the alert rule fires the moment the condition is met. ### Configure labels and notifications Choose the contact point where you want to receive your alert notifications. 1. Under **Contact point**, select **Webhook** from the drop-down menu. 1. Click **Save rule and exit** at the top right corner. ## Trigger and resolve an alert Now that the alert rule has been configured, you should receive alert [notifications](http://grafana.com/docs/grafana/next/alerting/fundamentals/alert-rule-evaluation/state-and-health/#notifications) in the contact point whenever alerts trigger and get resolved. ### Trigger an alert Since the alert rule that you have created has been configured to always fire, once the evaluation interval has concluded, you should receive an alert notification in the Webhook endpoint. {{< figure src="/media/docs/alerting/alerting-webhook-firing-alert.png" max-width="1200px" caption="Firing alert notification details" >}} The alert notification details show that the alert rule state is Firing , and it includes the value that made the rule trigger by exceeding the threshold of the alert rule condition. The notification also includes links to see the alert rule details, and another link to add a [Silence](http://grafana.com/docs/grafana/next/alerting/configure-notifications/create-silence/) to it. ### Resolve an alert To see how a resolved alert notification looks like, you can modify the current alert rule threshold. To edit the Alert rule: 1. **Navigate to Alerting** > **Alert rules**. 1. Click on the metric-alerts folder to display the alert that you created earlier 1. Click the **edit** button on the right hand side of the screen 1. Increment the Threshold expression to 1. 1. Click **Save rule and exit**. By incrementing the threshold, the condition is no longer met, and after the evaluation interval has concluded (1 minute approx.), you should receive an alert notification with status **“Resolved”**. ## Learn more {{< admonition type="tip" >}} Advance your skills by exploring [alert instances and notification routing](http://grafana.com/tutorials/alerting-get-started-pt2/) in Part 2 of your learning journey. {{< /admonition >}} {{< docs/ignore >}} Advance your skills by exploring [alert instances and notification routing](http://grafana.com/tutorials/alerting-get-started-pt2/) in Part 2 of your learning journey. {{< /docs/ignore >}}