Practical solution for Prometheus container deployment

Practical solution for Prometheus container deployment

environment

Hostname IP address Serve
Prometheus 192.168.237.137 prometheus、grafana
node-exporter 192.168.237.131 node_exporter

Containerized deployment of Prometheus

1. Install Docker

[root@prometheus ~]# docker version
Client: Docker Engine - Community
 Version: 20.10.11
 API version: 1.41
 Go version: go1.16.9
 Git commit: dea9396
 Built: Thu Nov 18 00:36:58 2021
 OS/Arch: linux/amd64
 Context: default
 Experimental: true

Server: Docker Engine - Community
 Engine:
  Version: 20.10.11
  API version: 1.41 (minimum version 1.12)
  Go version: go1.16.9
  Git commit: 847da18
  Built: Thu Nov 18 00:35:20 2021
  OS/Arch: linux/amd64
  Experimental: false
 containerd:
  Version: 1.4.12
  GitCommit: 7b11cfaabd73bb80907dd23182b9347b4245eb5d
 runc:
  Version: 1.0.2
  GitCommit: v1.0.2-0-g52b36a2
 docker-init:
  Version: 0.19.0
  GitCommit: de40ad0

2. Run the prometheus container

//Pull the image [root@prometheus ~]# docker pull prom/prometheus
Using default tag: latest
latest: Pulling from prom/prometheus
3cb635b06aa2: Pull complete 
34f699df6fe0: Pull complete 
33d6c9635e0f: Pull complete 
f2af7323bed8: Pull complete 
c16675a6a294: Pull complete 
827843f6afe6: Pull complete 
3d272942eeaf: Pull complete 
7e785cfa34da: Pull complete 
05e324559e3b: Pull complete 
170620261a59: Pull complete 
ec35f5996032: Pull complete 
5509173eb708: Pull complete 
Digest: sha256:cb9817249c346d6cfadebe383ed3b3cd4c540f623db40c4ca00da2ada45259bb
Status: Downloaded newer image for prom/prometheus:latest
docker.io/prom/prometheus:latest

//Provide the default configuration file of prometheus in the /opt directory [root@prometheus ~]# ls /opt/
prometheus.yml

//Run container##--restart always Always restart, start automatically## Map the locally provided configuration file to the container, read-only in the ro container [root@prometheus ~]# docker run --name prometheus -d --restart always -p 9090:9090 -v /opt/prometheus.yml:/etc/prometheus/prometheus.yml:ro prom/prometheus:latest 
a0ba5535f0ea3b0f44574fd237802f2ef19f4624c3752c3bf8122a4d79a26428
[root@prometheus ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a0ba5535f0ea prom/prometheus:latest "/bin/prometheus --c…" 11 seconds ago Up 11 seconds 0.0.0.0:9090->9090/tcp, :::9090->9090/tcp prometheus

//View the port [root@prometheus ~]# ss -anltu
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process     
tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:*                    
tcp LISTEN 0 128 0.0.0.0:9090 0.0.0.0:*                    
tcp LISTEN 0 128 [::]:22 [::]:*                    
tcp LISTEN 0 128 [::]:9090 [::]:*                    

Use ip+9090/targets to access the prometheus default web page

insert image description here

Deploy node_exporter

//Download the installation package [root@node-exporter ~]# wget https://github.com/prometheus/node_exporter/releases/download/v1.3.0/node_exporter-1.3.0.linux-amd64.tar.gz
[root@node-exporter ~]# ls
anaconda-ks.cfg node_exporter-1.3.0.linux-amd64.tar.gz

//Unzip [root@node-exporter ~]# tar xf node_exporter-1.3.0.linux-amd64.tar.gz -C /usr/local/
[root@node-exporter ~]# mv /usr/local/node_exporter-1.3.0.linux-amd64/ /usr/local/node_exporter
[root@node-exporter ~]# ls /usr/local/
bin etc games include lib lib64 libexec node_exporter sbin share src

//Write the service file, start it and start it automatically[root@node-exporter ~]# cat /usr/lib/systemd/system/node_exporter.service
[unit]
Description=The node_exporter Server
After=network.target

[Service]
ExecStart=/usr/local/node_exporter/node_exporter
Restart=on-failure
RestartSec=15s
SyslogIdentifier=node_exporter

[Install]
WantedBy=multi-user.target
[root@node-exporter ~]# systemctl daemon-reload 
[root@node-exporter ~]# systemctl enable --now node_exporter.service 
Created symlink from /etc/systemd/system/multi-user.target.wants/node_exporter.service to /usr/lib/systemd/system/node_exporter.service.
[root@node-exporter ~]# systemctl status node_exporter.service 
● node_exporter.service
   Loaded: loaded (/usr/lib/systemd/system/node_exporter.service; enabled; vendor preset: disabled)
   Active: active (running) since Thursday 2021-12-30 19:26:59 CST; 8s ago
 Main PID: 27878 (node_exporter)
   CGroup: /system.slice/node_exporter.service
           └─27878 /usr/local/node_exporter/node_exporter

//View the port [root@node-exporter ~]# ss -anltu
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port              
tcp LISTEN 0 128 *:22 *:*                  
tcp LISTEN 0 128 [::]:22 [::]:*                  
tcp LISTEN 0 128 [::]:9100 [::]:*                  

## If node-exporter is deployed successfully, you can add nodes to the Prometheus host for monitoring

Add nodes to prometheus

Modify the local prometheus.yml file

//Modify the configuration file [root@prometheus ~]# tail -8 /opt/prometheus.yml 
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: "prometheus"
    static_configs:
      - targets: ["localhost:9090"]
  - job_name: "centos" //Specify a job name static_configs:
      - targets: ["192.168.237.131:9100"] //Specify the IP and port number of the node-exporter node## If there are multiple nodes - job_name: "centos"	
    static_configs:
      - targets: 
        - "192.168.237.131:9100"
        - "192.168.237.132:9100"
        - "192.168.237.133:9100"


//Restart the container and reread the configuration file [root@prometheus ~]# docker restart prometheus
Prometheus
[root@prometheus ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a0ba5535f0ea prom/prometheus:latest "/bin/prometheus --c…" 26 minutes ago Up 3 seconds 0.0.0.0:9090->9090/tcp, :::9090->9090/tcp prometheus

Visit the prometheus default web page
Node added successfully

insert image description here

Deploy the grafana drawing tool

//Pull the official image of grafan/grafan [root@prometheus ~]# docker pull grafana/grafana
Using default tag: latest
latest: Pulling from grafana/grafana
97518928ae5f: Pull complete 
5b58818b7f48: Pull complete 
d9a64d9fd162: Pull complete 
4e368e1b924c: Pull complete 
867f7fdd92d9: Pull complete 
387c55415012: Pull complete 
07f94c8f51cd: Pull complete 
ce8cf00ff6aa: Pull complete 
e44858b5f948: Pull completed 
4000fdbdd2a3: Pull complete 
Digest: sha256:18d94ae734accd66bccf22daed7bdb20c6b99aa0f2c687eea3ce4275fe275062
Status: Downloaded newer image for grafana/grafana:latest
docker.io/grafana/grafana:latest

[root@prometheus ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
prom/prometheus latest a3d385fc29f9 12 days ago 201MB
grafana/grafana latest 9b957e098315 2 weeks ago 275MB

//Run the container using the official grafana image [root@prometheus ~]# docker run -d --name grafana -p 3000:3000 --restart always grafana/grafana
0b5986fc63442538a6fae845e5d1b8afc78caec4f4bdd81ca3623eb1329ad562

[root@prometheus ~]# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
0b5986fc6344 grafana/grafana "/run.sh" 4 seconds ago Up 2 seconds 0.0.0.0:3000->3000/tcp, :::3000->3000/tcp grafana
a0ba5535f0ea prom/prometheus:latest "/bin/prometheus --c…" 33 minutes ago Up 6 minutes 0.0.0.0:9090->9090/tcp, :::9090->9090/tcp prometheus

//View the port [root@prometheus ~]# ss -anltu
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process             
tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:*                    
tcp LISTEN 0 128 0.0.0.0:3000 0.0.0.0:*                    
tcp LISTEN 0 128 0.0.0.0:9090 0.0.0.0:*                             
tcp LISTEN 0 128 [::]:22 [::]:*                    
tcp LISTEN 0 128 [::]:3000 [::]:*                    
tcp LISTEN 0 128 [::]:9090 [::]:*                    

Use the prometheus host IP address 192.168.129.205 + port number 3000 to access in the browser
Default account: admin Password: admin

insert image description here

Change Password

insert image description here

front page

insert image description here

Add a data source

insert image description here

Select prometheus as the data source

insert image description here
insert image description here
insert image description here

Import Dashboard

Template address

insert image description here

Template ID is 9276

insert image description here
insert image description here

Rendering

insert image description here

This is the end of this article about Prometheus containerized deployment. For more related Prometheus containerized deployment content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Deploy grafana+prometheus configuration using docker
  • Detailed tutorial on installing Prometheus with Docker

<<:  HTML page adaptive width table

>>:  Summary of common tool functions necessary for front-end development

Recommend

How to use vue filter

Table of contents Overview Defining filters Use o...

js to achieve floor scrolling effect

This article uses jQuery to implement the sliding...

A brief discussion on the efficiency of MySQL subquery union and in

Recent product testing found a problem that when ...

How to implement online hot migration of KVM virtual machines (picture and text)

1. KVM virtual machine migration method and issue...

15-minute parallel artifact GNU Parallel Getting Started Guide

GNU Parallel is a shell tool for executing comput...

How to optimize MySQL indexes

1. How MySQL uses indexes Indexes are used to qui...

Example code for implementing div concave corner style with css

In normal development, we usually use convex roun...

A detailed introduction to Tomcat directory structure

Open the decompressed directory of tomcat and you...

Detailed process of compiling and installing Storm on Kylin V10 server

1 Introduction Apache Storm is a free, open sourc...

MySQL SQL statement to find duplicate data based on one or more fields

SQL finds all duplicate records in a table 1. The...

Use of vuex namespace

Table of contents Since Vuex uses a single state ...

Vue project realizes login and registration effect

This article example shares the specific code of ...

How to create a swap partition file in Linux

Introduction to Swap Swap (i.e. swap partition) i...