首页 > 其他 > 详细

Prometheus + Grafana 快速上手

时间:2021-04-24 00:43:20      阅读:31      评论:0      收藏:0      [点我收藏+]

Prometheus + Grafana 快速上手,监控主机的 CPU, GPU, MEM, IO 等状态。

前提

客户端

Node Exporter

用于采集 UNIX 内核主机的数据,这里下载并解压:

wget https://github.com/prometheus/node_exporter/releases/download/v1.1.2/node_exporter-1.1.2.linux-amd64.tar.gz
tar xvfz node_exporter-1.1.2.linux-amd64.tar.gz
cd node_exporter-1.1.2.linux-amd64
nohup ./node_exporter &

查看数据:

$ curl http://localhost:9100/metrics
# HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles.
# TYPE go_gc_duration_seconds summary
go_gc_duration_seconds{quantile="0"} 0
go_gc_duration_seconds{quantile="0.25"} 0
go_gc_duration_seconds{quantile="0.5"} 0
...

DCGM Exporter

用于采集 NVIDIA GPU 的数据,以 Docker 镜像运行:

docker run -d --restart=always --gpus all -p 9400:9400 nvidia/dcgm-exporter

查看数据:

$ curl localhost:9400/metrics
# HELP DCGM_FI_DEV_SM_CLOCK SM clock frequency (in MHz).
# TYPE DCGM_FI_DEV_SM_CLOCK gauge
# HELP DCGM_FI_DEV_MEM_CLOCK Memory clock frequency (in MHz).
# TYPE DCGM_FI_DEV_MEM_CLOCK gauge
# HELP DCGM_FI_DEV_MEMORY_TEMP Memory temperature (in C).
...

服务器

Prometheus

配置 ~/prometheus.yml

global:
  scrape_interval: 15s

scrape_configs:
# Node Exporter
- job_name: node
  static_configs:
  - targets: [‘192.167.200.91:9100‘]
# DCGM Exporter
- job_name: dcgm
  static_configs:
  - targets: [‘192.167.200.91:9400‘]

运行 Docker 镜像:

docker run -d --restart=always -p 9090:9090 -v ~/prometheus.yml:/etc/prometheus/prometheus.yml prom/prometheus

访问 http://localhost:9090/

技术分享图片

访问 http://localhost:9090/targets

技术分享图片

Grafana

运行 Docker 镜像:

docker run -d --restart=always -p 3000:3000 grafana/grafana

访问 http://localhost:3000/

技术分享图片

admin/admin 登录。

新增数据源

技术分享图片

新增 Prometheus

技术分享图片

点击 Save & Test

技术分享图片

导入仪表盘

技术分享图片

导入 8919 Node Exporter for Prometheus Dashboard by StarsL.cn

技术分享图片

查看仪表盘:

技术分享图片

导入 12239 NVIDIA DCGM Exporter Dashboard by nvidia

技术分享图片

查看仪表盘:

技术分享图片

参考

GoCoding 个人实践的经验分享,可关注公众号!

Prometheus + Grafana 快速上手

原文:https://www.cnblogs.com/gocodinginmyway/p/14695625.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!