Grafanaのpluginをインストール
homebrewを使ってmacOSにgrafanaをインストールし、追加でpluginをインストールしようとしたら以下のエラーが発生した。
エラー
% grafana cli plugins install simpod-json-datasource
Error: ✗ pluginsDir (/usr/local/var/lib/grafana/plugins) is not a writable directory
対策
--pluginsDir
でpluginのインストールパスを指定して実行。
% grafana cli --pluginsDir "/opt/homebrew/var/lib/grafana/plugins" plugins install simpod-json-datasource
✔ Downloaded and extracted simpod-json-datasource v0.6.3 zip successfully to /opt/homebrew/var/lib/grafana/plugins/simpod-json-datasource
Please restart Grafana after installing or removing plugins. Refer to Grafana documentation for instructions if necessary.
その後、サービスを再起動する。
% brew services restart grafana
Intel SiliconとApple Siliconでインストールパスが異なるようだ。