Prometheus、Grafana、Node_exporter搭建服务器监控

安装软件包下载:
链接:https://pan.baidu.com/s/149iKThiK-Tk3_HstK2lsNg
提取码:twtw

Node_exporter:负责抓取当前服务器信息,要部署在监控的服务器上
Prometheus:用来存储读取和储存Node_exporter的信息,部署在可视化的机器上
Grafana:用来读取Prometheus进行可视化显示,和Prometheus部署在一台上

Node_exporter安装:

tar -zxvf node_exporter-0.18.1.linux-amd64.tar.gz
cd node_exporter-0.18.1.linux-amd64
nohup ./node_exporter &

访问位置:ip:9100

Prometheus安装:

tar -zxvf prometheus-2.13.1.linux-amd64.tar.gz
cd prometheus-2.13.1.linux-amd64
nohup ./prometheus &

访问位置:ip:9090
Prometheus配置:
prometheus.yml中配置刷新时间和监控ip

global:
  scrape_interval:     1s

- job_name: '192.168.4.9'
    static_configs:
    - targets: ['192.168.4.9:9100']

Grafana安装:

tar -zxvf grafana-6.4.3.linux-amd64.tar.gz
cd grafana-6.4.3
cd bin
nohup ./grafana-server &

访问位置:ip:3000
配置database即可 选择Prometheus类型即地址

你可能感兴趣的:(Prometheus、Grafana、Node_exporter搭建服务器监控)