Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

Getting started with Grafana and InfluxDB

InfluxDB is an open-source time series database (TSDB) developed by InfluxData. It is optimized for fast, high-availability storage and retrieval of time series data in fields such as operations monitoring, application metrics, IoT sensor data, and real-time analytics.

Step 1. Install Grafana and build your first dashboard

Use the instructions in Getting started with Grafana to:

  • Install Grafana.
  • Log in to Grafana.
  • Create your first dashboard.

You can also configure a Grafana Cloud instance to display system metrics without having to host Grafana yourself.

Step 2. Get InfluxDB

You can download InfluxDB and install it locally or you can sign up for InfluxDB Cloud.

Note: Windows installers are not available for some versions of InfluxDB.

Step 3. Install other InfluxDB software

Install Telegraf. This tool is an agent that helps you get metrics into InfluxDB. For more information, refer to Telegraf documentation.

If you chose to use InfluxDB Cloud, then you should download and install the InfluxDB Cloud CLI. This tool allows you to send command line instructions to your cloud account. For more information, refer to Influx CLI documentation.

Step 4. Get data into InfluxDB

If you downloaded and installed InfluxDB on your local machine, then use the Quick Start feature to visualize InfluxDB metrics.

If you are using the cloud account, then the wizards will guide you through the initial process. For more information, refer to Configure Telegraf.

Note: Windows users might need to make additional adjustments. Look for special instructions in the InfluxData documentation and Using Telegraf on Windows blog post.

Note: The regular system monitoring template in InfluxDB Cloud is not compatible with Windows. Windows users who use InfluxDB Cloud to monitor their system will need to use the Windows System Monitoring Template.

Step 5. Add your InfluxDB data source to Grafana

You can have more than one InfluxDB data source defined in Grafana.

  1. Follow the general instructions to add a data source.
  2. Decide if you will use InfluxQL or Flux as your query language.

InfluxDB guides

InfluxDB publishes guidance for connecting different versions of their product to Grafana.

Important tips

  • Make sure your Grafana token has read access. If it doesn’t, then you’ll get an authentication error and be unable to connect Grafana to InfluxDB.
  • Avoid apostrophes and other non-standard characters in bucket and token names.
  • If the text name of the organization or bucket doesn’t work, then try the ID number.
  • If you change your bucket name in InfluxDB, then you must also change it in Grafana and your Telegraf .conf file as well.

Step 6. Add a query

This step varies depending on the query language that you selected when you set up your data source in Grafana.

InfluxQL query language

In the query editor, click select measurement.

InfluxQL query

Grafana displays a list of possible series. Click one to select it, and Grafana graphs any available data. If there is no data to display, then try another selection or check your data source.

Flux query language

Create a simple Flux query.

  1. Add a panel.
  2. In the query editor, select your InfluxDB-Flux data source. For more information, refer to Queries.
  3. Select the Table visualization.
  4. In the query editor text field, enter buckets() and then click outside of the query editor.

This generic query returns a list of buckets.

Flux query

You can also create Flux queries in the InfluxDB Explore view.

  1. In your browser, log in to the InfluxDB native UI (OSS is typically something like http://localhost:8086 or for InfluxDB Cloud use: https://cloud2.influxdata.com).

  2. Click Explore to open the Data Explorer.

  3. The InfluxDB Data Explorer provides two mechanisms for creating Flux queries: a graphical query editor and a script editor. Using the graphical query editor, create a query. It will look something like this:

    InfluxDB Explore query

  4. Click Script Editor to view the text of the query, and then copy all the lines of your Flux code, which will look something like this:

    InfluxDB Explore Script Editor

  5. In Grafana, add a panel and then paste your Flux code into the query editor.

  6. Click Apply. Your new panel should be visible with data from your Flux query.

Step 7. Check InfluxDB metrics in Grafana Explore

In your Grafana instance, go to the Explore view and build queries to experiment with the metrics you want to monitor. Here you can also debug issues related to collecting metrics.

Step 8. Start building dashboards

There you go! Use Explore and Data Explorer to experiment with your data, and add the queries that you like to your dashboard as panels. Have fun!

Here are some resources to learn more: