Before you start, make sure prometheus is set to true in .gaia/config/config.toml. Manual Installation 1. Install Grafana For demonstration purposes, this tutorial will assume an amd64-based device running Linux is used. $ wget https://dl.grafana.com/oss/release/grafana_5.4.2_amd64.deb
$ sudo apt-get install -y adduser libfontconfig
$ sudo dpkg -i grafana_5.4.2_arm64.deb 2. Start Grafana Server As a Service Choose either one of the approaches down below: Option 1: via systemd $ systemctl daemon-reload
$ systemctl start grafana-server
$ systemctl status grafana-server Optionally, you may make grafana-server start at boot $ sudo systemctl enable grafana-server.service Option 2: init.d service $ sudo service grafana-server start Optionally, you may make grafana-server start at boot $ sudo update-rc.d grafana-server defaults 3. Download Prometheus $ wget https://github.com/prometheus/prometheus/releases/download/v2.6.0/prometheus-2.6.0.linux-amd64.tar.gz $ tar xvfz prometheus-2.6.0.linux-