Prometheus
Overview
This installation happens on the
dsb-node-01
.
According to Prometheus' Website, Prometheus is an open-source systems monitoring and alerting toolkit originally built at SoundCloud. It is designed for reliability and scalability, collecting metrics from configured targets at given intervals, evaluating rule expressions, displaying the results, and triggering alerts if needed. This guide will walk you through the steps to install and configure Prometheus using Docker Compose on your system.
Prerequisites
-
Install Docker
-
Install Docker using Snap:
sudo snap install docker
-
-
Create Docker Group and Add User to It
-
Create a Docker group and add your user to it:
sudo groupadd docker
sudo usermod -aG docker $USER
sudo reboot
-
Installation Steps
-
Create a Docker-Compose File for Prometheus
-
Create the necessary directories and Docker Compose file:
mkdir -p ~/apps/prometheus
touch ~/apps/prometheus/docker-compose.yml
-
-
Copy and Save the Docker-Compose Configuration
-
Use the following configuration in your
docker-compose.yml
file:version: "3.7"
services:
prometheus:
image: prom/prometheus:latest
container_name: prometheus
volumes:
- prometheus_data:/prometheus
- ./prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- "9090:9090"
restart: always
network_mode: host
volumes:
prometheus_data: -
Open the file with nano or your preferred text editor and paste the configuration:
nano ~/apps/prometheus/docker-compose.yml
-
Save and close the file.
-
-
Create a Custom
prometheus.yml
File-
Create the
prometheus.yml
file in the Prometheus directory:touch ~/apps/prometheus/prometheus.yml
-