All checks were successful
CI / Test backend (pull_request) Successful in 34s
CI / Check ui (pull_request) Successful in 33s
CI / Docker / backend (pull_request) Successful in 1m26s
CI / Docker / runner (pull_request) Successful in 1m50s
CI / Docker / ui (pull_request) Successful in 1m3s
CI / Docker / caddy (pull_request) Successful in 5m53s
- Remove GlitchTip, Umami, Fider, Gotify, Uptime Kuma, Dozzle, Watchtower from prod docker-compose (now run on homelab) - Add dozzle-agent on prod (127.0.0.1:7007) for homelab Dozzle to connect to - Remove corresponding subdomain blocks from Caddyfile (now routed via Cloudflare Tunnel from homelab) - Add homelab/docker-compose.yml: unified homelab stack with all migrated tooling services plus full OTel stack (Tempo 2.6.1, Loki, Prometheus, OTel Collector, Grafana) - Add homelab/otel/: Tempo, Loki, Prometheus, OTel Collector configs + Grafana provisioning (datasources + dashboards) - Add homelab/dozzle/users.yml for Dozzle auth
23 lines
667 B
YAML
23 lines
667 B
YAML
# Prometheus config
|
|
# Scrapes OTel collector self-metrics and runner metrics endpoint.
|
|
# Backend metrics come in via OTel remote-write — no direct scrape needed.
|
|
|
|
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
external_labels:
|
|
environment: production
|
|
|
|
scrape_configs:
|
|
# OTel Collector self-metrics
|
|
- job_name: otel-collector
|
|
static_configs:
|
|
- targets: ["otel-collector:8888"]
|
|
|
|
# Runner JSON metrics endpoint (native format, no Prometheus client yet)
|
|
# Will be replaced by OTLP once runner is instrumented with OTel SDK.
|
|
- job_name: libnovel-runner
|
|
metrics_path: /metrics
|
|
static_configs:
|
|
- targets: ["runner:9091"]
|