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地址
上一篇: ES操作看这一篇就够了
下一篇: 吃什么食物对上火有好处