--- sidebar_label: Grafana title: Grafana for TDengine Cloud --- TDengine can be quickly integrated with the open-source data visualization system [Grafana](https://www.grafana.com/) 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](https://github.com/taosdata/grafanaplugin/blob/master/README.md). ## 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: . ## Install TDengine data source plugin Please copy the following shell commands to export `TDENGINE_CLOUD_URL` and `TDENGINE_CLOUD_TOKEN` for the data source installation. Run below script from Linux terminal to install TDengine data source plugin. ```bash bash -c "$(curl -fsSL https://raw.githubusercontent.com/taosdata/grafanaplugin/master/install.sh)" ``` The script will output download and installation progress. ``` using tdengine-datasource plugin 3.2.4 --2022-06-08 20:46:34-- https://github.com/taosdata/grafanaplugin/releases/download/v3.2.4/tdengine-datasource-3.2.4.zip ... tdengine-datasource-3.2.4.zip 100%[================================================================================================================>] 29.34M 842KB/s in 35s 127.0.0.1 - - [08/Jun/2022 20:47:12] "GET /tdengine-datasource-3.2.4.zip HTTP/1.1" 200 - ✔ Downloaded tdengine-datasource v3.2.4 zip successfully Please restart Grafana after installing plugins. Refer to Grafana documentation for instructions if necessary. * Provisioning /etc/grafana/provisioning/datasources/TDengine.yaml ``` After that completed, please restart grafana-server. ```bash sudo systemctl restart grafana-server.service ``` ## Verifying Grafana and TDengine data source Users can log in to the Grafana server (initial username/password: admin/admin) directly through the URL `http://localhost:3000`. Click `Configuration -> Data Sources` on the left side. Then click `Test` button to verify if TDengine data source works. You should see a success message if the test worked. ![Verifying TDengine data source](./grafana/verifying-tdengine-datasource.webp) ## Using Grafana Please add new dashboard or import exist dashboard to illustrate the data you store in the TDengine. And refer to the [documentation](https://docs.tdengine.com/third-party/grafana#create-dashboard) for more details.