chore: auto-commit (7 archivos)
- app.md - call_monitor - main.go - operations.db - operations.db-shm - operations.db-wal - daemon.go Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
name: call_monitor
|
name: call_monitor
|
||||||
lang: go
|
lang: go
|
||||||
domain: infra
|
domain: infra
|
||||||
|
version: 0.1.0
|
||||||
description: "Telemetria de invocaciones del agente al fn_registry. Persiste eventos (calls, code_writes, test_runs, e2e_runs_fn, violations, patterns, sessions) en su propia operations.db. Vista agregada function_stats por function_id alimenta el bucle reactivo (proposals automaticas). Issue 0085."
|
description: "Telemetria de invocaciones del agente al fn_registry. Persiste eventos (calls, code_writes, test_runs, e2e_runs_fn, violations, patterns, sessions) en su propia operations.db. Vista agregada function_stats por function_id alimenta el bucle reactivo (proposals automaticas). Issue 0085."
|
||||||
tags: [service, telemetry, monitoring, registry, sqlite]
|
tags: [service, telemetry, monitoring, registry, sqlite]
|
||||||
uses_functions:
|
uses_functions:
|
||||||
@@ -14,6 +15,20 @@ framework: "stdlib"
|
|||||||
entry_point: "main.go"
|
entry_point: "main.go"
|
||||||
dir_path: "projects/fn_monitoring/apps/call_monitor"
|
dir_path: "projects/fn_monitoring/apps/call_monitor"
|
||||||
repo_url: ""
|
repo_url: ""
|
||||||
|
service:
|
||||||
|
port: null
|
||||||
|
health_endpoint: null
|
||||||
|
health_timeout_s: 3
|
||||||
|
systemd_unit: call_monitor.service
|
||||||
|
systemd_scope: user
|
||||||
|
restart_policy: always
|
||||||
|
runtime: systemd-user
|
||||||
|
pc_targets:
|
||||||
|
- aurgi-pc
|
||||||
|
- home-wsl
|
||||||
|
is_local_only: true
|
||||||
|
# Runtime: subcomando `daemon` mantiene loop cada `--interval` (default 5m)
|
||||||
|
# llamando snapshot + sequences --detect --propose. Ver daemon.go.
|
||||||
e2e_checks:
|
e2e_checks:
|
||||||
- id: build
|
- id: build
|
||||||
cmd: "CGO_ENABLED=1 go build -tags fts5 -o call_monitor ."
|
cmd: "CGO_ENABLED=1 go build -tags fts5 -o call_monitor ."
|
||||||
@@ -143,3 +158,13 @@ Para correr manualmente fuera del schedule: `systemctl --user start call_monitor
|
|||||||
- BD vive **junto al binario** (`<exe_dir>/operations.db`) por defecto, no en el cwd del agente. Hook puede pasar `--db` explicito si conviene.
|
- BD vive **junto al binario** (`<exe_dir>/operations.db`) por defecto, no en el cwd del agente. Hook puede pasar `--db` explicito si conviene.
|
||||||
- `operations.db` gitignored — telemetria es local por PC, no se sincroniza.
|
- `operations.db` gitignored — telemetria es local por PC, no se sincroniza.
|
||||||
- Sin `repo_url`: aun no se ha hecho `gitea_create_repo`. Se inicializara con `/full-git-push` cuando este la fase 0085b lista para evitar repos vacios.
|
- Sin `repo_url`: aun no se ha hecho `gitea_create_repo`. Se inicializara con `/full-git-push` cuando este la fase 0085b lista para evitar repos vacios.
|
||||||
|
|
||||||
|
|
||||||
|
## Capability growth log
|
||||||
|
|
||||||
|
Una linea por bump SemVer. Bump-type segun `.claude/commands/version.md`:
|
||||||
|
- `major`: breaking observable (CLI args, schema BBDD propia, formato wire).
|
||||||
|
- `minor`: feature aditiva (nuevo panel, endpoint, opcion).
|
||||||
|
- `patch`: bugfix sin cambio observable.
|
||||||
|
|
||||||
|
- v0.1.0 (2026-05-18) — baseline.
|
||||||
|
|||||||
Binary file not shown.
@@ -0,0 +1,71 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"os/signal"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// runDaemon mantiene call_monitor vivo como systemd service. Cada `interval`
|
||||||
|
// ejecuta los pasos batch en orden (snapshot + sequences --detect --propose).
|
||||||
|
// Idempotente: cada uno se salta trabajo ya hecho. Errores se loguean y no
|
||||||
|
// abortan el daemon (siguiente tick lo reintenta).
|
||||||
|
func runDaemon(dbPath, registryRoot string, interval time.Duration) {
|
||||||
|
log.Printf("call_monitor daemon: db=%s registry=%s interval=%s",
|
||||||
|
dbPath, registryRoot, interval)
|
||||||
|
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
// Signal handling — clean exit on SIGTERM/SIGINT.
|
||||||
|
sigCh := make(chan os.Signal, 1)
|
||||||
|
signal.Notify(sigCh, syscall.SIGTERM, syscall.SIGINT)
|
||||||
|
go func() {
|
||||||
|
s := <-sigCh
|
||||||
|
log.Printf("call_monitor daemon: received %s, shutting down", s)
|
||||||
|
cancel()
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Initial cycle immediately, then on interval.
|
||||||
|
runCycleSafe(dbPath, registryRoot)
|
||||||
|
|
||||||
|
tick := time.NewTicker(interval)
|
||||||
|
defer tick.Stop()
|
||||||
|
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-ctx.Done():
|
||||||
|
log.Printf("call_monitor daemon: stopped")
|
||||||
|
return
|
||||||
|
case <-tick.C:
|
||||||
|
runCycleSafe(dbPath, registryRoot)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func runCycleSafe(dbPath, registryRoot string) {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
log.Printf("call_monitor daemon: cycle panic recovered: %v", r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
// Snapshot: registra (function_id, content_hash) en function_versions.
|
||||||
|
log.Printf("call_monitor daemon: cycle start")
|
||||||
|
runSnapshot(dbPath, registryRoot)
|
||||||
|
|
||||||
|
// Sequences detection: persiste candidatas + proposals new_pipeline.
|
||||||
|
cfg := SequenceConfig{
|
||||||
|
WindowSecs: 30,
|
||||||
|
LookbackDays: 30,
|
||||||
|
MinOccurrences: 5,
|
||||||
|
MinSessions: 2,
|
||||||
|
MinSuccessRate: 0.9,
|
||||||
|
}
|
||||||
|
runSequences(dbPath, true, false, true, false, registryRoot, cfg)
|
||||||
|
|
||||||
|
log.Printf("call_monitor daemon: cycle done")
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"text/tabwriter"
|
"text/tabwriter"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
const defaultDBName = "operations.db"
|
const defaultDBName = "operations.db"
|
||||||
@@ -75,6 +76,11 @@ func main() {
|
|||||||
LookbackDays: *lookback,
|
LookbackDays: *lookback,
|
||||||
Tools: tools,
|
Tools: tools,
|
||||||
}, *persist, *formatJSON)
|
}, *persist, *formatJSON)
|
||||||
|
case "daemon":
|
||||||
|
registry := fs.String("registry", "", "Path to registry.db (default: walk up from cwd until found).")
|
||||||
|
interval := fs.Duration("interval", 5*time.Minute, "How often to run snapshot+sequences cycle.")
|
||||||
|
fs.Parse(os.Args[2:])
|
||||||
|
runDaemon(resolveDB(*dbPath), *registry, *interval)
|
||||||
case "-h", "--help", "help":
|
case "-h", "--help", "help":
|
||||||
usage()
|
usage()
|
||||||
default:
|
default:
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user