CentOS下部署Prometheus
Prometheus介绍
Prometheus是一个开源的系统监控和报警的工具包,最初由SoundCloud发布。
官方网址:https://prometheus.io/
软件下载:https://prometheus.io/download/
GitHub:https://github.com/prometheus/prometheus
Github Release:https://github.com/prometheus/prometheus/releases/
Prometheus Exporters:https://prometheus.io/docs/instrumenting/exporters/
特点:
- 多维数据模型(有metric名称和键值对确定的时间序列)
- 灵活的查询语言
- 不依赖分布式存储
- 通过pull方式采集时间序列,通过http协议传输
- 支持通过中介网关的push时间序列的方式
- 监控数据通过服务或者静态配置来发现
- 支持图表和dashboard等多种方式
组件:
Prometheus
主程序,主要是负责存储、抓取、聚合、查询方面Alertmanager
程序,主要是负责实现报警功能Pushgateway
程序,主要是实现接收由Client push过来的指标数据,在指定的时间间隔,由主程序来抓取*_exporter
这类是不同系统已经实现了的集成
Prometheus部署
(1)安装及配置
# tar -zxf prometheus-2.11.1.linux-amd64.tar.gz -C /usr/local/
# mv /usr/local/prometheus-2.11.1.linux-amd64 /usr/local/prometheus
# cd /usr/local/prometheus
# vim prometheus.yml
scrape_interval: 15s # 默认15秒到目标处抓取数据
(2)启动
nohup ./prometheus --config.file=prometheus.yml &
nohup ./prometheus --config.file=prometheus.yml --web.enable-lifecycle &
curl -s -XPOST localhost:9090/-/reload
(3)WEB页面访问:http://localhost:9090/ ,可以看到Prometheus的graph页面
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/25/deploying-prometheus-under-centos/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
共有 0 条评论