--- 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). ## Install 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 plugin ### Install with GUI The TDengine data source plugin is already published as a signed Grafana plugin. You can easily install it from Grafana Configuration GUI. In any platform you already installed Grafana, you can open the URL http://localhost:3000 then click plugin menu from left panel. ![click plugin menu](./grafana/click-plugin-menu-from-config.webp) Then key in `TDengine` to search. ![search TDengine](./grafana/search-tdengine-from-config.webp) ### One-line installer Please copy the following shell commands to export `TDENGINE_CLOUD_URL` and `TDENGINE_CLOUD_TOKEN` for the data source installation. ```bash export TDENGINE_CLOUD_TOKEN="" export TDENGINE_CLOUD_URL="" ``` 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)" ``` After that completed, please restart grafana-server. ```bash sudo systemctl restart grafana-server.service ``` ## Verify plugin 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. ![Verify TDengine data source](./grafana/verifying-tdengine-datasource.webp) ## Use 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.