- Lab
- Cloud

Using Prometheus Recording Rules
Prometheus is a great way to collect a variety of metrics for your servers and applications. However, sometimes you need to perform calculations on the raw data Prometheus collects in order to gain actionable information. While queries can help you do this, recording rules provide an additional layer of optimization by allowing you to periodically pre-calculate query results and save them. In this lab, you will have the opportunity to implement some basic recording rules. This will provide you with some hands-on familiarity with the process of creating and managing recording rules.

Path Info
Table of Contents
-
Challenge
Implement a Recording Rule to Pre-Calculate CPU Usage
-
Log in to the Prometheus server.
-
Create a directory to store rules files:
sudo mkdir -p /etc/prometheus/rules
-
Edit the Prometheus config and add a
rules
location:sudo vi /etc/prometheus/prometheus.yml
... rule_files: - "/etc/prometheus/rules/*.yml" ...
-
Create a
rules
file forlimedrop-gateway
server metrics:sudo vi /etc/prometheus/rules/limedrop-gateway.yml
-
Implement a recording rule to pre-calculate CPU usage for the server:
groups: - name: limedrop_gateway rules: - record: limedrop_gateway:cpu_usage expr: sum(rate(node_cpu_seconds_total{instance='limedrop-gateway:9100',mode!='idle'}[5m])) * 100 / 2
-
Restart Prometheus to load the new configuration:
sudo systemctl restart prometheus
-
Access the expression browser (
http://<PROMETHEUS_SERVER_PUBLIC_IP>:9090/graph
) and run a query to verify you can see the pre-calculated data:limedrop_gateway:cpu_usage[5m]
-
-
Challenge
Add a Recording Rule to Pre-Calculate Memory Usage
-
Edit the rules file:
sudo vi /etc/prometheus/rules/limedrop-gateway.yml
-
Add a recording rule to pre-calculate memory usage for the server:
groups: - name: limedrop_gateway rules: - record: limedrop_gateway:cpu_usage expr: sum(rate(node_cpu_seconds_total{instance='limedrop-gateway:9100',mode!='idle'}[5m])) * 100 / 2 - record: limedrop_gateway:memory_usage expr: 100 - (node_memory_MemAvailable_bytes{instance='limedrop-gateway:9100'} / node_memory_MemTotal_bytes{instance='limedrop-gateway:9100'}) * 100
-
Restart Prometheus to load the new configuration:
sudo systemctl restart prometheus
-
Access the expression browser (
http://<PROMETHEUS_SERVER_PUBLIC_IP>:9090/graph
) and run a query to verify you can see the pre-calculated data:limedrop_gateway:memory_usage[5m]
-
You can also check out the rules interface (
http://<PROMETHEUS_SERVER_PUBLIC_IP>:9090/rules
) to see the status of your rules.
-
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.