Skip to content

Infrastructure monitoring solution using Prometheus stack in docker compose.

License

Notifications You must be signed in to change notification settings

xplorer-io/Infrastructure-Monitoring

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Infrastructure monitoring using prometheus and grafana in docker compose

Introduction

What is Prometheus ?

Prometheus is :

  1. Open source monitoring and alerting toolkit, originally build by sound cloud.
  2. Currently managed under CNCF.
  3. Scrapes metrics from servers which are exposing metrics data.
  4. Written in Go.

Features of Prometheus

The features of prometheus are:

  1. Easy to configure and deploy
  2. Using TSDB (Time Series Database)
  3. Multi dimensional data model with time series data identified by metric name and key / value pair
  4. Targets are discovered via service discovery or static configuration.
  5. Data collection over HTTP

Components of Prometheus stack

To run prometheus ecosystem, following things are required:

  1. Prometheus server for scraping metrics and stores as time series data
  2. Push gateway for identifying short lived jobs.
  3. Exporters which expose their metrics to an HTTP endpoint and prometheus accesses these endpoint to scrape those data.
  4. Alertmanager to handle alerts

Prometheus ecosystem architecture

In prometheus ecosystem following things are generally used:

  1. Prometheus server to scrape data and store in time series.
  2. Push gateway for gathering metrics from shot lived jobs.
  3. Client libraries for instrumenting application code.
  4. Exporters like node exporter which expo
  5. Grafana for data visualization

Prometheus gathers metrics from jobs configured in prometheus configuration and stores all scraped data locally and run rules over this data to either aggregate and record new time series from existing data or generated alerts. Grafana or any other data visualization toolo

Deployment

Prometheus - 9090
Grafana - 9091
cAdvisor - 9092
Pushgateway - 9093
Node Exporter - 9100

Clone respotitory

git clone https://github.com/pgaijin66/Infrastructure-Monitoring.git

Bootstrapping

If you are working on a vanilla server. you might want to run the bootstrapping script. This is check your operating system and install all the necessary libraries and packages along with docker and docker-compose.

If you have already installed docker and docker-compose you can ignore this step.

cd Infrastructure-Monitoring
sudo chmod +x Bootstrap/bootstrap.sh
sudo bash Bootstrap/bootstrap.sh

Adding grafana credentials

Add username and password for grafana in infra-monitoring.yml file

      - GF_SECURITY_ADMIN_USER=devops
      - GF_SECURITY_ADMIN_PASSWORD=iamhappytoday

Running Monitoring stack

Make sure you are in directory which has infra-monitoring.yml and run following commands.

sudo docker-compose -f infra-monitoring.yml up -d

Stopping stack

Make sure you are in directory which has infra-monitoring.yml and run following commands.

sudo docker-compose -f infra-monitoring.yml down

About

Infrastructure monitoring solution using Prometheus stack in docker compose.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%