Prometheus PromSQL 获取系统服务运行状态

时间:2022-08-30 14:31:21

Prometheus PromSQL 获取系统服务运行状态

使用systemd收集器:
--collector.systemd.unit-whitelist=".+" 从systemd中循环正则匹配单元
--collector.systemd.unit-whitelist="(docker|sshd|nginx).service" 白名单,收集目标

# 监控服务状态
/usr/bin/node_exporter --collector.systemd --collector.systemd.unit-whitelist=(docker|sshd|nginx).service

 

Node端修改启动配置

1、修改启动配置,添加参数:vim /usr/lib/systemd/system/node_exporter.service

[Unit]
Description=https://prometheus.io

[Service]
Restart=on-failure
ExecStart=/usr/local/node_exporter/node_exporter --collector.systemd --collector.systemd.unit-whitelist=(docker|sshd|nginx).service

[Install]
WantedBy=multi-user.target

2、加载配置重启服务

systemctl daemon-reload
systemctl restart node_exporter

 

监控端查看Node服务

1、通过promSQL查看服务

node_systemd_unit_state

Prometheus PromSQL 获取系统服务运行状态

2、查看docker服务运行几个状态

node_systemd_unit_state{instance="47.98.138.176:9100",job="node",name="docker.service"}

Prometheus PromSQL 获取系统服务运行状态