文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Prometheus+Grafana可视化监控【主机状态】

2023-09-12 07:46

关注

文章目录

一、介绍

Prometheus是一个开源的系统监控和报警系统,现在已经加入到CNCF基金会,成为继k8s之后第二个在CNCF托管的项目,在kubernetes容器管理系统中,通常会搭配prometheus进行监控,同时也支持多种exporter采集数据,还支持pushgateway进行数据上报,Prometheus性能足够支撑上万台规模的集群。
Prometheus优点:

Grafana是一个开源的可视化系统,使用Grafana展示页面更美观。

二、安装Prometheus

时间和时区同步
对于监控系统而言,时间不同步会严重导致采集数据失败,或采集数据不准确!

# 时区同步timedatectl set-timezone Asia/Shanghai# 时间同步yum -y install ntpdate/usr/sbin/ntpdate -u ntp1.aliyun.com

针对时间做定时同步

# 每天凌晨5点进行时间同步echo "0 5 * * * /usr/sbin/ntpdate -u ntp1.aliyun.com >/dev/null &" >> /var/spool/cron/root# 查看定时任务crontab -l

安装Prometheus
prometheus官方下载地址:

wget https://github.com/prometheus/prometheus/releases/download/v2.42.0/prometheus-2.42.0.linux-amd64.tar.gztar zxf prometheus-2.42.0.linux-amd64.tar.gz mv prometheus-2.42.0.linux-amd64 /usr/local/prometheuscd /usr/local/prometheus/# 修改配置监控自己的19090端口sed -i  s/localhost:9090/localhost:19090/g prometheus.yml # 启动监听端口为19090,不加默认9090./prometheus --config.file=prometheus.yml --web.listen-address=:19090

PS:上面命令指示测试是否可以启动,如果可以启动 ^C 停止掉即可!下面配置systemd管理

添加systemd管理

cat > /usr/lib/systemd/system/prometheus.service << EOF[Unit][Service]ExecStart=/usr/local/prometheus/prometheus --config.file=/usr/local/prometheus/prometheus.yml --web.listen-address=:19090ExecReload=/bin/kill -HUP \$MAINPID[Install]WantedBy=multi-user.targetAlias=dbus-org.fedoraproject.FirewallD1.serviceEOF

启动并加入开机自启动

systemctl start prometheus.servicesystemctl enable prometheus.service

WEB页面验证
浏览器访问 IP:19090


如上图所示:监控自己状态为UP表示至此步骤无误!

三、安装Grafana

安装Grafana
Grafana官方下载地址

wget https://dl.grafana.com/enterprise/release/grafana-enterprise-9.4.1-1.x86_64.rpmsudo yum install grafana-enterprise-9.4.1-1.x86_64.rpm -ysystemctl enable grafana-server.service --now

WEB页面验证
浏览器访问 IP:3000

第一次需要更改密码,正常操作即可。

四、Pronetheus和Grafana相关联

划到末端 点击"Save & test"

五、监控服务器状态

node_exporter组件安装
node_exporter是Prometheus指标收集组件,和传统的指标数据收集组件不同的是,它只负责收集数据,并不向Server端发送数据,而是等待Prometheus Server 主动抓取。

wget https://github.com/prometheus/node_exporter/releases/download/v1.5.0/node_exporter-1.5.0.linux-amd64.tar.gztar zxf node_exporter-1.5.0.linux-amd64.tar.gz mv node_exporter-1.5.0.linux-amd64 /usr/local/prometheus/node_exportercd /usr/local/prometheus/node_exporter/./node_exporter

配置systemd管理node_exporter

cat > /usr/lib/systemd/system/node_exporter.service << EOF[Unit][Service]ExecStart=/usr/local/prometheus/node_exporter/node_exporterExecReload=/bin/kill -HUP \$MAINPID[Install]WantedBy=multi-user.targetAlias=dbus-org.fedoraproject.FirewallD1.serviceEOF

启动并加入开机自启动

systemctl start node_exporter.servicesystemctl enable node_exporter.service

默认监听9100端口

netstat -anput |grep 9100tcp6       0      0 :::9100                 :::*                    LISTEN      3372/./node_exporte 

2、Prometheus添加监控主机配置

vim /usr/local/prometheus/prometheus.yml# 末尾添加一下配置,注意缩进要遵守yml格式  - job_name: "node-200"    static_configs:      - targets: ["localhost:9100"]


重启Prometheus

systemctl restart prometheus.service 

3、导入Node监控模板
模板地址:

打开Grafana平台进行如下配置:

最终效果如下:

六、常见问题

重启prometheus报 Error on ingesting samples that are too old or are too far into the future 问题解决

# 清空Prometheus data目录之后重启mv data data_bakmkdir datasystemctl restart prometheus.service 

来源地址:https://blog.csdn.net/weixin_45310323/article/details/132816618

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯