simple-guide-to-converting-prometheus-metrics-to-graphite-using-telegraf

Simple Guide to Converting Prometheus Metrics to Graphite Using Telegraf

Table of Contents

Introduction 

Monitoring with Graphite is often easier than with Prometheus because it uses a simple, hierarchical naming system that's intuitive to manage. Its storage model is also designed for long-term data retention without complex setups, which is perfect when historical data matters. By converting Prometheus metrics to Graphite, you streamline your monitoring to one consistent format, reducing the hassle of juggling multiple systems.

In this article, we'll detail how to send system performance metrics to a Prometheus endpoint, and configure Telegraf to collect, convert, and forward them to a Graphite data source.

Getting Started with the Telegraf Agent

Telegraf is a plugin-driven server agent built on InfluxDB that collects and sends metrics/events from databases, systems, processes, devices, and applications. It is written in Go, compiles into a single binary with no external dependencies, and requires a minimal memory footprint. Telegraf is compatible with many operating systems and has many helpful output plugins and input plugins for collecting and forwarding a wide variety of system performance metrics.

Install Telegraf (Linux/Redhat)

Download Telegraf and unzip it (see the Telegraf docs for up-to-date versions and installation commands for many operating systems). Packages and files are generally installed at /etc/telegraf/
Ubuntu/Debian
wget https://dl.influxdata.com/telegraf/releases/telegraf_1.30.0-1_amd64.deb
sudo dpkg -i telegraf_1.30.0-1_amd64.deb

RedHat/CentOS

wget https://dl.influxdata.com/telegraf/releases/telegraf-1.30.0-1.x86_64.rpm
sudo yum localinstall telegraf-1.30.0-1.x86_64.rpm

Configure an Output

You can configure Telegraf to output to various sources, such as Kafka, Graphite, InfluxDB, Prometheus, SQL, NoSQL, and more.

In this example, we will configure telegraf with a Graphite output. If you're not currently hosting your data source, start a 14-day free trial with Hosted Graphite by MetricFire to follow these next steps.

A Hosted Graphite account will provide the data source, offer an alerting feature, and include Hosted Grafana as a visualization tool.

To configure the Graphite output, locate the downloaded telegraf configuration file at /etc/telegraf/telegraf.conf and open it in your preferred text editor. Then, you will need to make the following changes to the file:

First, uncomment the line:

[[outputs.graphite]]

Next, uncomment and edit the server line to:

servers = ["carbon.hostedgraphite.com:2003"]

Finally, uncomment and edit the prefix line to:

prefix = "<YOUR_API_KEY>.telegraf"

Install and Run Node Exporter

Node Exporter collects a broad range of system performance metrics, like CPU, memory, and disk usage, and exposes them in a format compatible with Prometheus. It’s an easy option because it requires minimal setup, runs as a lightweight service, and automatically gathers system metrics without needing a custom configuration. This is how we will produce metrics that will be scraped from the prometheus endpoint.

  • Download and Configure Node Exporter:
    • cd /tmp
    • wget https://github.com/prometheus/node_exporter/releases/download/v1.5.0/node_exporter-1.5.0.linux-amd64.tar.gz
    • tar -xvf node_exporter-1.5.0.linux-amd64.tar.gz
  • Move Node Exporter to system path for easy command access:
    • sudo mv node_exporter-1.5.0.linux-amd64/node_exporter /usr/local/bin/
  • Start Node Exporter (run in a terminal window):
    • /usr/local/bin/node_exporter

Install and Configure Prometheus

This article assumes that you're already using Prometheus, but here's a quick install guide (ubuntu) if you want to follow along with this tutorial - for testing purposes:

  • Download and Extract Prometheus:
    • cd /tmp
    • wget https://github.com/prometheus/prometheus/releases/download/v2.45.0/prometheus-2.45.0.linux-amd64.tar.gz
    • tar -xvf prometheus-2.45.0.linux-amd64.tar.gz
  • Move Prometheus to system path for easy command access: 
    • sudo mv prometheus-2.45.0.linux-amd64 /etc/prometheus
    • sudo ln -s /etc/prometheus/prometheus /usr/local/bin/prometheus
  • Configure the /etc/prometheus/prometheus.yml file:
    • NOTE: default scrape settings are 15s
    • global:
        scrape_interval: 15s
        evaluation_interval: 15s

      scrape_configs:
      - job_name: "prometheus"

          static_configs:
            - targets: ["localhost:9090"]

        # Scrape Node Exporter metrics
        - job_name: 'node_exporter'
          static_configs:
            - targets: ['localhost:9100']
  • Start Prometheus (run in another terminal window):
    • sudo /usr/local/bin/prometheus --config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/var/lib/prometheus/

    Configure the Telegraf Plugin

    Telegraf has many input plugins that can collect a wide range of data from many popular technologies and 3rd party sources. In this example, we'll demonstrate how to collect Node Exporter system metrics from your Prometheus endpoint.

    First, you will need to search for the inputs.prometheus section in your telegraf.conf file, uncomment the [[inputs.prometheus]] line:

    [[inputs.prometheus]]

    Then just uncomment and configure the 'urls' line, and the 'name_suffix' will improve metric searchability:

         urls = ["http://localhost:9100/metrics"]
        name_suffix = ".prometheus"

      Finally, you can save your changes and run the telegraf daemon using the following command. This will help you see if there are any configuration errors in the output:

      telegraf --config telegraf.conf

      Now you can check your Hosted Graphite account to see that roughly new Prometheus 800 metrics, this is what they look like in the Graphite format:

      telegraf.<host>.http:--localhost:9100-metrics.<cpu,mem,disk,network>.prometheus.<gauge,counter>

      See the official GitHub repository for additional details and configuration options for the Prometheus plugin.

      Use Hosted Graphite by MetricFire to Create Custom Dashboards and Alerts

      MetricFire is a monitoring platform that enables you to gather, visualize and analyze metrics and data from servers, databases, networks, processes, devices, and applications. Using MetricFire, you can effortlessly identify problems and optimize resources within your infrastructure. Hosted Graphite by MetricFire removes the burden of self-hosting your monitoring solution, allowing you more time and freedom to work on your most important tasks.

      Once you have signed up for a Hosted Graphite account and used the above steps to configure your server(s) with the Telegraf Agent, metrics will be forwarded, timestamped, and aggregated into the Hosted Graphite backend.

      1. Metrics will be sent and stored in the Graphite format of: metric.name.path <numeric-value> <unix-timestamp>

      2. The dot notation format provides a tree-like data structure, making it efficient to query

      3. Metrics are stored in your Hosted Graphite account for two years, and you can use them to create custom Alerts and Grafana dashboards.

      Build Dashboards in Hosted Graphite's Hosted Grafana

      In the Hosted Graphite UI, navigate to Dashboards and select + New Dashboard to create a new visualization.

      Then go into Edit mode and use the Query UI to select a graphite metric path (the default data source will be the HostedGraphite backend if you are accessing Grafana via your HG account).

      The HG datasource also supports wildcard (*) searching to grab all metrics that match a specified path.

      Now you can apply Graphite functions to these metrics like groupByNode() to aggregate metrics by node, and perSecond() to calculate per-second rates:

      Simple Guide to Converting Prometheus Metrics to Graphite Using Telegraf - 1

      Grafana has many additional options to apply different visualizations, modify the display, set units of measurement, and some more advanced features like configuring dashboard variables and event annotations.

      The above example has a dashboard variable configured for 'instance' at index 4 of the metric series. See the Hosted Graphite dashboard docs for more details.

      Creating Graphite Alerts

      In the Hosted Graphite UI, navigate to Alerts => Graphite Alerts to create a new alert. Name the alert, add a query to the alerting metric field, and add a description of what this alert is:

      Simple Guide to Converting Prometheus Metrics to Graphite Using Telegraf - 2

      Then, select the Alert Criteria tab to set a threshold and select a notification channel. The default notification channel will be the email you used to sign up for the Hosted Graphite account. Still, you can easily configure channels for Slack, PagerDuty, Microsoft Teams, OpsGenie, custom webhooks and more. See the Hosted Graphite docs for more details on notification channels:

      Simple Guide to Converting Prometheus Metrics to Graphite Using Telegraf - 3

      Conclusion

      Monitoring Prometheus metrics as Graphite metrics simplifies metric organization, offering a straightforward, hierarchical naming structure that’s easier to manage and understand. Graphite’s simple query syntax and focus on long-term data retention make it ideal for environments where historical trends are critical, reducing the complexity often associated with Prometheus’s label-based system. By consolidating metrics in Graphite, you gain a more user-friendly and cohesive monitoring setup that’s easier to navigate and maintain.

      Sign up for the free trial and begin monitoring your infrastructure today. You can also book a demo and talk to the MetricFire team directly about your monitoring needs.

      You might also like other posts...
      metricfire Nov 13, 2024 · 9 min read

      Use the Telegraf Exec Plugin to Convert Data Formats

      Streamlining your data into a single format for infrastructure monitoring makes it easier to... Continue Reading

      metricfire Nov 12, 2024 · 13 min read

      10 Best Cisco Switch Monitoring Tools for 2025

      MetricFire provides the best hosted open-source Cisco switch network monitoring solution. It is the... Continue Reading

      metricfire Nov 06, 2024 · 8 min read

      Easiest Way to Monitor Traefik Requests Using StatsD and Graphite

      Monitoring and alerting on your Traefik statistics is crucial for keeping your SaaS platform... Continue Reading

      header image

      We strive for 99.999% uptime

      Because our system is your system.

      14-day trial 14-day trial
      No Credit Card Required No Credit Card Required