欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Prometheus入门

程序员文章站 2022-06-04 18:50:19
...

下载地址https://prometheus.io/download/

tar xvfz prometheus.tar.gz
cd prometheus

启动
./prometheus –config.file=prometheus.yml
默认访问地址
http://localhost:9090/
部分prometheus.yml配置

global:
  scrape_interval:     15s# 全局配置 默认15秒到目标处抓取数据
scrape_configs:
  #  job name 设置抓取的jobname,名字随意
  - job_name: 'mydemo'
  metrics_path: '/prometheus'
  # 重写了全局抓取间隔时间,由15秒重写成5秒。
  scrape_interval: 5s
  static_configs:
      - targets: ['10.76.14.122:8088']#抓取的web地址
相关标签: prometheus