32 lines
702 B
YAML
32 lines
702 B
YAML
|
|
global:
|
||
|
|
scrape_interval: 15s
|
||
|
|
|
||
|
|
scrape_configs:
|
||
|
|
- job_name: 'gateway'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['gateway:8080']
|
||
|
|
|
||
|
|
- job_name: 'auth-service'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['auth-service:8080']
|
||
|
|
|
||
|
|
- job_name: 'training-service'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['training-service:8080']
|
||
|
|
|
||
|
|
- job_name: 'forecasting-service'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['forecasting-service:8080']
|
||
|
|
|
||
|
|
- job_name: 'data-service'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['data-service:8080']
|
||
|
|
|
||
|
|
- job_name: 'tenant-service'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['tenant-service:8080']
|
||
|
|
|
||
|
|
- job_name: 'notification-service'
|
||
|
|
static_configs:
|
||
|
|
- targets: ['notification-service:8080']
|