prometheus-node-exporter(grafana)

prometheus+node_exporter+grafana實踐

 

介紹:

prometheus:開源監控系統,可參考博客prometheus的搭建與使用

node_exporter:服務器端agent,負責採集服務器基礎監控項

grafana:一個開源的度量分析與可視化套件,常用於展示監控信息

安裝:

安裝node_exporter,啓動後監聽9100端口


 
  1. wget https://github.com/prometheus/node_exporter/releases/download/v0.16.0-rc.3/node_exporter-0.16.0-rc.3.linux-amd64.tar.gz

  2. tar -zxvf node_exporter-0.16.0-rc.3.linux-amd64.tar.gz

  3. cd node_exporter-0.16.0-rc.3.linux-amd64

  4. ./node_exporter

安裝grafana,啓動後監聽3000端口


 
  1. yum install grafana

  2. service grafana-server start

配置:

1、配置prometheus,修改prometheus.yml配置文件,增加安裝node_exporter的機器,配置完成後重啓


 
  1. scrape_configs:

  2. # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.

  3. - job_name: 'node_exporter'

  4.  
  5. # metrics_path defaults to '/metrics'

  6. # scheme defaults to 'http'.

  7.  
  8. static_configs:

  9. - targets: ['localhost:9100']

2、配置grafana增加data source,訪問localhost:3000,推薦展示樣式選擇Node Exporter Full

效果:

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章