Play with Mimir

Introduction

Grafana Mimir is a distributed, horizontally scalable, and highly available long term storage for Prometheus.

In this tutorial, you’ll:

  • Run Grafana Mimir locally with Docker Compose
  • Run Prometheus to scrape some metrics and remote write to Grafana Mimir
  • Run Grafana to explore Grafana Mimir dashboards
  • Configure a testing recording rule and alert in Grafana Mimir

Prerequisites

Download tutorial configuration

  1. Create a copy of the Grafana Mimir repository using the Git command line:
    bash
    git clone https://github.com/grafana/mimir.git
    cd mimir
  2. Navigate to the tutorial directory:
    bash
    cd docs/sources/mimir/get-started/play-with-grafana-mimir/

Note: the instructions in this tutorial assume that your working directory is docs/sources/mimir/get-started/play-with-grafana-mimir/.

Start Grafana Mimir and dependencies

Start running your local setup with the following Docker command:

bash
docker-compose up -d

This command starts:

  • Grafana Mimir
    • Three instances of monolithic-mode Mimir to provide high availability
    • Multi-tenancy enabled (tenant ID is demo)
  • Minio
    • S3-compatible persistent storage for blocks, rules, and alerts
  • Prometheus
    • Scrapes Grafana Mimir metrics, then writes them back to Grafana Mimir to ensure availability of ingested metrics
  • Grafana
    • Includes a preinstalled datasource to query Grafana Mimir
    • Includes preinstalled dashboards for monitoring Grafana Mimir
  • Load balancer
    • A simple NGINX-based load balancer that exposes Grafana Mimir endpoints on the host

The diagram below illustrates the relationship between these components: Architecture diagram for this Grafana Mimir tutorial

The following ports will be exposed on the host:

To learn more about the Grafana Mimir configuration, you can review the configuration file config/mimir.yaml.

Explore Grafana Mimir dashboards

Open Grafana on your local host http://localhost:9000 and view dashboards showing the status and health of your Grafana Mimir cluster. The dashboards query Grafana Mimir for the metrics they display.

To start, we recommend looking at these dashboards:

A couple of caveats:

  • It typically takes a few minutes after Grafana Mimir starts to display meaningful metrics in the dashboards.
  • Because this tutorial runs Grafana Mimir without any query-scheduler, or memcached, the related panels are expected to be empty.

The dashboards installed in the Grafana are taken from the Grafana Mimir mixin which packages up Grafana Labs’ best practice dashboards, recording rules, and alerts for monitoring Grafana Mimir. To learn more about the mixin, check out the Grafana Mimir mixin documentation. To learn more about how Grafana is connecting to Grafana Mimir, review the Mimir datasource.

Configure your first recording rule

Recording rules allow you to precompute frequently needed or computationally expensive expressions and save their result as a new set of time series. In this section you’re going to configure a recording rule in Grafana Mimir using tooling offered by Grafana.

  1. Open Grafana Alerting.
  2. Click “New alert rule”, which also allows you to configure recording rules.
  3. Configure the recording rule:
    1. Select Mimir or Loki recording rule in the top selector.
    2. Choose Mimir in the “Select data source” field.
    3. Type sum(up) in the “Metrics browser” query field.
    4. Type sum:up in the “Rule name” field.
    5. Type example-namespace in the “Namespace” field.
    6. Type example-group in the “Group” field.
    7. From the upper-right corner, click the Save and exit button.

Your sum:up recording rule will show the number of Mimir instances that are up, meaning reachable to be scraped. The rule is now being created in Grafana Mimir ruler and will be soon available for querying:

  1. Open Grafana Explore and query the resulting series from the recording rule, which may require up to one minute to display after configuration:
    sum:up
  2. Confirm the query returns a value of 3 which is the number of Mimir instances currently running in your local setup.

Configure your first alert rule

Alerting rules allow you to define alert conditions based on PromQL expressions and to send notifications about firing alerts to Grafana Mimir Alertmanager. In this section you’re going to configure an alerting rule in Grafana Mimir using tooling offered by Grafana.

  1. Open Grafana Alerting.
  2. Click to “New alert rule”.
  3. Configure the alert rule:
    1. Select Mimir or Loki alert in the top selector.
    2. Choose Mimir in the “Select data source” field.
    3. Type up == 0 in the “Metrics browser” query field.
    4. Type MimirNotRunning in the “Rule name” field.
    5. Select example-namespace in the “Namespace” field.
    6. Select example-group in the “Group” field.
    7. From the upper-right corner, click the Save and exit button.

Your MimirNotRunning alert rule is now being created in Grafana Mimir ruler and is expected to fire when the number of Grafana Mimir instances is less than three. You can check its status by opening the Grafana Alerting page and expanding the “example-namespace > example-group” row. The status should be “Normal” since all three instances are currently running.

To see the alert firing we can introduce an outage in the Grafana Mimir cluster:

  1. Abruptly terminate one of the three Grafana Mimir instances:
    bash
    docker-compose kill mimir-3
  2. Open Grafana Alerting and check out the state of the alert MimirNotRunning, which should switch to “Pending” state in about one minute and to “Firing” state after another minute. Note: since we abruptly terminated a Mimir instance, Grafana Alerting UI may temporarily show an error when querying rules: the error will auto resolve shortly, as soon as Grafana Mimir internal health checking detects the terminated instance as unhealthy.

Grafana Mimir Alertmanager has not been configured yet to notify alerts through a notification channel. To configure the Alertmanager you can open the Contact points page in Grafana and set your preferred notification channel. Note the email receiver doesn’t work in this example because there’s no SMTP server running.

Before adding back our terminated Mimir instance to resolve the alert, go into the Grafana Explore page and query your sum:up recording rule. You should see that value of sum:up should have dropped to 2, now that one instance is down. You’ll also notice that querying for this rule and all other metrics continues to work even though one instance is down. This demonstrates that highly available Grafana Mimir setups like the three instance deployment in this demo are resilient to outages of individual nodes.

To resolve the alert and recover from the outage, restart the Grafana Mimir instance that was abruptly terminated:

  1. Start the Grafana Mimir instances:
    bash
    docker-compose start mimir-3
  2. Open Grafana Alerting and check out the state of the alert MimirNotRunning, which should switch to “Normal” state in about one minute.

Summary

In this tutorial you started Grafana Mimir locally in a high-available setup as well as a Prometheus instance that remote wrote some metrics to Grafana Mimir. You then queried those metrics stored in Mimir using Grafana, and visualized them in some Grafana dashboards. Lastly, you configured a recording rule and an alert via the Grafana Alerting UI and verified that the alert fired as expected when the condition was met.

Once you’ve completed the tutorial, release all Docker resources by running this Docker command:

bash
docker-compose down -v