Grafana

TDengine can be quickly integrated with the open-source data visualization system Grafana to build a data monitoring and alerting system. The whole process does not require any code development. And you can visualize the contents of the data tables in TDengine on a dashboard. You can learn more about using the TDengine plugin on GitHub.

Prerequisites

In order for Grafana to add the TDengine data source successfully, the following preparations are required:

  1. The TDengine cluster is deployed and functioning properly
  2. taosAdapter is installed and running properly. Please refer to the taosAdapter manual for details.

Record these values:

  • TDengine REST API url: http://tdengine.local:6041.
  • TDengine cluster authorization, with user + password.

Installing Grafana

TDengine currently supports Grafana versions 7.5 and above. Users can go to the Grafana official website to download the installation package and execute the installation according to the current operating system. The download address is as follows: https://grafana.com/grafana/download.

Configuring Grafana

Install Grafana Plugin and Configure Data Source

  • With GUI
  • With Script
  • Install & Configure Manually
  • Container

Under Grafana 8, plugin catalog allows you to browse and manage plugins within Grafana (but for Grafana 7.x, use With Script or Install & Configure Manually). Find the page at Configurations > Plugins, search TDengine and click it to install.

Search tdengine in grafana plugins

Installation may cost some minutes, then you can Create a TDengine data source:

Install and configure Grafana data source

Then you can add a TDengine data source by filling up the configuration options.

TDengine Database Grafana plugin add data source

You can create dashboards with TDengine now.

On a server with Grafana installed, run install.sh with TDengine url and username/passwords will install TDengine data source plugin and add a data source named TDengine. This is the recommended way for Grafana 7.x or Grafana provisioning users.

  1. bash -c "$(curl -fsSL \
  2. https://raw.githubusercontent.com/taosdata/grafanaplugin/master/install.sh)" -- \
  3. -a http://localhost:6041 \
  4. -u root \
  5. -p taosdata

Restart Grafana service and open Grafana in web-browser, usually http://localhost:3000.

Save the script and type ./install.sh --help for the full usage of the script.

Follow the installation steps in Grafana with the grafana-cli command-line tool for plugin installation.

  1. grafana-cli plugins install tdengine-datasource
  2. # with sudo
  3. sudo -u grafana grafana-cli plugins install tdengine-datasource

You can also download zip files from GitHub or Grafana and install manually. The commands are as follows:

  1. GF_VERSION=3.2.7
  2. # from GitHub
  3. wget https://github.com/taosdata/grafanaplugin/releases/download/v$GF_VERSION/tdengine-datasource-$GF_VERSION.zip
  4. # from Grafana
  5. wget -O tdengine-datasource-$GF_VERSION.zip https://grafana.com/api/plugins/tdengine-datasource/versions/$GF_VERSION/download

Take CentOS 7.2 for example, extract the plugin package to /var/lib/grafana/plugins directory, and restart grafana.

  1. sudo unzip tdengine-datasource-$GF_VERSION.zip -d /var/lib/grafana/plugins/

If Grafana is running in a Docker environment, the TDengine plugin can be automatically installed and set up using the following environment variable settings:

  1. GF_INSTALL_PLUGINS=tdengine-datasource

Now users can log in to the Grafana server (username/password: admin/admin) directly through the URL http://localhost:3000 and add a datasource through Configuration -> Data Sources on the left side, as shown in the following figure.

TDengine Database TDinsight plugin add datasource 1

Click Add data source to enter the Add data source page, and enter TDengine in the query box to add it, as shown in the following figure.

TDengine Database TDinsight plugin add datasource 2

Enter the datasource configuration page, and follow the default prompts to modify the corresponding configuration.

TDengine Database TDinsight plugin add database 3

  • Host: IP address of the server where the components of the TDengine cluster provide REST service (offered by taosd before 2.4 and by taosAdapter since 2.4) and the port number of the TDengine REST service (6041), by default use http://localhost:6041.
  • User: TDengine user name.
  • Password: TDengine user password.

Click Save & Test to test. You should see a success message if the test worked.

TDengine Database TDinsight plugin add database 4

Please refer to Install plugins in the Docker container. This will install tdengine-datasource plugin when Grafana container starts:

  1. docker run -d \
  2. -p 3000:3000 \
  3. --name=grafana \
  4. -e "GF_INSTALL_PLUGINS=tdengine-datasource" \
  5. grafana/grafana

You can setup a zero-configuration stack for TDengine + Grafana by docker-compose and Grafana provisioning file:

  1. Save the provisioning configuration file to tdengine.yml.

    1. apiVersion: 1
    2. datasources:
    3. - name: TDengine
    4. type: tdengine-datasource
    5. orgId: 1
    6. url: "$TDENGINE_API"
    7. isDefault: true
    8. secureJsonData:
    9. url: "$TDENGINE_URL"
    10. basicAuth: "$TDENGINE_BASIC_AUTH"
    11. token: "$TDENGINE_CLOUD_TOKEN"
    12. version: 1
    13. editable: true
  2. Write docker-compose.yml with TDengine and Grafana image.

    1. version: "3.7"
    2. services:
    3. tdengine:
    4. image: tdengine/tdengine:2.6.0.2
    5. environment:
    6. TAOS_FQDN: tdengine
    7. volumes:
    8. - tdengine-data:/var/lib/taos/
    9. grafana:
    10. image: grafana/grafana:8.5.6
    11. volumes:
    12. - ./tdengine.yml/:/etc/grafana/provisioning/tdengine.yml
    13. - grafana-data:/var/lib/grafana
    14. environment:
    15. # install tdengine plugin at start
    16. GF_INSTALL_PLUGINS: "tdengine-datasource"
    17. TDENGINE_URL: "http://tdengine:6041"
    18. #printf "$TDENGINE_USER:$TDENGINE_PASSWORD" | base64
    19. TDENGINE_BASIC_AUTH: "cm9vdDp0YmFzZTEyNQ=="
    20. ports:
    21. - 3000:3000
    22. volumes:
    23. grafana-data:
    24. tdengine-data:
  3. Start TDengine and Grafana services: docker-compose up -d.

Open Grafana http://localhost:3000, and you can add dashboard with TDengine now.

Create Dashboard

Go back to the main interface to create a dashboard and click Add Query to enter the panel query page:

TDengine Database TDinsight plugin create dashboard 1

As shown above, select the TDengine data source in the Query and enter the corresponding SQL in the query box below for query.

  • INPUT SQL: Enter the desired query (the results being two columns and multiple rows), such as select _wstart, avg(mem_system) from log.dnodes_info where ts >= $from and ts < $to interval($interval). In this statement, $from, $to, and $interval are variables that Grafana replaces with the query time range and interval. In addition to the built-in variables, custom template variables are also supported.
  • ALIAS BY: This allows you to set the current query alias.
  • GENERATE SQL: Clicking this button will automatically replace the corresponding variables and generate the final executed statement.

Follow the default prompt to query the average system memory usage for the specified interval on the server where the current TDengine deployment is located as follows.

TDengine Database TDinsight plugin create dashboard 2

For more information on how to use Grafana to create the appropriate monitoring interface and for more details on using Grafana, refer to the official Grafana documentation.

Importing the Dashboard

You can install TDinsight dashboard in data source configuration page (like http://localhost:3000/datasources/edit/1/dashboards) as a monitoring visualization tool for TDengine cluster. Ensure that you use TDinsight for 3.x.

TDengine Database Grafana plugine import dashboard

A dashboard for TDengine 2.x has been published on Grafana: Dashboard 15167 - TDinsight) 。 Check the TDinsight User Manual for the details.

For more dashboards using TDengine data source, search here in Grafana. Here is a sub list:

  • 15146: Monitor multiple TDengine clusters.
  • 15155: TDengine alert demo.
  • 15167: TDinsight.
  • 16388: Telegraf node metrics dashboard using TDengine data source.