grafana / google-bigquery-datasource

Google BigQuery Datasource Plugin for Grafana.
Apache License 2.0
26 stars 13 forks source link

grafana-cli install shows not found error #119

Closed blackavec closed 2 years ago

blackavec commented 2 years ago

hi, i try to install this by

grafana-cli plugins install grafana-bigquery-datasource

but it shows me this:

Error: ✗ Failed to find requested plugin, check if the plugin_id is correct: 404 not found error

NAME:
   Grafana cli plugins install - install <plugin id> <plugin version (optional)>

USAGE:
   Grafana cli plugins install [arguments...]

i'm running this command on docker container

blackavec commented 2 years ago

this is also how i run the grafana on docker-compose:

  grafana:
    image: grafana/grafana:6.5.0
    volumes:
      - ~/.config/gcloud/:/root/.config/gcloud
      - .grafana:/var/lib/grafana
    environment:
      - "GF_INSTALL_PLUGINS=grafana-bigquery-datasource"
      - "GF_SECURITY_ADMIN_USER=****"
      - "GF_SECURITY_ADMIN_PASSWORD=******"
      - "GF_SECURITY_DISABLE_GRAVATAR=true"
    ports:
      - 3000:3000
dprokop commented 2 years ago

@blackavec the error appears as you are trying to use the plugin in Grafana 6.x. Grafana 8.x is required for it to work.

The error message was improved in Grafana 8.0.6 as of this PR: https://github.com/grafana/grafana/pull/36556