This is a Grafana data source which can connect to the Materialize streaming SQL database. It supports the Grafana Live capabilities for streaming data and hence can be used to visualise data in materialized views 'live'.
Only three parameters are available for the datasource:
- Host - the hostname of the Materialize database
- Port - the port on which to connect to the Materialize database
- Username - the username as which to connect to the Materialize database
When querying the datasource in a new panel you have two options available to you:
- Relation - the query builder will populate a list of available relations in the Materialize database. Select one and the relation will be
TAIL
ed to the panel. - Select statement - input a custom statement into the query field and the output of the statement will be
TAIL
ed to the panel.
The plugin includes the mz_timestamp
and mz_diff
columns in the streaming output, which may not be what you want to see. The simplest way to solve this is to use the Transformations functionality of the panels. In the panel editor, click the Transform button and add any transformations you like. A good place to start is:
- Organize fields
Use this to hide the
mz_diff
field by clicking the 'eye' symbol next to the field name. - Prepare time series Select Multi-frame time series as the format.
- Rename by regex
Use this to remove any common unwanted prefix from the time series names. E.g. set Match to
avg (.*)
and Replace to$1
to remove the prefixavg
.
See the 'transforms' screenshot for an example.