grafana-aws-athena-datasource
grafana-aws-athena-datasource copied to clipboard
Where are the build instructions?
I am looking for build instructions? Could you help? Somewhere it says
Follow Installing Plugins Manually steps, and install plugin from released zip fil
This is not quite useful and confusing.
Simply run:
grafana-cli --pluginUrl https://github.com/mtanda/grafana-aws-athena-datasource/releases/download/2.2.3/grafana-aws-athena-datasource-2.2.3.zip plugins install grafana-aws-athena-datasource
And update the configuration to allow non signed plugins (e.g. via the environment variable GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=mtanda-aws-athena-datasource)
Since the v2.2.7 has been released, change the command to:
grafana-cli --pluginUrl https://github.com/mtanda/grafana-aws-athena-datasource/releases/download/2.2.7/grafana-aws-athena-datasource-2.2.7.zip plugins install grafana-aws-athena-datasource
It takes me sometime to enable the plugin for Grafana docker. just share fyi
docker run -d --name=grafana -p 3000:3000 -e GF_PLUGINS_ALLOW_LOADING_UNSIGNED_PLUGINS=mtanda-aws-athena-datasource grafana/grafana
docker exec -it grafana /bin/bash
# inside container
grafana-cli --pluginUrl https://github.com/mtanda/grafana-aws-athena-datasource/releases/download/2.2.7/grafana-aws-athena-datasource-2.2.7.zip plugins install grafana-aws-athena-datasource
exit
# outside container
docker restart grafana
Is it possible to consolidate these instructions in a README.md file?