Prometheus Monitoring Tutorial
A simple 10 minute tutorial to setup a Prometheus monitoring stack. Create a Docker stack that includes Prometheus, Grafana, and AlertManager with a PagerTree integration.
Last updated
Was this helpful?
A simple 10 minute tutorial to setup a Prometheus monitoring stack. Create a Docker stack that includes Prometheus, Grafana, and AlertManager with a PagerTree integration.
Last updated
Was this helpful?
In this post, I will walk you through creating a simple monitoring stack, connecting it to for pretty dashboards, and finally configuring alerts via PagerTree.
If you would like a video to follow along instead, you can see it on . You can find all the code for this stack on .
The first thing we’ll do is a machine up and running for this solution. This tutorial assumes you will be using Ubuntu 16.04.
Once you’ve created the Ubuntu server, run the following command in the shell terminal:
At this point you’ll have automagically deployed the entire Prometheus, Grafana, and Alert Manager stack. You can now access the Grafana dashboard from your browser at:
Address: http://<Host IP Address>:3000
Username: admin
Password: 9uT46ZKE
Awesome! Now if you navigate to the Dashboards in Grafana you will see data populating and some nice looking graphs.
Ping Dashboard
This dashboard monitors a couple websites for uptime.
System Monitor Dashboard
This dashboard monitors the load on the machine that is running your Prometheus stack.
Now while the dashboards are cool, it would be even cooler if we were able to get alerted when something went wrong. Luckily for us, this project will create an alert after 30 seconds of high CPU. So let’s try to make use of it.
Click the Prometheus Logo.
Fill out the following:
Name
Appropriate urgency for the Prometheus alerts
A team alerts from Prometheus should be assigned to
Click Create button
Copy the endpoint URL
Now we want to modify the alert manager configuration to make use of our PagerTree Webhook. Run the following command and make sure to replace <Your PagerTree Webhook URL>
with the you copied.
After you have run the configuration script, restart the stack with the following command:
In order for us to get an alert we’ll wan to simulate some sort of Alert Worthy Incident. From the shell terminal, run the following command:
Now we’ll wait for 30 seconds or so, and if you’ve followed all the steps correctly you should get a notification saying something like Instance {{ $labels.instance }} under high load
.
If you are reading this give yourself a pat on the back. Good job! You’ve successfully deployed a Prometheus monitoring system, hooked it up to Grafana, and configured and alerts to go to your PagerTree account.
I like for small tutorials like this one.
If you don’t already have an account, use to create an account and get $10 in credits.
If you don’t know how to create a Digital Ocean droplet or SSH into the machine you can follow .
Since the release of Grafana 5.x, Grafana supports data sources and dashboards. We’ve updated the repo for Grafana to auto provision the Prometheus data source and dashboards. Please continue to the next section, .
At this point you’ll then 2 dashboards. They are pretty cool. Check them out. When your ready, head down to the .
Create a .
This project is intended just to be a quick tutorial. Before being production worthy, several should be implemented.