- Replace incremental sync with full scan for new repositories - Add initial_scan status to bypass Since parameter filtering - Implement council formation detection for Design Brief issues - Add version display to WHOOSH UI header for debugging - Fix Docker token authentication with trailing newline removal - Add comprehensive council orchestration with Docker Swarm integration - Include BACKBEAT prototype integration for distributed timing - Support council-specific agent roles and deployment strategies - Transition repositories to active status after content discovery Key architectural improvements: - Full scan approach for new project detection vs incremental sync - Council formation triggered by chorus-entrypoint labeled Design Briefs - Proper token handling and authentication for Gitea API calls - Support for both initial discovery and ongoing task monitoring This enables autonomous project kickoff workflows where Design Brief issues automatically trigger formation of specialized agent councils for new projects. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
38 lines
845 B
YAML
38 lines
845 B
YAML
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
|
|
rule_files:
|
|
# - "first_rules.yml"
|
|
# - "second_rules.yml"
|
|
|
|
scrape_configs:
|
|
# BACKBEAT pulse service metrics
|
|
- job_name: 'backbeat-pulse'
|
|
static_configs:
|
|
- targets: ['pulse-1:8080', 'pulse-2:8080']
|
|
metrics_path: /metrics
|
|
scrape_interval: 10s
|
|
scrape_timeout: 5s
|
|
honor_labels: true
|
|
|
|
# BACKBEAT reverb service metrics
|
|
- job_name: 'backbeat-reverb'
|
|
static_configs:
|
|
- targets: ['reverb:8080']
|
|
metrics_path: /metrics
|
|
scrape_interval: 10s
|
|
scrape_timeout: 5s
|
|
honor_labels: true
|
|
|
|
# NATS monitoring
|
|
- job_name: 'nats'
|
|
static_configs:
|
|
- targets: ['nats:8222']
|
|
metrics_path: /
|
|
scrape_interval: 15s
|
|
|
|
# Prometheus self-monitoring
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: ['localhost:9090'] |