blob: 1beea6ebcebd476725c897e104644017d58a664a (
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
29
|
global:
scrape_interval: 5s
evaluation_interval: 5s
scrape_configs:
- job_name: 'cps-and-ncmp-kpi'
metrics_path: '/actuator/prometheus'
scrape_interval: 5s
static_configs:
# If you want to inject Prometheus into particular containers, the targets should be provided similar to the following examples:
# - 'docker-compose-cps-and-ncmp-1:8080'
# - 'docker-compose-cps-and-ncmp-2:8080'
- targets:
- '172.17.0.1:8698'
- '172.17.0.1:8699'
- job_name: 'cps-and-ncmp-endurance'
metrics_path: '/actuator/prometheus'
scrape_interval: 5s
static_configs:
- targets:
- '172.17.0.1:8798'
- '172.17.0.1:8799'
- job_name: 'postgres'
static_configs:
- targets:
- '172.17.0.1:9187'
- '172.17.0.1:9188'
|