8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

如何在 Prometheus yaml 中添加新目标进行监控

Marla Malcherek 1月前

13 0

我已经使用 Docker 启动了 Prometheus 系统。我的 docker compose yaml 文件如下所示:version: '3'services: prometheus: image: prom/prometheus container_name: prometheus ports:...

我已经使用 Docker 启动了 Prometheus 系统。我的 docker compose yaml 文件如下所示:

version: '3'
services:
  prometheus:
    image: prom/prometheus
    container_name: prometheus
    ports:
      - 9090:9090
    volumes:
      - ./prometheus.yaml:/etc/prometheus/prometheus.yaml
    networks:
      monitor-net:
        ipv4_address: 172.20.10.19

  grafana:
    image: grafana/grafana:latest
    container_name: grafana
    ports:
      - 3000:3000
    volumes:
      - grafana-storage:/var/lib/grafana
    networks:
      monitor-net:
        ipv4_address: 172.20.10.20
networks:
  monitor-net:
    name: shared-netwrok
    driver: bridge
    ipam:
      config:
        - subnet: 172.20.10.0/24
          gateway: 172.20.10.1
volumes:
  grafana-storage:

当然,我已经在“prometheus.yaml”文件中配置了目标,如下所示:

glabal:
  scrape_timout: 10s
scrape_configs:
  - job_name: 'prometheus'
    scrape_interval: 5s
    static_configs:
      - targets: ['localhost:9100','1.2.3.13:9187','localhost:9090']

问题在于,如您所见,我在 Prometheus 配置文件中添加了三个目标,但我只能看到一个主机 - localhost:9090

prometheus targets

我尝试了多种编写 Prometheus 配置文件的变体,但仍然只看到一个被抓取的主机。

我也尝试过 docker build prune docker system prune -a 并从头开始构建了一个新的 docker 镜像,但仍然只看到一个主机。

帖子版权声明 1、本帖标题:如何在 Prometheus yaml 中添加新目标进行监控
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Marla Malcherek在本站《docker》版块原创发布, 转载请注明出处!
最新回复 (0)
返回
作者最近主题: