From dee1235c28148f69dfc491eac92752c784a634dc Mon Sep 17 00:00:00 2001 From: Eugene Blikh Date: Sun, 3 May 2026 19:44:41 +0300 Subject: [PATCH] docs: update collector verify notes --- docs/tasks/lethe-collector-claude-code.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/tasks/lethe-collector-claude-code.md b/docs/tasks/lethe-collector-claude-code.md index f65da53a0e78c8b7f3f258bf81da02ae43f4ac16..757691c4206d864e3212b137ad72b2acfa53c468 100644 --- a/docs/tasks/lethe-collector-claude-code.md +++ b/docs/tasks/lethe-collector-claude-code.md @@ -305,7 +305,7 @@ Interfaces: - CK10 (IF3) — `Sender.PostBatch(ctx, events)` is exercised by sender, outbox, and runner tests. - CK11 (IF4) — `RunOnce` / `RunDaemon` are exercised by CLI wiring and runner tests. -Smoke: `go run ./cmd/lethe-collector --config ./tmp/collector-smoke.yaml status` → prints host, state DB, outbox stats, and source list. +Smoke: `go run ./cmd/lethe-collector --config ./tmp/collector-smoke.yaml status` → prints host, state DB, outbox stats, source list, and `lag_bytes`. ## Conclusion @@ -319,10 +319,6 @@ Smoke: `go run ./cmd/lethe-collector --config ./tmp/collector-smoke.yaml status` - ureview (re-review): added WARN log with dropped row count and bytes to `EnforceOutboxLimit`. - ureview (re-review): added `lag_bytes` per file to `status` output using `parser.SourceFile.Size` from discovery. -### Deferred / known limitations - -- `status` does not display per-source `last_error` because the PH1 state schema (`ingestion_state` table) stores only `last_offset`, not error history or timestamps. Adding these requires a schema extension outside the current plan scope. - ### Deferred (needs user input) - retry/backoff: `http.retry_max` is loaded from config but exponential backoff needs a configured base/max delay; no conservative default was specified.