使用基本身份验证保护 Prometheus API 和 UI 端点
nginx 示例
假设您要运行 Prometheus 实例作为运行在 localhost:12321 的 nginx 服务的后端负载,并且所有 Prometheus 端点都可以通过 /prometheus 端点使用。因此 Prometheus /metrics端点的完整 URL 为:
假设您想要访问 Prometheus 实例的所有用户都需要输入用户名和密码。在此示例中,使用 admin 作为用户名,然后设定您所想要任何密码。 首先,使用 htpasswd 创建一个 .htpasswd 文件用来保存用户名/密码,并将其保存在 /etc/nginx 目录中:
Note: 此示例使用 /etc/nginx 作为 nginx 配置文件(包括 .htpasswd 文件)的位置,但这会因安装而异。其它常用 nginx 配置目录 ,包括 /usr/local/nginx/conf 和 /usr/local/etc/nginx
nginx 配置
如下是一个示例 nginx.conf 配置文件 (用户名密码保存在 /etc/nginx/.htpasswd). 使用此配置,nginx 将对与 /prometheus 端点(代理 Prometheus)的所有连接强制执行基本身份验证:
使用上面的配置启动nginx:
Prometheus 配置
在 nginx 代理后端运行 Prometheus 时,您需要将外部URL设置为 http://localhost:12321/prometheus 并将路由前缀设置为 /:
测试
您可以使用 cURL 与本地 nginx/Prometheus 进行交互,尝试如下请求:
这将返回 401 Unauthorized 响应,因为您未能提供有效的用户名和密码。该响应还将包含 nginx 提供的 WWW-Authenticate: Basic realm="Prometheus" 响应头, 提示 nginx auth_basic 参数指定的 Prometheus 基本认证域。
要使用基本身份验证成功访问 Prometheus 端点,如 /metrics,请使用-u 标志提供正确的用户名,并在出现提示时输入密码:
然后应该返回 Prometheus 数据指标输出,看起来应该像这样:
小结
在本指南中,您将用户名和密码存储在 .htpasswd 文件中,将 nginx 配置为使用该文件中的凭据对访问 Prometheus HTTP 端点的用户进行身份验证,启动 nginx,并为 Prometheus 配置反向代理。
Last updated