Prometheus客户端节点监控node_exporter
Posted gsls200808
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prometheus客户端节点监控node_exporter相关的知识,希望对你有一定的参考价值。
linux下的节点监控可以用官方的node_exporter,默认端口是9100
windows的用GitHub - prometheus-community/windows_exporter: Prometheus exporter for Windows machines
windows的这个不是官方的,默认端口是9182
下面讲正题
1.下载安装node_exporter
下载和解压
wget https://github.com/prometheus/node_exporter/releases/download/v1.2.2/node_exporter-1.2.2.linux-amd64.tar.gz
tar -C /usr/local -zxvf node_exporter-1.2.2.linux-amd64.tar.gz
建立软链接
ln -sv /usr/local/node_exporter-1.2.2.linux-amd64/ /usr/local/node_exporter
开机自启
vi /etc/systemd/system/node_exporter.service
添加下面内容
[Unit]
Description=node_exporter
After=network.target
[Service]
Type=simple
Restart=on-failure
ExecStart=/usr/local/node_exporter/node_exporter
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
重载service配置
systemctl daemon-reload
启动和开机自启
systemctl start node_exporter & systemctl enable node_exporter
默认端口9100添加到防火墙
firewall-cmd --zone=public --add-port=9100/tcp --permanent
firewall-cmd --reload
验证
http://10.24.11.202:9100/metrics
ip需要换成你自己的ip
这样客户端就安装完成,下面服务端需要做一系列配置才能监控到
2.服务端prometheus.yml添加节点信息
编辑
vi /usr/local/prometheus/prometheus.yml
添加
- job_name: "202node"
static_configs:
- targets: ["10.24.11.202:9100"]
#注意targets里面是双引号不是单引号
名称自己起,targets需要配置客户端的ip端口号
重启服务端
systemctl restart prometheus
另一种方法是配置到目录里,节点多的时候可以考虑这种配置。
在prometheus 主配置文件配置定义子配置文件路径
服务端子文件配置
- job_name: 'node'
static_configs:
file_sd_configs:
- files:
- metrics/node_exporter*.yaml
refresh_interval: 2m
在prometheus安装目录下的targets目录下(在主配置文件定义metrics目录不存在则手动创建)创建文件 node_exporter65.yaml
- targets: ['192.168.111.65:9100'] # 如果有多个node_exporter,配置到[]中,隔开添加不需要重启服务,服务自动发现node_exporter客户端
labels:
app: node-exporter
job: node
3.Grafana添加仪表
然后导入仪表盘插件,先从官网复制id 8919
官网:Grafana Dashboards - discover and share dashboards for Grafana. | Grafana Labs
找Node Exporter 点进去点击copy id to clipboard
然后点击Grafana 加号+ --> import 粘贴id
点击load
然后在VictoriaMetrics选择刚配置的数据源Prometheus
点击import
默认会显示当前导入的仪表盘
至此配置成功,后面的告警单独讲。下一章讲docker监控。
以上是关于Prometheus客户端节点监控node_exporter的主要内容,如果未能解决你的问题,请参考以下文章