f4f853d94b
Datafabrik: - Skördare: crawler, källvitlista, upphandlingsskördare - Extraktor: LLM-baserad schemastyrd extraktion - Upplösare: Entitetsupplösning och deduplicering - Köer: Schemalagd / kunddriven / fält - Agentorkestrering: 20+ parallella agenter Vision: - Identify-modell: ResNet50 + kontrastivt lärande - Träningspipeline: NT-Xent loss - Vektordatabas: FAISS för snabb sökning - OCR-pipeline: Typskyltsläsning Infrastruktur: - Docker Compose production - Terraform för AWS ECS - Prometheus + Grafana monitorering - Neo4j + FAISS + MinIO + Redis
24 lines
492 B
YAML
24 lines
492 B
YAML
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
|
|
scrape_configs:
|
|
- job_name: 'landvex-api'
|
|
static_configs:
|
|
- targets: ['api:8080']
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'landvex-datafabrik'
|
|
static_configs:
|
|
- targets: ['datafabrik:8080']
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'neo4j'
|
|
static_configs:
|
|
- targets: ['neo4j:7474']
|
|
metrics_path: '/metrics'
|
|
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|