为 Prometheus 目标配置 basic_auth

Kac*_*oha 2 monitoring prometheus

static_configs我的 prometheus.yml 配置文件中的目标之一使用基本身份验证进行保护。因此,在 Prometheus 目标页面中始终针对该目标显示描述为“拒绝连接”的错误。

我研究了如何设置 prometheus 以在尝试抓取该特定目标时提供安全凭据,但找不到任何解决方案。我发现的是如何scrape_config在文档中的部分进行设置。这对我不起作用,因为我还有其他不受basic_auth. 请帮我解决这个挑战。

.yml关于我的挑战,这是我的配置的一部分。

scrape_configs:
  # The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
  - job_name: 'prometheus'

    # Override the global default and scrape targets from this job every 5 seconds.
    scrape_interval: 5s
    scrape_timeout: 5s

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

    static_configs:
      
      - targets: ['localhost:5000']
        labels: 
          service: 'Auth'
      - targets: ['localhost:5090']
        labels:
          service: 'Approval'
      - targets: ['localhost:6211']
        labels:
          service: 'Credit Assessment'
      - targets: ['localhost:6090']
        labels:
          service: 'Sweep'
      - targets: ['localhost:6500']
        labels:
Run Code Online (Sandbox Code Playgroud)

Fra*_*ois 11

我想在@PatientZro 答案中添加更多详细信息。

就我而言,我需要创建另一个作业(如指定的那样),但 basic_auth 需要与 job_name 的缩进级别相同。请参阅此处的示例

同样,我的 basic_auth 案例需要一个路径,因为它们没有显示在我的域的根目录中。

下面是一个指定了 API 端点的示例:

  - job_name: 'myapp_health_checks'
    scrape_interval: 5m
    scrape_timeout: 30s
    static_configs:
        - targets: ['mywebsite.org']
    metrics_path: "/api/health"
    basic_auth:
      username: 'email@username.me'
      password: 'cfgqvzjbhnwcomplicatedpasswordwjnqmd'
Run Code Online (Sandbox Code Playgroud)

最好的事物,

  • 还可以指定“password_file: valid_password_file”而不是硬编码密码以供参考。 (5认同)

小智 -1

为需要身份验证的工作创建另一份工作。
因此,在您发布的内容下,再做一个

  - job_name: 'prometheus-basic_auth'
    scrape_interval: 5s
    scrape_timeout: 5s
    static_configs:
      
      - targets: ['localhost:5000']
        labels: 
          service: 'Auth'
        basic_auth:
          username: foo
          password: bar
Run Code Online (Sandbox Code Playgroud)

  • 我相信 basic_auth 部分应该位于 job_name 部分,而不是目标 (3认同)