Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

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.

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Intermediate
Duration
Clock icon 45m
Published
Clock icon Jun 12, 2020

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Implement a Recording Rule to Pre-Calculate CPU Usage

    1. Log in to the Prometheus server.

    2. Create a directory to store rules files:

      sudo mkdir -p /etc/prometheus/rules
      
    3. Edit the Prometheus config and add a rules location:

      sudo vi /etc/prometheus/prometheus.yml
      
      ...
      
      rule_files:
        - "/etc/prometheus/rules/*.yml"
      
      ...
      
    4. Create a rules file for limedrop-gateway server metrics:

      sudo vi /etc/prometheus/rules/limedrop-gateway.yml
      
    5. 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
      
    6. Restart Prometheus to load the new configuration:

      sudo systemctl restart prometheus
      
    7. 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]
      
  2. Challenge

    Add a Recording Rule to Pre-Calculate Memory Usage

    1. Edit the rules file:

      sudo vi /etc/prometheus/rules/limedrop-gateway.yml
      
    2. 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
      
    3. Restart Prometheus to load the new configuration:

      sudo systemctl restart prometheus
      
    4. 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]
      
    5. You can also check out the rules interface (http://<PROMETHEUS_SERVER_PUBLIC_IP>:9090/rules) to see the status of your rules.

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

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.

Start learning by doing today

View Plans