docker-compose setup to deploy prometheus.
Go to file
huwenfeng 11b315c7bd share -> export -> save to file
get the template by this method : share -> export -> save to file
2017-08-08 14:42:18 +08:00
alertmanager update alertmanger config 2016-07-27 18:49:38 +08:00
dashboards Updated time range to from: now-1h to now to fix no data issues 2016-08-03 07:34:09 +02:00
images 1 - added Import Dashboard screenshot 2016-07-14 14:19:55 +02:00
prometheus add slack integration 2016-07-27 18:27:31 +08:00
.travis.yml added travis testing to this awesome project 2017-06-21 14:42:09 +02:00
Grafana Dashboard With Service.json share -> export -> save to file 2017-08-08 14:42:18 +08:00
Grafana_Dashboard.json updated dashboard 2016-08-25 16:04:29 +02:00
HighLoadDashboard.json add alert related dashboard json file 2016-07-27 18:48:24 +08:00
README.md Build image was using wrong branch 2017-07-12 08:58:05 +02:00
config.monitoring added environment config file for the stack. only used by grafana so far 2016-07-13 14:37:04 +02:00
docker-compose.yml make bind mounts readonly, you don't want some node-exporter vulnerability lead to write access on your node 2017-04-16 10:29:29 +04:00

README.md

Build Status

A Prometheus & Grafana docker-compose stack

Here's a quick start to stand-up a Prometheus stack containing Prometheus, Grafana and Node scraper to monitor your Docker infrastructure. A big shoutout to philicious for kicking this project off!

Pre-requisites

Before we get started installing the Prometheus stack. Ensure you install the latest version of docker and docker-compose on your Docker host machine. This has also been tested with Docker for Mac and it works well.

Installation & Configuration

Clone the project locally to your Docker host.

If you would like to change which targets should be monitored or make configuration changes edit the /prometheus/prometheus.yml file. The targets section is where you define what should be monitored by Prometheus. The names defined in this file are actually sourced from the service name in the docker-compose file. If you wish to change names of the services you can add the "container_name" parameter in the docker-compose.yml file.

Once configurations are done let's start it up. From the /prometheus project directory run the following command:

$ docker-compose up -d

That's it. docker-compose builds the entire Grafa and Prometheus stack automagically.

The Grafana Dashboard is now accessible via: http://<Host IP Address>:3000 for example http://192.168.10.1:3000

username - admin password - foobar (Password is stored in the config.monitoring env file)

Post Configuration

Now we need to create the Prometheus Datasource in order to connect Grafana to Prometheus

  • Click the Grafana Menu at the top left corner (looks like a fireball)
  • Click Data Sources
  • Click the green button Add Data Source.

Alerting

Alerting has been added to the stack with Slack integration. 2 Alerts have been added and are managed

Alerts - prometheus/alert.rules Slack configuration - alertmanager/config.yml

The Slack configuration requires to build a custom integration.

  • Open your slack team in your browser https://<your-slack-team>.slack.com/apps
  • Click build in the upper right corner
  • Make a Custom integration
  • Choose Incoming Web Hooks
  • Select which channel
  • Click on Add Incoming WebHooks integration
  • Copy the Webhook URL into the alertmanager/config.yml URL section
  • Fill in Slack username and channel

View Prometheus alerts http://<Host IP Address>:9090/alerts View Alert Manager http://<Host IP Address>:9093

Test Alerts

A quick test for your alerts is to stop a service. Stop the node_exporter container and you should notice shortly the alert arrive in Slack. Also check the alerts in both the Alert Manager and Prometheus Alerts just to understand how they flow through the system.

High load test alert - docker run --rm -it busybox sh -c "while true; do :; done"

Let this run for a few minutes and you will notice the load alert appear.

Install Dashboard

I created a Dashboard template which is available on Grafana Docker Dashboard. Simply download the dashboard and select from the Grafana menu -> Dashboards -> Import

This dashboard is intended to help you get started with monitoring. If you have any changes you would like to see in the Dashboard let me know so I can update Grafana site as well.

Here's the Dashboard Template

Grafana Dashboard

Grafana Dashboard - dashboards/Grana_Dashboad.json Alerting Dashboard - dashboards/System_Monitoring.json

Troubleshooting

It appears some people have reported no data appearing in Grafana. If this is happening to you be sure to check the time range being queried within Grafana to ensure it is using Today's date with current time.