diff --git a/docs/sources/installation/index.md b/docs/sources/installation/index.md index 4f5c02a..0c3f0ad 100644 --- a/docs/sources/installation/index.md +++ b/docs/sources/installation/index.md @@ -3,6 +3,26 @@ page_description: Installation instructions for Grafana-Zabbix. # Installation +## Using grafana-cli tool +Get list of available plugins + +```sh +grafana-cli plugins list-remote +``` + +Install zabbix plugin + +```sh +grafana-cli plugins install alexanderzobnin-zabbix-app +``` + +Restart grafana after installing plugins +```sh +service grafana-server restart +``` + +Read more about installing plugins in [Grafana docs](http://docs.grafana.org/plugins/installation/) + ## From special repo You can use [grafana-zabbix-app](https://github.com/alexanderzobnin/grafana-zabbix-app) repo, which contains latest builded version of plugin. @@ -21,21 +41,6 @@ git pull service grafana-server restart ``` -## Using grafana-cli tool -Get list of available plugins - -```sh -grafana-cli plugins list-remote -``` - -Install zabbix plugin - -```sh -grafana-cli plugins install zabbix-app -``` - -Read more in [Grafana docs](http://docs.grafana.org/plugins/installation/) - ## Building from sources You need NodeJS, npm and Grunt for building plugin from sources. Read more about required versions in [Grafana docs](http://docs.grafana.org/project/building_from_source/). @@ -66,12 +71,6 @@ grunt Restart Grafana server ```sh -sudo service grafana-server restart +service grafana-server restart systemctl restart grafana-server ``` - -## From release package -Download [latest release](https://github.com/alexanderzobnin/grafana-zabbix/releases/latest) -for relative Grafana version. Unpack archive and copy *grafana-zabbix* into your grafana -plugins directory (default `/var/lib/grafana/plugins` if your installing grafana with package). -Restart grafana-server and the plugin should be automatically detected and used.