docs-v2/content/influxdb/v1/tools/grafana.md

8.4 KiB

title seotitle description menu related alt_links canonical
Use Grafana with InfluxDB Use Grafana with InfluxDB v1.x Configure Grafana to query and visualize data from InfluxDB v1.x.
influxdb_v1
name weight parent
Grafana 60 Tools
/flux/v0/get-started/, Get started with Flux
v2 core enterprise cloud-serverless cloud-dedicated clustered
/influxdb/v2/tools/grafana/ /influxdb3/core/visualize-data/grafana/ /influxdb3/enterprise/visualize-data/grafana/ /influxdb3/cloud-serverless/process-data/visualize/grafana/ /influxdb3/cloud-dedicated/process-data/visualize/grafana/ /influxdb3/clustered/process-data/visualize/grafana/
/influxdb/v2/tools/grafana/

Use Grafana or Grafana Cloud to visualize data from your {{% product-name %}} instance.

[!Note] {{< influxdb-version-detector >}}

[!Note]

Grafana 12.2+

The instructions below are for Grafana 12.2+ with the newInfluxDSConfigPageDesign feature flag enabled. This introduces the newest version of the InfluxDB core plugin. The updated plugin includes SQL support for InfluxDB 3-based products such as {{< product-name >}}, and the interface dynamically adapts based on your product and query language selection in URL and authentication.

[!Note]

Required

  • The instructions below are for Grafana 12.2+ with the newInfluxDSConfigPageDesign feature flag enabled. This introduces the newest version of the InfluxDB core plugin. For information about using InfluxDB with other versions of Grafana, see the Grafana documentation.
  • To use Flux, use InfluxDB 1.8.1+ and enable Flux in your InfluxDB configuration file.

Install Grafana

  1. Start InfluxDB.

  2. Sign up for Grafana Cloud or download and install Grafana.

  3. If running Grafana locally, enable the newInfluxDSConfigPageDesign feature flag to use the latest InfluxDB data source plugin.

    {{< expand-wrapper >}} {{% expand "Option 1: Configuration file (recommended)" %}}

    Add the following to your grafana.ini configuration file:

    [feature_toggles]
    enable = newInfluxDSConfigPageDesign
    

    Configuration file locations:

    • Linux: /etc/grafana/grafana.ini
    • macOS (Homebrew): /opt/homebrew/etc/grafana/grafana.ini
    • Windows: <GRAFANA_INSTALL_DIR>\conf\grafana.ini

    {{% /expand %}}

    {{% expand "Option 2: Command line" %}}

    Enable the feature flag when starting Grafana:

    {{< code-tabs-wrapper >}} {{% code-tabs %}} Linux macOS (Homebrew) Windows {{% /code-tabs %}} {{% code-tab-content %}}

    grafana-server --config /etc/grafana/grafana.ini \
      cfg:default.feature_toggles.enable=newInfluxDSConfigPageDesign
    

    {{% /code-tab-content %}} {{% code-tab-content %}}

    /opt/homebrew/opt/grafana/bin/grafana server \
      --config /opt/homebrew/etc/grafana/grafana.ini \
      --homepath /opt/homebrew/opt/grafana/share/grafana \
      --packaging=brew \
      cfg:default.paths.logs=/opt/homebrew/var/log/grafana \
      cfg:default.paths.data=/opt/homebrew/var/lib/grafana \
      cfg:default.paths.plugins=/opt/homebrew/var/lib/grafana/plugins \
      cfg:default.feature_toggles.enable=newInfluxDSConfigPageDesign
    

    {{% /code-tab-content %}} {{% code-tab-content %}}

    grafana-server.exe --config <GRAFANA_INSTALL_DIR>\conf\grafana.ini `
      cfg:default.feature_toggles.enable=newInfluxDSConfigPageDesign
    

    {{% /code-tab-content %}} {{< /code-tabs-wrapper >}}

    {{% /expand %}} {{< /expand-wrapper >}}

    For more information, see Configure feature toggles in the Grafana documentation.

  4. Visit your Grafana Cloud user interface (UI) or, if running Grafana locally, start Grafana and visit http://localhost:3000 in your browser.

[!Note]

Using Grafana Cloud with a local InfluxDB instance

If you need to keep your database local, consider running Grafana locally instead of using Grafana Cloud, as this avoids the need to expose your database to the internet.

To use InfluxDB running on your private network with Grafana Cloud, you must configure a private data source for Grafana Cloud.

[!Note] SQL is only supported in InfluxDB 3. For more information, see how to get started with InfluxDB 3 Core.

Create an InfluxDB data source

  1. In your Grafana interface, click Connections in the left sidebar.
  2. Click Data sources.
  3. Click Add new connection.
  4. Search for and select InfluxDB. The InfluxDB data source configuration page displays.
  5. In the Settings tab, enter a Name for your data source.

Configure URL and authentication

In the URL and authentication section, configure the following:

  • URL: Your server URL--for example, https://{{< influxdb/host >}}
  • Product: From the dropdown, select InfluxDB OSS 1.x
  • Query Language: Select InfluxQL or Flux
  • (Optional) Advanced HTTP Settings, Auth, and TLS/SSL Settings as needed for your environment

Configure database settings

The fields in this section change based on your query language selection in URL and authentication.

{{< tabs-wrapper >}} {{% tabs %}} InfluxQL Flux
{{% /tabs %}} {{% tab-content %}}

Configure Grafana to use InfluxQL

When you select InfluxQL as the query language, configure the following:

{{< img-hd src="/img/influxdb3/OSS-v1-grafana-product-dropdown-influxql.png" alt="InfluxQL configuration for InfluxDB OSS 1.x" />}}

Click Save & Test. Grafana attempts to connect to InfluxDB and returns the result of the test.

{{% /tab-content %}} {{% tab-content %}}

Configure Grafana to use Flux

When you select Flux as the query language, configure the following:

  1. Ensure Flux is enabled in your InfluxDB configuration file.

  2. Configure the database settings:

    • Organization: Provide an arbitrary value (InfluxDB 1.x does not use organizations)
    • Default Bucket: Provide a default database and retention policy
    • Token: If InfluxDB authentication is enabled provide your InfluxDB username and password

{{< img-hd src="/img/influxdb3/OSS-v1-grafana-product-dropdown-flux.png" alt="Flux configuration for InfluxDB OSS 1.x" />}}

Click Save & Test. Grafana attempts to connect to InfluxDB and returns the result of the test.

{{% /tab-content %}} {{< /tabs-wrapper >}}

Query and visualize data

With your InfluxDB connection configured, use Grafana to query and visualize time series data.

Query inspection in Grafana

To learn about query management and inspection in Grafana, see the Grafana Explore documentation.

Build visualizations with Grafana

For a comprehensive walk-through of creating visualizations with Grafana, see the Grafana documentation.