Graphite and Grafana
Install
- apt-get install graphite-web graphite-carbon libapache2-mod-wsgi
Enable
- icinga2 feature enable graphite
- systemctl restart icinga2.service
Look
- ls -l /var/lib/graphite/whisper/icinga2/
User Auth for Graphite
- graphite-manage syncdb
- chown _graphite:_graphite /var/lib/graphite/graphite.db
Module for Apache2
- a2enmod wsgi
Set Port 8000
- echo Listen 8000 >> /etc/apache2/ports.conf"
- cp /usr/share/graphite-web/apache2-graphite.conf /etc/apache2/sites-available/graphite.conf
- sed -i.org -e "/VirtualHost/s/:80/:8000/" /etc/apache2/sites-available/graphite.conf
- a2ensite graphite
Install Grafana
- cat <<EOF >/etc/apt/sources.list.d/grafana.list
- deb https://packagecloud.io/grafana/stable/debian/ wheezy main
- EOF
- curl -s https://packagecloud.io/gpg.key | sudo apt-key add -
- apt-get update
- systemctl start grafana-server
Access
Graphite
- http://<HOST>:8000
Grafana
- http://<HOST>:3000