aboutsummaryrefslogtreecommitdiffstats
path: root/tools/performance/local/prometheus.yml
blob: 7efb4a803a0899c1f242158b48b332ef14b68b4c (plain)
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
global:
  scrape_interval: 5s
  external_labels:
    monitor: 'my-monitor'

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

  - job_name: 'kafka-processing-consumer'
    metrics_path: '/monitoring/prometheus'
    static_configs:
      - targets: ['kafka-processing-consumer:6063']

  - job_name: 'kafka-offset-consumer'
    metrics_path: '/monitoring/prometheus'
    static_configs:
      - targets: ['kafka-offset-consumer:6062']

  - job_name: 'ves-hv-collector'
    metrics_path: '/monitoring/prometheus'
    static_configs:
      - targets: ['ves-hv-collector:6060']

  - job_name: 'cadvisor'
    static_configs:
      - targets: ['cadvisor:8080']