首页 > 其他 > 详细

prometheus 配置支持consul动态拉取

时间:2020-07-14 17:51:42      阅读:158      评论:0      收藏:0      [点我收藏+]

/etc/prometheus/prometheus.yml

  - job_name: ‘consul‘
    consul_sd_configs:
      - server: ‘consul-dev.cmsp-dev.svc.cluster.local:8500‘
    scrape_interval: 5s

 

 

# my global config
global:
  scrape_interval:     60s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
  evaluation_interval: 60s # Evaluate rules every 15 seconds. The default is every 1 minute.
  # scrape_timeout is set to the global default (10s).

# Alertmanager configuration
#alerting:
#  alertmanagers:
#  - static_configs:
#    - targets:
#      # - alertmanager:9093

# Load rules once and periodically evaluate them according to the global ‘evaluation_interval‘.
#rule_files:
  # - "first_rules.yml"
  # - "second_rules.yml"

# A scrape configuration containing exactly one endpoint to scrape:
# Here it‘s Prometheus itself.
scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  # - job_name: ‘prometheus‘

  #   # metrics_path defaults to ‘/metrics‘
  #   # scheme defaults to ‘http‘.

  #   static_configs:
  #   - targets: [‘localhost:9090‘]
#  - job_name: ‘pushgateway‘
#    honor_labels: true
#    static_configs:
#      - targets: [192.168.2.81:32006]
#        labels:
#          instance: pushgateway
#    metric_relabel_configs:
#      - regex: ‘timestamp‘
#        action: labeldrop
#  - job_name: ‘proxy‘
#    static_configs:
#      - targets: [proxy.cmsp-dev.svc.cluster.local:31026]
#        labels:
#          instance: proxy
#    scrape_interval: 5s
#  - job_name: ‘datadog‘
#    static_configs:
#      - targets: [192.168.2.133:31636]
#        labels:
#          instance: datadog
#    scrape_interval: 30s
  - job_name: ‘consul‘
    consul_sd_configs:
      - server: ‘consul-dev.cmsp-dev.svc.cluster.local:8500‘
    scrape_interval: 5s

 

prometheus 配置支持consul动态拉取

原文:https://www.cnblogs.com/yaoyu1983/p/13299770.html

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