grafana / kubernetes-app

A set of dashboards and panels for kubernetes.
https://grafana.com/plugins/grafana-kubernetes-app
Apache License 2.0
401 stars 149 forks source link

Broken icon for grafana-kubernetes datasource #25

Open aijanai opened 6 years ago

aijanai commented 6 years ago

Grafana 5.1.3.

When going /datasources page, the icon for the datasource http://HOSTNAME/public/plugins/grafana-kubernetes-datasource/img/logo.svgalways 404.

Grafana is running as a pod within K8s.

The logo is present in the repo, but the app seems to point at a wrong path.

str1k3r commented 6 years ago

Same here.

gudzenkov commented 5 years ago

fixed by cp -r src/datasource/img/ dist/datasource/

bertoost commented 5 years ago

same here. Logo path should be with grafana-kubernetes-app/ instead of grafana-kubernetes-datasource/. Should be an easy fix right?? Why is this still open...

image

adacaccia commented 4 years ago

Fixed by: cp src/datasource/img/logo.svg dist/datasource/ as in @gudzenkov comment.

But as the image link got an extra "/img" path, I've had to do also: mkdir img; mv logo.svg img/

while in the /var/lib/grafana/plugins/grafana-kubernetes-app-31da38a folder.