mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-13 18:07:36 +08:00
187 lines
4.3 KiB
Go
187 lines
4.3 KiB
Go
package ekg
|
|
|
|
import (
|
|
"bufio"
|
|
"encoding/json"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
type Event struct {
|
|
Time string `json:"time"`
|
|
TaskID string `json:"task_id,omitempty"`
|
|
Session string `json:"session,omitempty"`
|
|
Channel string `json:"channel,omitempty"`
|
|
Source string `json:"source,omitempty"`
|
|
Status string `json:"status"` // success|error|suppressed
|
|
ErrSig string `json:"errsig,omitempty"`
|
|
Log string `json:"log,omitempty"`
|
|
}
|
|
|
|
type SignalContext struct {
|
|
TaskID string
|
|
ErrSig string
|
|
Source string
|
|
Channel string
|
|
}
|
|
|
|
type Advice struct {
|
|
ShouldEscalate bool `json:"should_escalate"`
|
|
RetryBackoffSec int `json:"retry_backoff_sec"`
|
|
Reason []string `json:"reason"`
|
|
}
|
|
|
|
type Engine struct {
|
|
path string
|
|
recentLines int
|
|
consecutiveErrorThreshold int
|
|
}
|
|
|
|
func New(workspace string) *Engine {
|
|
p := filepath.Join(strings.TrimSpace(workspace), "memory", "ekg-events.jsonl")
|
|
return &Engine{path: p, recentLines: 2000, consecutiveErrorThreshold: 3}
|
|
}
|
|
|
|
func (e *Engine) SetConsecutiveErrorThreshold(v int) {
|
|
if e == nil {
|
|
return
|
|
}
|
|
if v <= 0 {
|
|
v = 3
|
|
}
|
|
e.consecutiveErrorThreshold = v
|
|
}
|
|
|
|
func (e *Engine) Record(ev Event) {
|
|
if e == nil || strings.TrimSpace(e.path) == "" {
|
|
return
|
|
}
|
|
if strings.TrimSpace(ev.Time) == "" {
|
|
ev.Time = time.Now().UTC().Format(time.RFC3339)
|
|
}
|
|
ev.TaskID = strings.TrimSpace(ev.TaskID)
|
|
ev.Session = strings.TrimSpace(ev.Session)
|
|
ev.Channel = strings.TrimSpace(ev.Channel)
|
|
ev.Source = strings.TrimSpace(ev.Source)
|
|
ev.Status = strings.TrimSpace(strings.ToLower(ev.Status))
|
|
if ev.ErrSig == "" && ev.Log != "" {
|
|
ev.ErrSig = NormalizeErrorSignature(ev.Log)
|
|
}
|
|
if ev.ErrSig != "" {
|
|
ev.ErrSig = NormalizeErrorSignature(ev.ErrSig)
|
|
}
|
|
_ = os.MkdirAll(filepath.Dir(e.path), 0o755)
|
|
b, err := json.Marshal(ev)
|
|
if err != nil {
|
|
return
|
|
}
|
|
f, err := os.OpenFile(e.path, os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0o644)
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer f.Close()
|
|
_, _ = f.Write(append(b, '\n'))
|
|
}
|
|
|
|
func (e *Engine) GetAdvice(ctx SignalContext) Advice {
|
|
adv := Advice{ShouldEscalate: false, RetryBackoffSec: 30, Reason: []string{}}
|
|
if e == nil {
|
|
return adv
|
|
}
|
|
taskID := strings.TrimSpace(ctx.TaskID)
|
|
errSig := NormalizeErrorSignature(ctx.ErrSig)
|
|
if taskID == "" || errSig == "" {
|
|
return adv
|
|
}
|
|
events := e.readRecentEvents()
|
|
if len(events) == 0 {
|
|
return adv
|
|
}
|
|
consecutive := 0
|
|
for i := len(events) - 1; i >= 0; i-- {
|
|
ev := events[i]
|
|
if strings.TrimSpace(ev.TaskID) != taskID {
|
|
continue
|
|
}
|
|
evErr := NormalizeErrorSignature(ev.ErrSig)
|
|
if evErr == "" {
|
|
evErr = NormalizeErrorSignature(ev.Log)
|
|
}
|
|
if evErr != errSig {
|
|
continue
|
|
}
|
|
if strings.ToLower(strings.TrimSpace(ev.Status)) == "error" {
|
|
consecutive++
|
|
if consecutive >= e.consecutiveErrorThreshold {
|
|
adv.ShouldEscalate = true
|
|
adv.RetryBackoffSec = 300
|
|
adv.Reason = append(adv.Reason, "repeated_error_signature")
|
|
adv.Reason = append(adv.Reason, "same task and error signature exceeded threshold")
|
|
return adv
|
|
}
|
|
continue
|
|
}
|
|
// Same signature but success/suppressed encountered: reset chain.
|
|
break
|
|
}
|
|
return adv
|
|
}
|
|
|
|
func (e *Engine) readRecentEvents() []Event {
|
|
if strings.TrimSpace(e.path) == "" {
|
|
return nil
|
|
}
|
|
f, err := os.Open(e.path)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
defer f.Close()
|
|
lines := make([]string, 0, e.recentLines)
|
|
s := bufio.NewScanner(f)
|
|
for s.Scan() {
|
|
line := strings.TrimSpace(s.Text())
|
|
if line == "" {
|
|
continue
|
|
}
|
|
lines = append(lines, line)
|
|
if len(lines) > e.recentLines {
|
|
lines = lines[1:]
|
|
}
|
|
}
|
|
out := make([]Event, 0, len(lines))
|
|
for _, l := range lines {
|
|
var ev Event
|
|
if json.Unmarshal([]byte(l), &ev) == nil {
|
|
out = append(out, ev)
|
|
}
|
|
}
|
|
return out
|
|
}
|
|
|
|
var (
|
|
rePathNum = regexp.MustCompile(`\b\d+\b`)
|
|
rePathHex = regexp.MustCompile(`\b0x[0-9a-fA-F]+\b`)
|
|
rePathWin = regexp.MustCompile(`[a-zA-Z]:\\[^\s]+`)
|
|
rePathNix = regexp.MustCompile(`/[^\s]+`)
|
|
reSpace = regexp.MustCompile(`\s+`)
|
|
)
|
|
|
|
func NormalizeErrorSignature(s string) string {
|
|
s = strings.TrimSpace(strings.ToLower(s))
|
|
if s == "" {
|
|
return ""
|
|
}
|
|
s = rePathWin.ReplaceAllString(s, "<path>")
|
|
s = rePathNix.ReplaceAllString(s, "<path>")
|
|
s = rePathHex.ReplaceAllString(s, "<hex>")
|
|
s = rePathNum.ReplaceAllString(s, "<n>")
|
|
s = reSpace.ReplaceAllString(s, " ")
|
|
if len(s) > 240 {
|
|
s = s[:240]
|
|
}
|
|
return s
|
|
}
|