grafana-aws-athena-datasource icon indicating copy to clipboard operation
grafana-aws-athena-datasource copied to clipboard

Where are the build instructions?

Open itharavi opened this issue 5 years ago • 4 comments

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.

itharavi avatar Jun 22 '20 17:06 itharavi

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)

armona avatar Jul 08 '20 10:07 armona

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

kevinisbest avatar Oct 14 '20 06:10 kevinisbest

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

jychen7 avatar Nov 14 '20 23:11 jychen7

Is it possible to consolidate these instructions in a README.md file?

wsgomes avatar Nov 27 '20 18:11 wsgomes