Grafana is a Open Source Dashboarding service that allows you to monitor, analyze and graph metrics from datasources such as prometheus, influxdb, elasticsearch, aws cloudwatch, and many more.
Not only is grafana amazing, its super pretty!
Example of how a dashboard might look like:
What are we doing today
In this tutorial we will setup grafana on linux. If you have not set up prometheus, follow this blogpost to install prometheus.
Install Grafana
I will be demonstrating how to install grafana on debian, if you have another operating system, head over to grafana documentation for other supported operating systems.
Get the gpg key:
$ curl https://packages.grafana.com/gpg.key | sudo apt-key add -
Import the public keys:
$ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8C8C34C524098CB6
Add the latest stable packages to your repository:
$ add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
Install a pre-requirement package:
$ apt install apt-transport-https -y
Update the repository index and install grafana:
$ apt update && sudo apt install grafana -y
Once grafana is installed, start the service:
$ service grafana-server start
Then enable the service on boot:
$ update-rc.d grafana-server defaults
If you want to control the service via systemd:
$ systemctl daemon-reload
$ systemctl start grafana-server
$ systemctl status grafana-server
Optional: Nginx Reverse Proxy
If you want to front your grafana instance with a nginx reverse proxy:
$ cat /etc/nginx/sites-enabled/grafana
server {
listen 80;
server_name grafana.domain.com;
location / {
proxy_pass http://127.0.0.1:3000/;
proxy_redirect http://127.0.0.1:3000/ /;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
}
Then restart nginx:
$ systemctl restart nginx
Access Grafana
If you are accessing grafana directly, access grafana on http://your-grafana-ip:3000/
and your username is admin
and password admin
Dashboarding Tutorials
Have a look at this screencast where the guys from grafana show you how to build dashboards:
Also have a look at their public repository of dashboards
For more tutorials on prometheus and metrics have a look at #prometheus
Comments