prometheus介绍
Prometheus是一个开源的监控报警系统 Prometheus架构 Prometheus生态圈由多个组件构成,其中许多组件是可选的:
- Prometheus Server:用于收集、存储和查询时间序列数据。通过静态配置文件管理监控目标,也可以配合使用动态服务发现的方式动态管理监控目标,并从这些监控目标中获取数据。它将采集到的数据按照时间序列的方式存储在本地磁盘当中或者外部的时序数据库中,可通过PromQL语言对数据的查询以及分析。
- Client Library:为被监控的应用生成相应的指标(Metric)数据并暴露给Prometheus Server。当Prometheus Server 来拉取时,直接返回实时状态的指标数据。
- Push Gateway:主要用于短期存在的Jobs。由于这类Jobs存在时间较短,可能在Prometheus Server来拉取数据之前就消失了。所以,Jobs可以直接向Push Gateway推送它们的指标数据,然后Prometheus Server再从Push Gateway拉取。
- Exporters:用于暴露已有的第三方服务的指标数据通过HTTP服务的形式暴露给Prometheus Server,比如HAProxy、StatsD、Graphite等等。Prometheus Server通过访问该Exporter提供的Endpoint,即可获取到需要采集的监控数据。
- Alertmanager:从Prometheus Server接收到告警后,会进行去除重复数据,分组,并路由到对收的接受方式,发出报警。Alertmanager的告警方式非常灵活,支持通过邮件、slack或钉钉等多种途径发出告警。
prometheus下载
官网下载地址
prometheus安装
prometheus-2.29.0-rc.1.linux-amd64.tar.gz
tar -C /usr/local/ -xvf prometheus-2.29.0-rc.1.linux-amd64.tar.gz
ln -sv /usr/local/prometheus-2.29.0-rc.1.linux-amd64/ /usr/local/Prometheus
prometheus --config.file=/usr/local/Prometheus/prometheus.yml &
图形工具Grafana
Grafana是一款可视化工具,大多使用在时序数据的监控方面,如同Kibana类似。Grafana的UI更加灵活,有丰富的插件,功能强大。我们在使用ClickHouse时,可以结合Grafana来监控集群状态,生成报表等
- Grafana支持多种操作系统安装
- 下载
Ubuntu and Debian(64 Bit)
sudo apt-get install -y adduser libfontconfig1
wget https://dl.grafana.com/oss/release/grafana_8.1.0_amd64.deb
sudo dpkg -i grafana_8.1.0_amd64.deb
Standalone Linux Binaries(64 Bit)
wget https://dl.grafana.com/oss/release/grafana-8.1.0.linux-amd64.tar.gz
tar -zxvf grafana-8.1.0.linux-amd64.tar.gz
Red Hat, CentOS, RHEL, and Fedora(64 Bit)
wget https://dl.grafana.com/oss/release/grafana-8.1.0-1.x86_64.rpm
sudo yum install grafana-8.1.0-1.x86_64.rpm
安装在prometheus目录中
yum install grafana-8.1.0-1.x86_64.rpm
开启图形服务
systemctl daemon-reload
systemctl start grafana-server.service
systemctl enable grafana-server.service
grafana服务在3000端口上
|