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
]# 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.
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