From b98b9fedce8bcc07a6d05a326447e39b715dde54 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Thu, 2 Feb 2017 11:46:12 +0300 Subject: [PATCH] Update docs (deprecate special repo with builded plugin). --- docs/sources/installation/index.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/sources/installation/index.md b/docs/sources/installation/index.md index 0c3f0ad..28b77cd 100644 --- a/docs/sources/installation/index.md +++ b/docs/sources/installation/index.md @@ -23,7 +23,27 @@ service grafana-server restart 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 +**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, which contains latest builded version of plugin. @@ -72,5 +92,4 @@ Restart Grafana server ```sh service grafana-server restart -systemctl restart grafana-server ```