aboutsummaryrefslogtreecommitdiff
path: root/cluster/prod/app/telemetry/config/prometheus.yml
blob: a52b64dfa7e658418911dd834a1df5a11afc9255 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
global:
  scrape_interval:     15s # By default, scrape targets every 15 seconds.

scrape_configs:
  - job_name: 'prometheus'
    static_configs:
      - targets: ['localhost:9090']

  - job_name: 'node-exporter'
    consul_sd_configs:
    - server: 'https://localhost:8501'
      services:
        - 'node-exporter'
      tls_config:
        ca_file: /etc/prometheus/consul.crt
        cert_file: /etc/prometheus/consul-client.crt
        key_file: /etc/prometheus/consul-client.key

  - job_name: 'garage'
    authorization:
      type: Bearer
      credentials: {{ key "secrets/garage/metrics_token" }}
    consul_sd_configs:
    - server: 'https://localhost:8501'
      services:
        - 'garage-admin'
      tls_config:
        ca_file: /etc/prometheus/consul.crt
        cert_file: /etc/prometheus/consul-client.crt
        key_file: /etc/prometheus/consul-client.key

  - job_name: 'drone'
    authorization:
      type: Bearer
      credentials: {{ key "secrets/drone-ci/metrics_token" }}
    consul_sd_configs:
    - server: 'https://localhost:8501'
      services:
        - 'drone'
      tls_config:
        ca_file: /etc/prometheus/consul.crt
        cert_file: /etc/prometheus/consul-client.crt
        key_file: /etc/prometheus/consul-client.key

  # see https://prometheus.io/docs/prometheus/latest/configuration/configuration/#static_config
  # and https://www.nomadproject.io/api-docs/metrics
  # and https://learn.hashicorp.com/tutorials/nomad/prometheus-metrics
  # dashboard at https://grafana.com/grafana/dashboards/3800
  - job_name: 'nomad'
    scrape_interval: 10s
    metrics_path: "/v1/metrics"
    params:
      format: ['prometheus']
    scheme: 'https'
    tls_config:
      ca_file: /etc/prometheus/nomad.crt
      cert_file: /etc/prometheus/nomad-client.crt
      key_file: /etc/prometheus/nomad-client.key
      insecure_skip_verify: true
    consul_sd_configs:
    - server: 'https://localhost:8501'
      services:
        - 'nomad-client'
      tls_config:
        ca_file: /etc/prometheus/consul.crt
        cert_file: /etc/prometheus/consul-client.crt
        key_file: /etc/prometheus/consul-client.key