2-grafana插件安装

grafana.jpg

grafana插件安装

插件安装分为两种方式:在线安装与离线安装

在线安装插件

在线安装插件可以在grafana的web界面进行安装,找到需要的插件进行安装即可

还可以使用grafana-cli进行安装,使用grafana-cli安装插件后需要将grafana服务重启

1
2
3
4
5
6
7
8
9
10
grafana-cli plugins COMMANDS
COMMANDS:
install install <plugin id> <plugin version (optional)>,安装指定插件,可以指定插件的版本
list-remote list remote available plugins,查看可以安装的插件
list-versions list-versions <plugin id>,查看指定插件的版本
update, upgrade update <plugin id>,更新插件
update-all, upgrade-all update all your installed plugins
ls list all installed plugins,查看已经安装的插件
uninstall, remove uninstall <plugin id>,卸载插件
help, h Shows a list of commands or help for one command

插件默认安装在/var/lib/grafana/plugins下,可以指定安装目录进行安装,需要添加参数 --pluginsDir=PATH,也可以修改/usr/sbin/grafana-cli中的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
]# more /usr/sbin/grafana-cli 
#! /usr/bin/env bash

# Wrapper for the grafana-cli binary
# This file serves as a wrapper for the grafana-cli binary. It ensures we set
# the system-wide Grafana configuration that was bundled with the package as we
# use the binary.

DEFAULT=/etc/default/grafana

GRAFANA_HOME=/usr/share/grafana
CONF_DIR=/etc/grafana
DATA_DIR=/var/lib/grafana
PLUGINS_DIR=/var/lib/grafana/plugins
LOG_DIR=/var/log/grafana

CONF_FILE=$CONF_DIR/grafana.ini
PROVISIONING_CFG_DIR=$CONF_DIR/provisioning

EXECUTABLE=$GRAFANA_HOME/bin/grafana-cli

if [ ! -x $EXECUTABLE ]; then
echo "Program not installed or not executable"
exit 5
fi

# overwrite settings from default file
if [ -f "$DEFAULT" ]; then
. "$DEFAULT"
fi

OPTS="--homepath=${GRAFANA_HOME} \
--config=${CONF_FILE} \
--pluginsDir=${PLUGINS_DIR} \
--configOverrides='cfg:default.paths.provisioning=$PROVISIONING_CFG_DIR \
cfg:default.paths.data=${DATA_DIR} \
cfg:default.paths.logs=${LOG_DIR} \
cfg:default.paths.plugins=${PLUGINS_DIR}'"

eval $EXECUTABLE "$OPTS" '$@'

grafana的环境变量在多个配合文件中有相同定义需要全都修改,有些不方便

离线安装

离线安装可以在官网插件中找到对应的插件安装包,下载后为一个压缩包,将压缩包解压后放在/var/lib/grafana/plugins下即可,注意不要忘记重启