返回顶部
首页 > 资讯 > 操作系统 >CentOS7如何搭建Prometheus监控Linux主机
  • 193
分享到

CentOS7如何搭建Prometheus监控Linux主机

2023-06-15 17:06:05 193人浏览 八月长安
摘要

这期内容当中小编将会给大家带来有关Centos7如何搭建prometheus监控linux主机,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。 简介prometheus可以拆分成多个节点进行指标收

这期内容当中小编将会给大家带来有关Centos7如何搭建prometheus监控linux主机,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。

 简介

prometheus可以拆分成多个节点进行指标收集。

安装环境:CentOS7


安装prometheus

wget -c https://GitHub.com/prometheus/prometheus/releases/download/v2.23.0/prometheus-2.23.0.linux-amd64.tar.gz tar zxvf prometheus-2.23.0.linux-amd64.tar.gz  -C /opt/ cd /opt/ ln -s prometheus-2.23.0.linux-amd64 prometheus cat > /etc/systemd/system/prometheus.service <<EOF [Unit] Description=prometheus After=network.target  [Service] Type=simple WorkingDirectory=/opt/prometheus ExecStart=/opt/prometheus/prometheus --config.file="/opt/prometheus/prometheus.yml" LimitNOFILE=65536 PrivateTmp=true RestartSec=2 StartLimitInterval=0 Restart=always  [Install] WantedBy=multi-user.target EOF systemctl daemon-reload  systemctl enable prometheus systemctl start prometheus

配置Prometheus

这里配置的是监听/opt/prometheus/servers/目录下的JSON文件

cat > /opt/prometheus/prometheus.yml <<EOF # my global config global:   scrape_interval:     15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.   evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.   # scrape_timeout is set to the global default (10s). # Alertmanager configuration alerting:   alertmanagers:   - static_configs:     - targets:       # - alertmanager:9093  # Load rules once and periodically evaluate them according to the global 'evaluation_interval'. rule_files:   # - "first_rules.yml"   # - "second_rules.yml"  # A scrape configuration containing exactly one endpoint to scrape: # Here it's Prometheus itself. scrape_configs:   # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.   - job_name: 'prometheus'      # metrics_path defaults to '/metrics'     # scheme defaults to 'Http'.      static_configs:     - targets: ['localhost:9090']        - job_name: 'servers'     file_sd_configs:     - refresh_interval: 61s       files:         - /opt/prometheus/servers/*.json EOF systemctl restart prometheus

json格式


每个json文件需要是一个数组对象,如果不需要自定义标签,可以直接写到targets里面去也可以,可以有多个文件

[         {         "targets": [             "192.168.1.164:9100"         ],         "labels": {             "instance": "192.168.1.164",             "job": "node_exporter"         }     },     {         "targets": [             "192.168.1.167:9100"         ],         "labels": {             "instance": "192.168.1.167",             "job": "node_exporter"         }     } ]

安装node_exporter

安装到/opt/node_exporter路径下,保持默认的端口

https://github.com/prometheus/node_exporter/releases/download/v1.0.1/node_exporter-1.0.1.linux-amd64.tar.gz tar zxvf node_exporter-1.0.1.linux-amd64.tar.gz -C /opt/ cd /opt/ ln -s  node_exporter-1.0.1.linux-amd64 node_exporter cat > /etc/systemd/system/node_exporter.service <<EOF [Unit] Description=node_exporter After=network.target  [Service] Type=simple WorkingDirectory=/opt/node_exporter ExecStart=/opt/node_exporter/node_exporter LimitNOFILE=65536 PrivateTmp=true RestartSec=2 StartLimitInterval=0 Restart=always  [Install] WantedBy=multi-user.target EOF systemctl daemon-reload systemctl enable node_exporter systemctl start node_exporter

图形展示

直接安装grafana进行展示

yum -y install   https://dl.grafana.com/oss/release/grafana-7.3.6-1.x86_64.rpm systemctl enable grafana-server systemctl start grafana-server

启动之后,grafana默认监听的是3000端口,直接使用浏览器进行访问就可以了,默认用户名密码是admin/admin,第一次登陆之后会提示修改。


配置数据源:鼠标左边的菜单 Configuration -> Data Source -> Add data source ->  选择prometheus -> url那栏填入prometheus的地址就可以了 -> 最后 Save & test 就可以了。

grafana.com/grafana/dashboards 官网已经有人做好的模板,我们直接import进来就可以了。

导入面板:鼠标左边的菜单 Dashboards -> Import -> 填入id -> Load ->  选择数据源就可以了。

我经常用的是:1860 、8919 这两个来查看node_exporter监控

安装这些服务都是使用systemd进行管理的,操作起来比较方便的。

这里没有设置告警,可以根据自己的需要设置对应的告警规则,使用alertmanager进行告警。

上述就是小编为大家分享的CentOS7如何搭建Prometheus监控Linux主机了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网操作系统频道。

--结束END--

本文标题: CentOS7如何搭建Prometheus监控Linux主机

本文链接: https://lsjlt.com/news/280944.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • CentOS7如何搭建Prometheus监控Linux主机
    这期内容当中小编将会给大家带来有关CentOS7如何搭建Prometheus监控Linux主机,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。 简介prometheus可以拆分成多个节点进行指标收...
    99+
    2023-06-15
  • 怎么在CentOS7系统中搭建Prometheus 监控
    今天就跟大家聊聊有关怎么在CentOS7系统中搭建Prometheus 监控,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。 简介prometheus可以拆分成多个节点进行指...
    99+
    2023-06-07
  • Grafana + Prometheus如何快速搭建监控平台
    小编给大家分享一下Grafana + Prometheus如何快速搭建监控平台,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!总体可视化方案Grafana:通过将采...
    99+
    2023-06-15
  • centos7 搭建zabbix3.0.5监控系统
    一、实验环境:[root@zabbixserver ~]# cat /etc/redhat-release  CentOS Linux relea...
    99+
    2024-04-02
  • Prometheus监控运维实战十: 主机监控指标
    1、CPU指标 CPU负载 node_load1node_load5node_load15 以上三个指标为主机的CPU平均负载,分别对应一分钟、五分钟和十五分钟的时间间隔。CPU负载是指某段时间内占用...
    99+
    2023-09-12
    运维 prometheus 服务器
  • Prometheus+Grafana可视化监控【主机状态】
    文章目录 一、介绍二、安装Prometheus三、安装Grafana四、Pronetheus和Grafana相关联五、监控服务器状态六、常见问题 一、介绍 Prometheus是一个开...
    99+
    2023-09-12
    prometheus grafana
  • 怎么使用prometheus监控多个主机
    要使用Prometheus监控多个主机,你可以按照以下步骤操作: 安装和配置Prometheus:首先,你需要在一个主机上安装和...
    99+
    2024-04-09
    prometheus
  • Prometheus+Grafana普罗米修斯搭建+监控MySQL
    Prometheus+Grafana普罗米修斯搭建+监控MySQL 一,Prometheus 1.什么是Prometheus? ​ Prometheus 是 Cloud Native Computing Foundation 的一个监控系...
    99+
    2023-08-20
    prometheus grafana mysql
  • prometheus+grafana如何监控nginx
    这篇文章主要介绍prometheus+grafana如何监控nginx,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!在prometheus需要向ngxin中打入探针,通过探针获取ngxin信息,并通过接口输出。下文将...
    99+
    2023-06-21
  • SpringBoot如何使用prometheus监控
    这篇文章主要介绍SpringBoot如何使用prometheus监控,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!1.关于PrometheusPrometheus是一个根据应用的metrics来进行监控的开源工具。相...
    99+
    2023-06-14
  • Prometheus如何监控Springboot程序
    这篇文章主要介绍Prometheus如何监控Springboot程序,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!1. 添加依赖我本次使用的Springboot版本为1.5.12.RELEASE,如果是Springb...
    99+
    2023-06-14
  • linux如何搭建虚拟主机
    在Linux系统中,可以使用Apache或Nginx来搭建虚拟主机。以下是使用Apache搭建虚拟主机的步骤:1. 安装Apache...
    99+
    2023-09-12
    虚拟主机 linux
  • linux虚拟主机如何搭建
    要搭建Linux虚拟主机,您可以按照以下步骤进行操作:1. 首先,选择一台运行Linux操作系统的物理服务器或云服务器作为主机。确保...
    99+
    2023-08-16
    linux虚拟主机 虚拟主机
  • linux中centos7如何搭建mysql5.7.29
    这篇文章主要讲解了linux中centos7如何搭建mysql5.7.29,内容清晰明了,对此有兴趣的小伙伴可以学习一下,相信大家阅读完之后会有帮助。1.下载mysql   2.管理组及目录权限  2.1解...
    99+
    2024-04-02
  • 5分钟搭建MySQL监控平台(mysql-exporter+Prometheus+Grafana)
      一、工具介绍 Prometheus:   普罗米修斯可以简单理解为一个监控工具,以时间为单位展示指定数据维度的变化 趋势。 mysqld_exporter :主要是依赖数据采集器,对于mysql数据采集使用的是mysqld_...
    99+
    2023-09-16
    prometheus grafana
  • Grafana+Prometheus如何监控MySql服务
    这篇文章主要为大家展示了“Grafana+Prometheus如何监控MySql服务”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Grafana+Prometh...
    99+
    2024-04-02
  • docker搭建基于prometheus的监控体系步骤实现
    目录1.启动prometheus容器服务2.启动成功后,公网访问该9090端口进入普罗米修斯主页3.部署mysqld-exporer监控mysql数据库(想监控什么就部署对应的exp...
    99+
    2024-04-02
  • 如何使用Prometheus监控Linux系统各项指标
    这篇文章主要讲解了“如何使用Prometheus监控Linux系统各项指标”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何使用Prometheus监控Linux系统各项指标”吧!首先在Li...
    99+
    2023-06-05
  • python如何获取Prometheus监控数据
    目录获取Prometheus监控数据获取Prometheus target数据获取Prometheus 监控信息(cpu、mem、disks)通过promsql读取prometheu...
    99+
    2024-04-02
  • 如何自定义Prometheus监控指标
    本篇内容介绍了“如何自定义Prometheus监控指标”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!目前大部分使用Spring  ...
    99+
    2023-06-17
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作