backstory/prometheus.yml

21 lines
435 B
YAML

global:
scrape_configs:
- job_name: 'backstory'
scrape_interval: 5s
metrics_path: /metrics
scheme: https
static_configs:
- targets: ['backstory:8911']
tls_config:
insecure_skip_verify: true
- job_name: 'backstory-prod'
scrape_interval: 5s
metrics_path: /metrics
scheme: http
static_configs:
- targets: ['backstory-prod:8911']
tls_config:
insecure_skip_verify: true