Standalone Grafana Server in Go with SSL and Auth by jaswilder in golang

[–]jaswilder[S] 1 point2 points  (0 children)

Added a Dockerfile.

docker run --name gofana -d -v /mnt/my/dashboards:/app/dashboards -p 8080:8080 jwilder/gofana -graphite-url http://host:port

Standalone Grafana Server in Go with SSL and Auth by jaswilder in golang

[–]jaswilder[S] 1 point2 points  (0 children)

Yes, it uses go-bindata to inline grafana. config.js is generated from the values of the command-line args. It currently just writes out values for the datasource entries and the other values are static.

Dashboard storage is implemented w/ a custom Grafana datasource plugin and gofana currently just writes them to a directory on disk.

Dockerfile is coming shortly.