Skip to main content

Installation

info

For a more detailed explaination on how to install plugins, check out https://grafana.com/docs/grafana/v9.1/plugins/installation/

Install using the plugin catalog

caution

Plugin catalog came out in v8.0 of Grafana.

info

More information about plugin catalog https://grafana.com/docs/grafana/v9.1/plugins/catalog/

Configuration > Plugins > HTML Graphics

Install using plugin catalog

Install using grafana-cli

info

To install the latest version of the plugin, run the following command on the Grafana server:

grafana-cli plugins install gapit-htmlgraphics-panel

Install manually

  1. Go to Releases on the GitHub project page
  2. Find the release you want to install
  3. Download the release by clicking the release asset called gapit-htmlgraphics-panel-<version>.zip. You may need to uncollapse the Assets section to see it.
  4. Unarchive the plugin into the Grafana plugins directory
unzip gapit-htmlgraphics-panel-<version>.zip
mv gapit-htmlgraphics-panel /var/lib/grafana/plugins
  1. Restart the Grafana server to load the plugin

Docker compose

version: '3'
services:
grafana:
image: grafana/grafana
container_name: grafana
restart: always
networks:
- grafana
ports:
- 3000:3000
environment:
- GF_INSTALL_PLUGINS=gapit-htmlgraphics-panel

networks:
grafana:
name: grafana