Plugins 〉Apache IoTDB


Developer
the Apache Software Foundation (ASF)


Sign up to receive occasional product news and updates:



Data Source
community

Apache IoTDB

  • Overview
  • Installation
  • Change log
  • Related content

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.

Iotdb grafana plugin supports grafana version 9.3.0 and above

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/)

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.

For more details about Grafana operation, please refer to the official Grafana documentation:https://grafana.com/docs/grafana/latest/alerting/

Installing Apache IoTDB on Grafana Cloud:

For more information, visit the docs on plugin installation.

<!--

Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

-->

Changelog

See RELEASE_NOTES.md