Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Install specific version of a plugin with Grafana-cli?

I came across an issue where I need to install a specific version of a plugin in Grafana, I tried command grafana-cli plugins install jdbranham-diagram-panel --version=1.6.1 which didn't work. I am trying to install jdbranham-diagram-panel plugin's 1.6.1 version in my system.

like image 872
RavinderSingh13 Avatar asked Oct 29 '25 09:10

RavinderSingh13


1 Answers

Following command should do the trick.

grafana-cli plugins install jdbranham-diagram-panel 1.6.1

In above command I needed to install plugin named jdbranham-diagram-panel with version 1.6.1 so we can use above command to do so.

Basically syntax of installing any plugin with specific version will become like:

grafana-cli plugins install plugin_name  plugin_version
like image 104
RavinderSingh13 Avatar answered Nov 01 '25 09:11

RavinderSingh13