Update docs (deprecate special repo with builded plugin).

This commit is contained in:
Alexander Zobnin
2017-02-02 11:46:12 +03:00
parent 0b3f537341
commit b98b9fedce

View File

@@ -23,7 +23,27 @@ service grafana-server restart
Read more about installing plugins in [Grafana docs](http://docs.grafana.org/plugins/installation/) Read more about installing plugins in [Grafana docs](http://docs.grafana.org/plugins/installation/)
## From github repo
Just clone plugin repo into your plugin directory
```sh
cd /var/lib/grafana/plugins
git clone https://github.com/alexanderzobnin/grafana-zabbix
```
Then restart grafana server.
```sh
service grafana-server restart
```
Using this way you can easy upgrade plugin just running
```sh
cd /var/lib/grafana/plugins/grafana-zabbix-app
git pull
service grafana-server restart
```
## From special repo ## From special repo
**WARNING!** This way is deprecated. Now main repo (https://github.com/alexanderzobnin/grafana-zabbix) contains builded pludin.
You can use [grafana-zabbix-app](https://github.com/alexanderzobnin/grafana-zabbix-app) repo, You can use [grafana-zabbix-app](https://github.com/alexanderzobnin/grafana-zabbix-app) repo,
which contains latest builded version of plugin. which contains latest builded version of plugin.
@@ -72,5 +92,4 @@ Restart Grafana server
```sh ```sh
service grafana-server restart service grafana-server restart
systemctl restart grafana-server
``` ```