24 lines
672 B
YAML
24 lines
672 B
YAML
|
|
# Timmy Prometheus — Sovereign Metrics Collection
|
||
|
|
global:
|
||
|
|
scrape_interval: 30s
|
||
|
|
evaluation_interval: 30s
|
||
|
|
|
||
|
|
scrape_configs:
|
||
|
|
# Timmy's custom exporter (Gitea, Huey, heartbeat, sovereignty)
|
||
|
|
- job_name: "timmy-exporter"
|
||
|
|
static_configs:
|
||
|
|
- targets: ["exporter:9101"]
|
||
|
|
scrape_interval: 30s
|
||
|
|
|
||
|
|
# Prometheus self-monitoring
|
||
|
|
- job_name: "prometheus"
|
||
|
|
static_configs:
|
||
|
|
- targets: ["localhost:9090"]
|
||
|
|
|
||
|
|
# Ollama metrics (if exposed — ollama serves on host network)
|
||
|
|
# Uncomment once Ollama is confirmed running with metrics
|
||
|
|
# - job_name: "ollama"
|
||
|
|
# static_configs:
|
||
|
|
# - targets: ["host.docker.internal:11434"]
|
||
|
|
# metrics_path: /metrics
|