Install dashboards, alerts, and recording rules
Loki is instrumented to expose metrics about itself via the /metrics
endpoint, designed to be scraped by Prometheus. Each Loki release includes a mixin. The Loki mixin provides a set of Grafana dashboards, Prometheus recording rules and alerts for monitoring Loki.
To set up monitoring using the mixin, you need to:
- Deploy the Kubernetes Monitoring Helm chart. Follow the instructions in the Deploy Loki Meta-monitoring documentation.
- Actively storing metrics from your Loki cluster in Grafana Cloud or a separate LGTM stack.
This procedure assumes that you have set up Loki using the Helm chart.
Note
Be sure to update the commands and configuration to match your own deployment.
Install Loki dashboards in Grafana
After Loki metrics are scraped by the Kubernetes Monitoring Helm chart and stored in a Prometheus compatible time-series database, you can monitor Loki’s operation using the Loki mixin.
Each Loki release includes a mixin that includes:
- Relevant dashboards for overseeing the health of Loki as a whole, as well as its individual Loki components
- Recording rules that compute metrics that are used in the dashboards
- Alerts that trigger when Loki generates metrics that are outside of normal parameters
To install the mixins in Grafana and Mimir, the general steps are as follows:
Download the mixin dashboards from the Loki repository.
Import the dashboards in your Grafana instance.
Upload
alerts.yaml
andrules.yaml
files to Prometheus or Mimir withmimirtool
.
Download the loki-mixin
dashboards
First, clone the Loki repository from Github:
git clone https://github.com/grafana/loki cd loki
Once you have a local copy of the repository, navigate to the
production/loki-mixin-compiled
directory.cd production/loki-mixin-compiled
This directory contains a compiled version of the alert and recording rules, as well as the dashboards.
Note
If you want to change any of the mixins, make your updates in the
production/loki-mixin
directory. Use the instructions in the README in that directory to regenerate the files.
Import the dashboards to Grafana
The dashboards
directory includes the monitoring dashboards that can be installed into your Grafana instance.
Refer to Import a dashboard in the Grafana documentation.
Tip
Install all dashboards. You can only import one dashboard at a time. Create a new folder in the Dashboards area, for example “Loki Monitoring”, as an easy location to save the imported dashboards.
To create a folder:
- Open your Grafana instance and select Dashboards.
- Click the New button.
- Select New folder from the New menu.
- Name your folder, for example, “Loki Monitoring”.
- Click Create.
To import a dashboard:
- Open your Grafana instance and select Dashboards.
- Click the New button.
- Select Import from the New menu.
- On the Import dashboard screen, select Upload dashboard JSON file.
- Browse to
production/loki-mixin-compiled/dashboards
and select the dashboard to import. Or, drag the dashboard file, for example,loki-operational.json
, onto the Upload area of the Import dashboard screen. - Select a folder in the Folder menu where you want to save the imported dashboard. For example, select “Loki Monitoring” created in the earlier steps.
- Click Import.
The imported files are listed in the Loki Monitoring dashboard folder.
To view the dashboards in Grafana:
- Select Dashboards in your Grafana instance.
- Select Loki Monitoring, or the folder where you uploaded the imported dashboards.
- Select any file in the folder to view the dashboard.
Add alerts and recording rules to Prometheus or Mimir
The rules and alerts need to be installed into a Prometheus instance, Mimir or a Grafana Enterprise Metrics cluster.
You can find the YAML files for alerts and rules in the following directories in the Loki repo:
For microservices mode:
production/loki-mixin-compiled/alerts.yaml
(Optional)production/loki-mixin-compiled/rules.yaml
(Required)
You use mimirtool
to load the mixin alerts and rules definitions into a Prometheus instance, Mimir, or a Grafana Enterprise Metrics cluster. The following examples show how to load the mixin alerts and rules into a Grafana Cloud instance.
Download mimirtool.
Export the authentication credentials for connecting to your Grafana Cloud Mimir instance.
export MIMIR_ADDRESS=<CLOUD-MIMIR-URL> export MIMIR_API_USER=<CLOUD-MIMIR-USER> export MIMIR_API_KEY=<CLOUD-MIMIR-API-KEY> export MIMIR_TENANT_ID=<CLOUD-MIMIR-USER> # Same as MIMIR_API_USER when using Grafana Cloud
The best place to locate these credentials is to:
- Sign into Grafana Cloud and create a new access policy.
- In the main menu, select Security > Access Policies.
- Click Create access policy.
- Give the policy a Name and select the following permissions:
- Alerts: Write & Read
- Rules: Write & Read
- Click Create.
- Click Add Token. Give the token a name and click Create.
- Collect
URL
anduser
for Prometheus- Navigate to the Grafana Cloud Portal Overview page.
- Click the Details button for your Alerts instance.
- From the Configuring your Alerting Stacks section, collect the instance User and URL for Metrics Authentication Settings.
- Sign into Grafana Cloud and create a new access policy.
Using the same terminal we exported the Mimir enviroment variables into earlier, run the following command to load the recording rules:
mimirtool rules load rules.yaml
(Optional) Load the alert rules:
mimirtool rules load alerts.yaml
Refer to the mimirtool documentation for more information.
Next steps
After you have installed the Loki mixin dashboards, alerts, and recording rules, you can now monitor your production Loki cluster using Grafana. Make sure you review the mixins when you upgrade Loki to make sure you are using the latest version of the mixin.
You can now move onto:
- Send Logs: Ready to start sending your own logs to Loki, there a several methods you can use. Checkout send data for more information.
- Query Logs: LogQL is an extensive query language for logs and contains many tools to improve log retrival and generate insights. For more information see the Query section.
- Alert: Lastly you can use the ruler component of Loki to create alerts based on log queries. For more information see Alerting.