oci-grafana-metrics icon indicating copy to clipboard operation
oci-grafana-metrics copied to clipboard

Grafana 500 error installing oci-datasource plugin

Open mvandervliet opened this issue 5 years ago • 4 comments

When installing the oci-datasource plugin, an api call is made to load the plugin metadata: https://grafana.com/api/plugins/oci-datasource

The response includes an invalid url for the repository, which results in an error when attempting to fetch release/1.0.2

https://grafana.com/api/plugins/oci-datasource/versions/1.0.2/download

mvandervliet avatar Oct 28 '19 16:10 mvandervliet

  • 1 for issue

{ "code": "Internal", "message": "Couldn't load https://api.github.com/repos/grafana/oci-datasource/zipball/575707096aecfd6ad416630b0654d73fcd1f4d0b: 404 {"message":"Not Found","documentation_url":"https://developer.github.com/v3/repos/contents/#get-archive-link"}" }

dvdwende avatar Nov 08 '19 00:11 dvdwende

I'm also getting the same issue, can anyone have any idea on it.

sudheer-kancharla avatar Nov 18 '19 07:11 sudheer-kancharla

What worked for me were the steps (in my case Linux) described in the github doc readme's. In other words, I did not use the "grafana method" but used "wget":

Download the OCI Grafana Plugin:

wget https://github.com/oracle/oci-grafana-plugin/releases/download/V1.0.4/plugin.tar.

Create a directory and install the plugin: mkdir oci && tar -C oci -xvf plugin.tar and then remove the tarball: rm plugin.tar.

MGralike avatar Nov 18 '19 11:11 MGralike

Thanks for the info.

dvdwende avatar Nov 18 '19 20:11 dvdwende