Grafana Installation
we use same ubuntu 16.04.03 machine for grafana installation.
Lets install the latest stable release.
vi /etc/apt/sources.list
# add the below line
deb https://packagecloud.io/grafana/stable/debian/ jessie main
curl https://packagecloud.io/gpg.key | sudo apt-key add -
sudo apt-get update
sudo apt-get install grafana
Configuration
# edit the config file and enable the adminuser and password
sudo vi /etc/grafana/grafana.ini
[security]
# default admin user, created on startup
admin_user = admin
# default admin password, can be changed before first start of grafana, or in profile settings
admin_password = admin
Start the service
sudo service grafana-server start
sudo update-rc.d grafana-server defaults
Open the browser port 3000 , login with admin/admin
Setup the data source:
Type: Graphite
Access: Proxy
Thats all.
Reference: