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.
Asked
Active
Viewed 3,827 times
2
markalex
- 8,623
- 2
- 7
- 32
RavinderSingh13
- 130,504
- 14
- 57
- 93
1 Answers
7
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
RavinderSingh13
- 130,504
- 14
- 57
- 93