Prometheus es una aplicación de software gratuita que se utiliza para monitorear y alertar eventos. Registra métricas en tiempo real en una base de datos de series temporales creada con un modelo de extracción HTTP, con consultas flexibles y alertas en tiempo real. El proyecto está escrito en Go y tiene la licencia Apache 2 License , con código fuente disponible en GitHub, y es un proyecto graduado de la Cloud Native Computing Foundation , junto con Kubernetes y Envoy.
Actualizar sistema
Actualiza tu sistema operativo Linux con
# dnf update -y
Prometheus actualmente no incluye una política oficial de SELinux. Entonces tienes que deshabilitar SELinux o cámbielo al modo permisivo.
# sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/sysconfig/selinux
# setenforce permissive
Crear usuarios y directorios de Prometheus
Ser propietario del software y los procesos de Prometheus.
# useradd --no-create-home -s /bin/false prometheus
Cree los directorios necesarios de Prometheus y edite la propiedad.
# mkdir /etc/prometheus
# mkdir /var/lib/prometheus
# chown prometheus:prometheus /var/lib/prometheus
# chown prometheus:prometheus /etc/prometheus
Instalar Prometeo
Puedes descargarlo del sitio web oficial de Prometheus.
Descargar Prometheus tarball con wget comando de la siguiente manera.
[root@unixcop ~]# wget https://github.com/prometheus/prometheus/releases/download/v2.29.2/prometheus-2.29.2.linux-amd64.tar.gz -P /tmp
--2021-09-09 11:02:11-- https://github.com/prometheus/prometheus/releases/download/v2.29.2/prometheus-2.29.2.linux-amd64.tar.gz
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-releases.githubusercontent.com/6838921/17d3d453-5a8e-47aa-844f-d4ff56f5c1cb?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210909%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210909T150118Z&X-Amz-Expires=300&X-Amz-Signature=04f95de9924949000d3cf5b51d508db4a101e6741d13540d60b0b8c7618421bc&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=6838921&response-content-disposition=attachment%3B%20filename%3Dprometheus-2.29.2.linux-amd64.tar.gz&response-content-type=application%2Foctet-stream [following]
--2021-09-09 11:02:13-- https://github-releases.githubusercontent.com/6838921/17d3d453-5a8e-47aa-844f-d4ff56f5c1cb?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210909%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210909T150118Z&X-Amz-Expires=300&X-Amz-Signature=04f95de9924949000d3cf5b51d508db4a101e6741d13540d60b0b8c7618421bc&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=6838921&response-content-disposition=attachment%3B%20filename%3Dprometheus-2.29.2.linux-amd64.tar.gz&response-content-type=application%2Foctet-stream
Resolving github-releases.githubusercontent.com (github-releases.githubusercontent.com)... 185.199.111.154, 185.199.108.154, 185.199.110.154, ...
Connecting to github-releases.githubusercontent.com (github-releases.githubusercontent.com)|185.199.111.154|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 73175122 (70M) [application/octet-stream]
Saving to: 'https://1118798822.rsc.cdn77.org/tmp/prometheus-2.29.2.linux-amd64.tar.gz'
prometheus-2.29.2.linux-amd64.tar.gz 100%[=======================================================================>] 69.79M 169KB/s in 6m 30s
2021-09-09 11:08:43 (183 KB/s) - 'https://1118798822.rsc.cdn77.org/tmp/prometheus-2.29.2.linux-amd64.tar.gz' saved [73175122/73175122]
[root@unixcop ~]#
Luego extraiga el tarball de Prometheus descargado en /var/lib/prometheus como se muestra.
tar -xf /tmp/prometheus-2.29.2.linux-amd64.tar.gz -C /var/lib/prometheus/ --strip-components=1
Otorgue la propiedad de los archivos extraídos al usuario de Prometheus con:
chown -R prometheus:prometheus /var/lib/prometheus
Mueva el archivo de configuración de Prometheus a /etc/prometheus con:
mv /var/lib/prometheus/prometheus.yml /etc/prometheus/
Compruebe también las configuraciones del archivo prometheus.yml como se muestra a continuación:
[root@unixcop ~]# grep -v '#' /etc/prometheus/prometheus.yml
global:
alerting:
alertmanagers:
- static_configs:
- targets:
rule_files:
scrape_configs:
- job_name: "prometheus"
static_configs:
- targets: ["localhost:9090"]
[root@unixcop ~]#
También cree enlaces simbólicos para que Prometheus los haga ejecutables desde cualquier ruta.
# cp -s /var/lib/prometheus/promtool /usr/bin
# cp -s /var/lib/prometheus/prometheus /usr/bin
Crear unidad de servicio de Systemd para Prometheus
Debe crear una unidad de servicio systemd para habilitar el inicio automático de Prometheus.
Sigue estos pasos:
# vim /usr/lib/systemd/system/prometheus.service
Luego agrega lo siguiente.
[Unit]
Description=Prometheus
Wants=network-online.target
After=network-online.target
[Service]
User=prometheus
Group=prometheus
Type=simple
ExecStart=/usr/bin/prometheus \
--config.file /etc/prometheus/prometheus.yml \
--storage.tsdb.path /var/lib/prometheus/ \
--web.console.templates=/var/lib/prometheus/consoles \
--web.console.libraries=/var/lib/prometheus/console_libraries
[Install]
WantedBy=multi-user.target
Luego habilite e inicie Prometheus con:
[root@unixcop ~]# systemctl enable --now prometheus.service
Created symlink /etc/systemd/system/multi-user.target.wants/prometheus.service → /usr/lib/systemd/system/prometheus.service.
[root@unixcop ~]#
Configurar también Firewall para Prometheus
El puerto predeterminado 9090/tcp . Entonces es necesario permitirlo.
[root@unixcop ~]# firewall-cmd --permanent --add-port=9090/tcp
success
[root@unixcop ~]# firewall-cmd --reload
success
[root@unixcop ~]#
Abrir URL http://localhost:9090 en un navegador web como se muestra en la siguiente captura de pantalla
Instalar exportador de nodos
Node Exporter es un exportador de Prometheus para nivel de servidor y métricas de nivel con recopiladores de métricas configurables. Nos ayuda a medir los recursos del servidor, como el espacio en disco, la RAM y la utilización de la CPU.
Necesitas instalar node_exporter en su servidor Prometheus.
En primer lugar, cree un directorio para Node Exporter de la siguiente manera:
# mkdir -p /var/lib/prometheus/node_exporter
Descarga Node_Exporter desde el sitio web de Prometheus.
[root@unixcop ~]# wget https://github.com/prometheus/node_exporter/releases/download/v1.2.2/node_exporter-1.2.2.linux-amd64.tar.gz -P /tmp
--2021-09-09 11:42:18-- https://github.com/prometheus/node_exporter/releases/download/v1.2.2/node_exporter-1.2.2.linux-amd64.tar.gz
Resolving github.com (github.com)... 140.82.121.4
Connecting to github.com (github.com)|140.82.121.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github-releases.githubusercontent.com/9524057/28598a7c-d8ad-483d-85ba-8b2c9c08cf57?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210909%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210909T154012Z&X-Amz-Expires=300&X-Amz-Signature=2581f24124ad04eeb9d7ead72729c4afbcfe08ade2e37a8d3ffa0eb876ab0091&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=9524057&response-content-disposition=attachment%3B%20filename%3Dnode_exporter-1.2.2.linux-amd64.tar.gz&response-content-type=application%2Foctet-stream [following]
--2021-09-09 11:42:19-- https://github-releases.githubusercontent.com/9524057/28598a7c-d8ad-483d-85ba-8b2c9c08cf57?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20210909%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20210909T154012Z&X-Amz-Expires=300&X-Amz-Signature=2581f24124ad04eeb9d7ead72729c4afbcfe08ade2e37a8d3ffa0eb876ab0091&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=9524057&response-content-disposition=attachment%3B%20filename%3Dnode_exporter-1.2.2.linux-amd64.tar.gz&response-content-type=application%2Foctet-stream
Resolving github-releases.githubusercontent.com (github-releases.githubusercontent.com)... 185.199.108.154, 185.199.110.154, 185.199.109.154, ...
Connecting to github-releases.githubusercontent.com (github-releases.githubusercontent.com)|185.199.108.154|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 8898481 (8.5M) [application/octet-stream]
Saving to: 'https://1118798822.rsc.cdn77.org/tmp/node_exporter-1.2.2.linux-amd64.tar.gz'
node_exporter-1.2.2.linux-amd64.tar.g 100%[=======================================================================>] 8.49M 204KB/s in 42s
2021-09-09 11:43:02 (207 KB/s) - 'https://1118798822.rsc.cdn77.org/tmp/node_exporter-1.2.2.linux-amd64.tar.gz' saved [8898481/8898481]
[root@unixcop ~]#
Luego extraiga el tarball descargado a /var/lib/prometheus/node_exporter/ con el siguiente comando.
# tar xf /tmp/node_exporter-1.2.2.linux-amd64.tar.gz -C /var/lib/prometheus/unixcop_node_exporter/ --strip-components=1
Modificar la propiedad.
# chown -R prometheus:prometheus /var/lib/prometheus/unixcop_node_exporter/
También cree un enlace simbólico para node_exporter con:
[root@unixcop ~]# cp -s /var/lib/prometheus/unixcop_node_exporter/node_exporter /usr/bin/
Habilitar inicio automático de node_exporter proceso, cree una unidad de servicio systemd.
vim /usr/lib/systemd/system/unixcop_node_exporter.service
Luego agrega lo siguiente:
[Unit]
Description=Node Exporter
Wants=network-online.target
After=network-online.target
[Service]
User=prometheus
ExecStart=/usr/bin/node_exporter
[Install]
WantedBy=default.target
Habilite e inicie Node Exporter con el siguiente comando:
[root@unixcop ~]# systemctl enable --now unixcop_node_exporter.service
Created symlink /etc/systemd/system/default.target.wants/node_exporter.service → /usr/lib/systemd/system/node_exporter.service.
[root@unixcop ~]#
También configure el firewall para permitir el puerto node_exporter 9100/tcp .
[root@unixcop ~]# firewall-cmd --permanent --add-port=9100/tcp
success
[root@unixcop ~]# firewall-cmd --reload
success
[root@unixcop ~]#
Luego edite el archivo de configuración de Prometheus.
# vi /etc/prometheus/prometheus.yml
Y agregue el unixcop_node_exporter configuración de punto final en este archivo.
- job_name: 'unixcop_node_exporter'
static_configs:
- targets: ['localhost:9100']
Luego reinicie Prometheus.
# systemctl restart prometheus.service
Abra su navegador y luego vaya a Prometheus.
Abrir Estado
Luego haga clic en Objetivos .
Conclusión
En este artículo, explicamos cómo instalar la herramienta de monitoreo de sistemas Prometheus en CentOS/RHEL 8.
También ilustramos cómo instalar Node Exporter para el nivel del servidor y las métricas de nivel que nos ayudan a medir los recursos del servidor, como el espacio en disco, la RAM y la utilización de la CPU.