0

我正在使用 Cadvisor 获取容器的 kubernetes 统计信息,它在端口 8080 上运行良好。现在我需要在 prometheus 中导出这些指标,https://github.com/google/cadvisor/blob/master/docs/storage/README.md

上面的链接指定 cadvisor 提供 prometheus 作为存储驱动程序。

有人可以将这些步骤合并给我吗?

4

1 回答 1

0

只需告诉 Prometheus 抓取 cAdvisor 服务器的“/metrics”端点即可。这是我的 cAdvisor 实例的抓取配置:

scrape_configs:
- job_name: cadvisor
  metrics_path: /metrics
  scheme: http
  static_configs:
  - targets:
    - cadvisor:8080
  relabel_configs:
  - separator: ;
    regex: (.*)
    target_label: instance
    replacement: cadvisor
    action: replace
于 2018-11-29T15:05:36.807 回答