Prometheus监控部署安装
Posted sunnyyangwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Prometheus监控部署安装相关的知识,希望对你有一定的参考价值。
1、熟悉配置文件
配置文件/usr/local/prometheus/prometheus.yml
global: #定义全局
scrape_interval: 15s # 每个15s抓取一次数据,默认1分钟。
evaluation_interval: 15s # 监控数据评估规则的评率,跟rule结合实现效果.
alerting: #告警取消,由grafana实现。
alertmanagers:
- static_configs:
- targets:
# - alertmanager:9093
rule_files:
# - "first_rules.yml"
# - "second_rules.yml"
scrape_configs:
- job_name: ‘prometheus‘
static_configs:
#- targets: [‘localhost:9090‘]
- targets: [‘localhost:9100‘,‘hongk:9100‘]
下载:https://prometheus.io/download/
2、安装promethes服务端
[[email protected] src]# ls prometheus-2.8.0.linux-amd64.tar.gz
[[email protected] src]# tar -xf prometheus-2.8.0.linux-amd64.tar.gz
[[email protected] src]# mv prometheus-2.8.0.linux-amd64 /usr/local/prometheus
[[email protected] src]# cd /usr/local/prometheus/
[[email protected] prometheus]# ./prometheus
页面访问,注意关闭防火墙。
http://192.168.1.12:9090/graph
浏览器访问,无账号密码验证(可使用类似Apache httppass方式添加)
http://192.168.1.12:9090/metrics
以上是服务端启动正常显示。
3、客户端安装:
下载:https://prometheus.io/download/
[[email protected] local]# cd node_exporter/
[[email protected] node_exporter]# ./node_exporter
使用curl命令对客户端测试,
[[email protected] ~]# curl 192.168.1.12:9100/metrics
4、配置服务器
配置服务端,添加客户端服务信息。
页面展示效果,
界面展示如上,数据展示正常。
以上是关于Prometheus监控部署安装的主要内容,如果未能解决你的问题,请参考以下文章