This was a bit of a fiddle so in an effeort to help anybody else trying this - I’m not sure I remember every stage but it might give someone a start.
I already have datayours installed and 9 whisper metrics recording to files in the LOCAL_DATA_DIR - actually its a mountpoint for my Synology NAS but it shouldn’t matter
I have the root diectory of the RPI3 mapped to a drive on my windows machine which helps copying files to the rpi
So SSH into the pi running openLuup and type the following
sudo apt-get update
sudo apt-get install adduser libfontconfig
now this next bit failed for me but it might have been a temporary problem and it didnt download the deb file - so you get an error with the second command
curl -L https://github.com/fg2it/grafana-on-raspberry/releases/download/v4.0.1/grafana_4.0.1-1480722482_armhf.deb -o /tmp/grafana_4.0.1-1480722482_armhf.deb
sudo dpkg -i /tmp/grafana_4.0.1-1480722482_armhf.deb
So as an alternative I used my windows machine to download from here
https://bintray.com/fg2it/deb/grafana-on-raspberry/v4.0.2
this file
grafana_4.0.2-1481228559_armhf.deband place it in the /tmp directory on the rpi - this is version 4.0.2 rather than 4.0.1 so I used this to install [code]sudo dpdg -i /tmp/grafana_4.0.2-1481228559_armhf.deb[/code]
this results in
Preparing to unpack ../grafana etc Unpacking garfana (4.0.2...... Setting up grafana Adding system user 'grafana' (UID ###) Not creating home directory '/usr/share/grafana'---- not sure about the last bit but I didnt do anything about it
At this point i just started the server using
sudo /bin/systemctl start grafana-server
(After I got it all up and running I went back and did
sudo /bin/systemctl daemon-reload
sudo /bin/systemctl start grafana-server
so that it restarted on reboot)
Now not sure whether the next is needed but I assume it started the grafana web server
./usr/sbin/grafana-server web
Then from my windows machine I used
http://OpenLuppIP:3000
Yay - Grafana dashboard I created a user/password and logged in.
Initially I couldn’t set up a data source so I created another organisation so I was an admin user and I could then use graphite to specify a datasource (http://localhost:3480)
I then used this video to give me a start create a dashboard
https://www.youtube.com/watch?v=sKNZMtoSHN4&index=7&list=PLDGkOdUX1Ujo3wHw9-z5Vo12YLqXRjzg2
hope this helps somebody