Centos7的prometheus+grafana添加主机监控

注:    Grfana官方仪表盘下载:https://grafana.com/dashboards
          数据源推荐:https://grafana.com/dashboards/9276

安装prometheus和grafana请查阅:https://blog.csdn.net/qq_42869878/article/details/110822844

一、首先在Linux系统上安装一个探测器node explorer, 下载地址https://prometheus.io/docs/guides/node-exporter/
这个探测器会定期将linux系统的各项硬件指标和内核参数通过9100端口和url metrics暴露给外部。

1、下载https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz
wget https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz

查看自己服务器的内核是amd还是arm,进行选择下载对应的安装包。
lsb_release -a


2、解压
tar -xvf node_exporter-1.0.1.linux-amd64.tar.gz -C /usr/local
mv /usr/local/node_exporter-1.0.1.linux-amd64 /usr/local/node_exporter

3、启动
cd /usr/local
nohup /usr/local/node_exporter/node_exporter &

4、查看进程是否启动正常
ps -ef | grep node_exporter
或者查看端口
netstat -ntlp | grep 9100

5、验证是否采集数据
curl IP:9100/metrics。如下展示部分数据

查看cpu数据
curl IP:9100/metrics | grep cpu

6、在prometheus的配置文件上添加配置
vi prometheus.yml
  - job_name: 'nginx01'
    static_configs:
      - targets: ['192.168.5.200:9100']

7、重启prometheus服务
]# ps -ef | grep prometheus
]# kill -9 id
/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml &

8、打开prometheus的web界面http://IP:9090,查看有监控到

9、到grafana上导入可视化模板,点击Import

10、如下输入模板数字,随便点击一下其他地方,自动跳转页面

如下导入后,可以看到监控到的各种数据可视化。

 

后续更新部署prometheus+grafana。

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

划水的运维

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值