GithubHelp home page GithubHelp logo

prometheus-docker's Introduction

Prometheus in Docker

This effort is to help me understand on how to setup prometheus server, push gateway and its alert manager from start to end without any tools from the market.

I would've simply used the docker images which prometheus gives, however this excercise is purely for my own learning purpose on how things work.

Setup

  • Create a docker network for this entire setup first: docker network create --driver=bridge prom-network
  • Clone this repo
  • From the parent directory, run:
docker image build -t vimal/prometheus:1.0 .
cd node-exporter-docker
docker image build -t vimal/node-exporter:1.0 .
cd ../alert-manager-docker
docker image build -t vimal/alertmanager:1.0 .
cd ..
  • Create the prometheus container:
docker run --name prometheus-vimal --network prom-network -p 9090:9090 -v /Users/vimal/development/playground/prometheus-playground/prom-docker/prometheus.yml:/usr/mware/prometheus/prometheus.yml -v /Users/vimal/development/playground/prometheus-playground/prom-docker/alert.rules.yml:/usr/mware/prometheus/alert.rules.yml --rm -dt vimal/prometheus:1.0

I've created two volume points here, one for prometheus configuration and another for alert rules. Please refer those files

  • Create the node exporter container:
docker run --name node-exporter-vimal --network prom-network -p 9100:9100 --rm -dt vimal/node-exporter:1.0
  • Create the alert manager container:
docker run --name alertmanager-vimal --network prom-network -p 9093:9093 --rm -dt vimal/alertmanager:1.0

prometheus-docker's People

Contributors

email2vimalraj avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.