Install the Infinity data source
You can install the Infinity data source plugin using several methods, depending on your Grafana deployment.
Before you begin
- Grafana 10.4.8 or later.
- Administrator access to your Grafana instance.
Grafana Cloud
The Infinity data source plugin is pre-installed on Grafana Cloud instances. Updates are managed automatically by Grafana, so no installation or upgrade steps are needed. You can proceed directly to configuring the data source.
Self-managed Grafana
For self-managed Grafana installations, use one of the following methods to install the Infinity data source plugin.
Install from the Grafana plugin catalog
The simplest way to install the plugin is from the Grafana plugin catalog:
- In Grafana, navigate to Administration > Plugins and data > Plugins.
- Search for “Infinity”.
- Click Install.
Alternatively, visit the plugin page and follow the installation instructions.
Install using Grafana CLI
Use the Grafana CLI to install the latest version:
grafana cli plugins install yesoreyeram-infinity-datasourceTo install a specific version, provide the plugin URL:
grafana cli --pluginUrl https://github.com/grafana/grafana-infinity-datasource/releases/download/v2.4.0/yesoreyeram-infinity-datasource-2.4.0.zip plugins install yesoreyeram-infinity-datasourceAfter installation, restart Grafana for the plugin to load.
Install from GitHub releases
To install manually:
- Download the desired version from GitHub releases.
- Extract the archive to your Grafana plugins directory (typically
/var/lib/grafana/plugins/). - Restart Grafana.
Install using Docker
Use the GF_INSTALL_PLUGINS environment variable to install the plugin when starting the container:
docker run -p 3000:3000 -e "GF_INSTALL_PLUGINS=yesoreyeram-infinity-datasource" grafana/grafana-enterprise:latestTo install a specific version:
docker run -p 3000:3000 -e "GF_INSTALL_PLUGINS=yesoreyeram-infinity-datasource;https://github.com/grafana/grafana-infinity-datasource/releases/download/v2.4.0/yesoreyeram-infinity-datasource-2.4.0.zip" grafana/grafana-enterprise:latestInstall using Helm
If you deploy Grafana using the Grafana Helm chart, add the plugin to your values.yaml:
plugins:
- yesoreyeram-infinity-datasourceTo install a specific version:
plugins:
- https://github.com/grafana/grafana-infinity-datasource/releases/download/v2.4.0/yesoreyeram-infinity-datasource-2.4.0.zip;yesoreyeram-infinity-datasourceVerify installation
After installation:
- In Grafana, navigate to Connections > Data sources.
- Click Add new data source.
- Search for “Infinity” — if it appears, the installation was successful.
Update the plugin
Keep the Infinity data source plugin up to date to access new features, performance improvements, and bug fixes. Check the changelog for details on each release.
Grafana plugin catalog
- In Grafana, navigate to Administration > Plugins and data > Plugins.
- Search for “Infinity” and select it.
- If an update is available, click Update.
Grafana CLI
grafana cli plugins update yesoreyeram-infinity-datasourceAfter updating, restart Grafana for the changes to take effect.
Docker and Helm
For containerized deployments, update the version in your configuration and redeploy. Refer to the installation sections above for version-specific examples.



