prometheus+node_exporter+grafana实践
生活随笔
收集整理的這篇文章主要介紹了
prometheus+node_exporter+grafana实践
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
介紹:
prometheus:開源監控系統,可參考博客prometheus的搭建與使用
node_exporter:服務器端agent,負責采集服務器基礎監控項
grafana:一個開源的度量分析與可視化套件,常用于展示監控信息
安裝:
安裝node_exporter,啟動后監聽9100端口
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 tar -zxvf node_exporter-0.16.0-rc.3.linux-amd64.tar.gz cd node_exporter-0.16.0-rc.3.linux-amd64 ./node_exporter安裝grafana,啟動后監聽3000端口
yum install grafana service grafana-server start配置:
1、配置prometheus,修改prometheus.yml配置文件,增加安裝node_exporter的機器,配置完成后重啟
scrape_configs:# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.- job_name: 'node_exporter'# metrics_path defaults to '/metrics'# scheme defaults to 'http'.static_configs:- targets: ['localhost:9100']2、配置grafana增加data source,訪問localhost:3000,推薦展示樣式選擇Node Exporter Full
效果:
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的prometheus+node_exporter+grafana实践的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: prometheus的搭建与使用
- 下一篇: laravel修改storage目录和b