这篇文章的主要目的是告诉大家如何配置 Prometheus,使得它可以从指定的 Web Api 接口采集指标数据。文章中用到的案例是 NGINX 的采集配置,从设定了用户名和密码的 NGINX 数据指标页中采集数据,因此这篇文章的副标题可能是 nginx 的 prometheus 采集配置或者prometheus 采集 basic auth 的 nginx。
上图是配置完成后,在 Grafana 配置了模板的效果。
使用过 Prometheus 的朋友想必都知道如何配置 address:port 类服务,例如收集某个 Redis 的相关信息时,配置可以这么写:
- job_name: 'redis'
static_configs:
- targets: ['11.22.33.58:6087']
注释:以上案例中假设 Redis Exporter 的 地址和端口是 11.22.33.58:6087。
这种是最简单,也是最为人熟知的办法。但是如果要监控指定的 Web API,可就不能这么写了。如果你没有看到这篇文章,你可能会在搜索引擎里面这么搜:
- Prometheus 监控 Web
- Prometheus scrape Web
- Prometheus 监控接口
- Prometheus 监控指定 API
- Prometheus API 配置
- Prometheus 域名 配置
- Prometheus basic auth
- Prometheus 接口 用户名 密码
但很不幸的是,搜不到什么有效信息(现在是 2021 年 03 月),能找到的基本上都是坑。
条件假设
假设我们现在需要从地址为 https://www.weishidong.com//status/format/prometheus 的接口收集相关的 Prometheus 监控指标,并且这个接口使用了 basic auth(假定用户名为 weishidong,密码为 0099887kk)进行基本的权限校验。
配置实践操作
按照之前见到的 Prometheus 配置填写的话,很有可能把配置写成这样:
- job_name: 'web'
static_configs:
- targets: ['http://www.weishidong.com/status/format/prometheus']
basic_auth:
username: weishidong
password: 0099887kk
保存配置文件并重启服务后你就会发现,这样是收集不到数据的,简直糟糕。
官方配置指南
刚才的操作真的是糟糕透了,遇到不懂的问题时,我们当然是去翻官方文档了->