docker-compose setup to deploy prometheus.
Go to file
Brian Christner d630682e79 Merge branch 'master' of https://github.com/vegasbrianc/prometheus 2015-08-19 11:17:52 +02:00
prom added prometheus.yml config file. Kinda important 2015-08-18 23:29:25 +02:00
Dashboard_example.png Added Dashboard screenshot 2015-08-19 11:17:08 +02:00
New_server.png adjusted screenshot size 2015-08-19 11:10:53 +02:00
README.md Update README.md 2015-08-19 11:11:32 +02:00
docker-compose.yml finally fixed the compose file. Changed the Dockerfile to pull the Prometheus image then inject the yml config changes 2015-08-18 23:28:12 +02:00

README.md

A Prometheus docker-compose stack

Here's a quick start to stand-up a Prometheus stack containing Prometheus, container-exporter, and the Prometheus Dashboard.

##Pre-requisites Before we get started installing the Prometheus stack. Ensure you install docker-compose on your Docker host machine.

##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 /prom/prometheus.yml file. The targets section. The targets section is where you define which componets(data exporters) 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 change 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 commands:

$ docker-compose up
$ docker-compose start

The Prometheus stack should now be running. To access the different components:

Prometheus: http://<Host IP Address>:9090> for example http://192.168.10.1:9090

Prometheus Dashboard: http://<Host IP Address>:3000 for example http://192.168.10.1:3000

Post Configuration

Now we need to connect the Prometheus Dashboard to the Prometheus installation. Access the Prom Dash as mentioned above.

  • Click the "Server" Menu at the top
  • Click "New Server"
  • Input desired name, Prometheus server IP and port (http://<Host IP Address>:9090> ) and select Prometheus for server type. PromDash New Server

ToDo

  • Integrate and configure Alerting.