Skip to main content

...About 9 min

Grafana-Plugin

Grafana is an open source volume metrics monitoring and visualization tool, which can be used to present time series data and analyze application runtime status.

We developed the Grafana-Plugin for IoTDB, using the IoTDB REST service to present time series data and providing many visualization methods for time series data.
Compared with previous IoTDB-Grafana-Connector, current Grafana-Plugin performs more efficiently and supports more query types. So, we recommend using Grafana-Plugin instead of IoTDB-Grafana-Connector.

Installation and deployment

Install Grafana

Acquisition method of grafana plugin

Method 1: grafana plugin binary Download

Download url:https://iotdb.apache.org/zh/Download/open in new window

Method 2: separate compilation of grafana plugin

We need to compile the front-end project in the IoTDB grafana-plugin directory and then generate the dist directory. The specific execution process is as follows.

Source download

Execute the following command:

git clone https://github.com/apache/iotdb.git
  • Option 1 (compile with maven): execute following command in the grafana-plugin directory:
mvn install package -P compile-grafana-plugin
  • Option 2 (compile with yarn): execute following command in the grafana-plugin directory:
yarn install
yarn build
go get -u github.com/grafana/grafana-plugin-sdk-go
go mod tidy
mage -v

When using the go get -u command, the following error may be reported. In this case, we need to execute go env -w GOPROXY=https://goproxy.cn, and then execute go get -u github.com/grafana/grafana -plugin-sdk-go

go get: module github.com/grafana/grafana-plugin-sdk-go: Get "https://proxy.golang.org/github.com/grafana/grafana-plugin-sdk-go/@v/list": dial tcp 142.251.42.241:443: i/o timeout

If compiling successful, you can see the dist directory , which contains the compiled Grafana-Plugin:

Method 3: The distribution package of IoTDB is fully compiled

We can also obtain the front-end project of grafana-plugin and other IoTDB executable files by executing the package instruction of the IoTDB project.

Execute following command in the IoTDB root directory:

 mvn clean package -pl distribution -am -DskipTests -P compile-grafana-plugin

If compiling successful, you can see that the distribution/target directory contains the compiled Grafana-Plugin:

Install Grafana-Plugin

  • Copy the front-end project target folder generated above to Grafana's plugin directory ${Grafana directory}\data\plugins\。If there is no such directory, you can manually create it or start grafana and it will be created automatically. Of course, you can also modify the location of plugins. For details, please refer to the following instructions for modifying the location of Grafana's plugin directory.

  • Modify Grafana configuration file: the file is in(${Grafana directory}\conf\defaults.ini), and do the following modifications:

    allow_loading_unsigned_plugins = apache-iotdb-datasource
    
  • Modify the location of Grafana's plugin directory: the file is in(${Grafana directory}\conf\defaults.ini), and do the following modifications:

    plugins = data/plugins
    
  • Start Grafana (restart if the Grafana service is already started)

For more details,please click hereopen in new window

Start Grafana

Start Grafana with the following command in the Grafana directory:

  • Windows:
bin\grafana-server.exe
  • Linux:
sudo service grafana-server start
  • MacOS:
brew services start grafana

For more details,please click hereopen in new window

Configure IoTDB REST Service

  • Modify {iotdb directory}/conf/iotdb-common.properties as following:
# Is the REST service enabled
enable_rest_service=true

# the binding port of the REST service
rest_service_port=18080

Start IoTDB (restart if the IoTDB service is already started)

How to use Grafana-Plugin

Access Grafana dashboard

Grafana displays data in a web page dashboard. Please open your browser and visit http://<ip>:<port> when using it.

  • IP is the IP of the server where your Grafana is located, and Port is the running port of Grafana (default 3000).

  • The default login username and password are both admin.

Add IoTDB as Data Source

Click the Settings icon on the left, select the Data Source option, and then click Add data source.

Select the Apache IoTDB data source.

  • Fill in http://<ip>:<port> in the URL field
    • ip is the host ip where your IoTDB server is located
    • port is the running port of the REST service (default 18080).
  • Enter the username and password of the IoTDB server

Click Save & Test, and Success will appear.

Create a new Panel

Click the Dashboards icon on the left, and select Manage option.

Click the New Dashboard icon on the top right, and select Add an empty panel option.

Grafana plugin supports SQL: Full Customized mode and SQL: Drop-down List mode, and the default mode is SQL: Full Customized mode.

SQL: Full Customized input method

Enter content in the SELECT, FROM , WHERE and CONTROL input box, where the WHERE and CONTROL input boxes are optional.

If a query involves multiple expressions, we can click + on the right side of the SELECT input box to add expressions in the SELECT clause, or click + on the right side of the FROM input box to add a path prefix:

SELECT input box: contents can be the time series suffix, function, udf, arithmetic expression, or nested expressions. You can also use the as clause to rename the result.

Here are some examples of valid SELECT content:

  • s1
  • top_k(s1, 'k'='1') as top
  • sin(s1) + cos(s1 + s2)
  • udf(s1) as "alias"

FROM input box: contents must be the prefix path of the time series, such as root.sg.d.

WHERE input box: contents should be the filter condition of the query, such as time > 0 or s1 < 1024 and s2 > 1024.

CONTROL input box: contents should be a special clause that controls the query type and output format.
The GROUP BY input box supports the use of grafana's global variables to obtain the current time interval changes $__from (start time), $__to (end time)

Here are some examples of valid CONTROL content:

  • GROUP BY ([$__from, $__to), 1d)
  • GROUP BY ([$__from, $__to),3h,1d)
  • GROUP BY ([2017-11-01T00:00:00, 2017-11-07T23:00:00), 1d)
  • GROUP BY ([2017-11-01 00:00:00, 2017-11-07 23:00:00), 3h, 1d)
  • GROUP BY ([$__from, $__to), 1m) FILL (PREVIOUSUNTILLAST)
  • GROUP BY ([2017-11-07T23:50:00, 2017-11-07T23:59:00), 1m) FILL (PREVIOUSUNTILLAST)
  • GROUP BY ([2017-11-07T23:50:00, 2017-11-07T23:59:00), 1m) FILL (PREVIOUS, 1m)
  • GROUP BY ([2017-11-07T23:50:00, 2017-11-07T23:59:00), 1m) FILL (LINEAR, 5m, 5m)
  • GROUP BY ((2017-11-01T00:00:00, 2017-11-07T23:00:00], 1d), LEVEL=1
  • GROUP BY ([0, 20), 2ms, 3ms), LEVEL=1

Tip: Statements like select * from root.xx.** are not recommended because those statements may cause OOM.

SQL: Drop-down List

Select a time series in the TIME-SERIES selection box, select a function in the FUNCTION option, and enter the contents in the SAMPLING INTERVAL、SLIDING STEP、LEVEL、FILL input boxes, where TIME-SERIES is a required item and the rest are non required items.

Support for variables and template functions

Both SQL: Full Customized and SQL: Drop-down List input methods support the variable and template functions of grafana. In the following example, raw input method is used, and aggregation is similar.

After creating a new Panel, click the Settings button in the upper right corner:

Select Variables, click Add variable:

Example 1:Enter Name, Label, and Query, and then click the Update button:

Apply Variables, enter the variable in the grafana panel and click the save button:

Example 2: Nested use of variables:

Example 3: using function variables

The Name in the above figure is the variable name and the variable name we will use in the panel in the future. Label is the display name of the variable. If it is empty, the variable of Name will be displayed. Otherwise, the name of the Label will be displayed.
There are Query, Custom, Text box, Constant, DataSource, Interval, Ad hoc filters, etc. in the Type drop-down, all of which can be used in IoTDB's Grafana Plugin
For a more detailed introduction to usage, please check the official manual (https://grafana.com/docs/grafana/latest/variables/open in new window)

In addition to the examples above, the following statements are supported:

  • show databases
  • show timeseries
  • show child nodes
  • show all ttl
  • show latest timeseries
  • show devices
  • select xx from root.xxx limit xx 等sql 查询

Tip: If the query field contains Boolean data, the result value will be converted to 1 by true and 0 by false.

Grafana alert function

This plugin supports Grafana alert function.

  1. In the Grafana sidebar, hover over the Alerting icon and click Notification channels.
  1. Click Add Channel.
  1. Fill in the fields described below or select options. There are many types of Type, including DingDing, Email, Slack, WebHook, Prometheus Alertmanager, etc.
    This sample Type uses Prometheus Alertmanager. Prometheus Alertmanager needs to be installed in advance. For more detailed configuration and parameter introduction, please refer to the official documentation: https://grafana.com/docs/grafana/v8.0/alerting/old-open in new window alerting/notifications/.
  1. Click the Test button, the Test notification sent appears, click the Save button to save
  1. After creating a new Panel, enter the query parameters and click Save, then select Alert and click Create Alert, as shown in the following figure:

6、Fill out the fields described below or select an option, Name- Enter a descriptive name. The name will be displayed in the Alert Rules list. This field supports templating.
Evaluate every - Specify how often the scheduler should evaluate the alert rule. This is referred to as the evaluation interval.
For - Specify how long the query needs to violate the configured thresholds before the alert notification triggers.。Conditions- Represents query criteria. Multiple combined query criteria can be configured.

Query conditions in the figure:avg() OF query(A,5m,now) IS ABOVE -1

avg() Controls how the values for each series should be reduced to a value that can be compared against the threshold. Click on the function to change it to another aggregation function
query(A, 15m, now) The letter defines what query to execute from the Metrics tab. The second two parameters define the time range, 15m, now means 15 minutes ago to now. You can also do 10m
IS ABOVE -1 Defines the type of threshold and the threshold value. You can click on IS ABOVE to change the type of threshold

Tips:The query used in an alert rule cannot contain any template variables. Currently we only support AND and OR operators between conditions and they are executed serially.

For example, we have 3 conditions in the following order: condition:A(evaluates to: TRUE) OR condition:B(evaluates to: FALSE) AND condition:C(evaluates to: TRUE) so the result will be calculated as ((TRUE OR FALSE) AND TRUE) = TRUE.

More details can be found in the official documents:https://grafana.com/docs/grafana/latest/alerting/old-alerting/create-alerts/open in new window

7、Click the Test rule button and the firing: true appears, the configuration is successful, click the save button

8、The following figure shows the alarm displayed in the grafana panel

9、View alert rules

10、View alert records in promehthus alertmanager

More Details about Grafana

For more details about Grafana operation, please refer to the official Grafana documentation: http://docs.grafana.org/guides/getting_started/open in new window.

Copyright © 2024 The Apache Software Foundation.
Apache and the Apache feather logo are trademarks of The Apache Software Foundation

Have a question? Connect with us on QQ, WeChat, or Slack. Join the community now.