0d2cbdb423
Genericize forge-detection code: gitea→forge/generic_forge, GITEA_ACTOR→FORGE_ACTOR. Drop .gitea byte-identity test assertions (keep GitHub-side + contract conformance). Add test_no_forge_mentions.py guard test (REQ-230). Delete completed migration docs (NOVA_MIGRATION.md, NOVA_AWS_MIGRATION.md). Move NO_HUMANS_THESIS.md to .ciagent/ (internal artifact). Strip ciagent-internal provenance from synced docs (REQ-/D-/P-/CAP- IDs, milestone headers, .ciagent/PROJECT.md citations). Trim README.md (reusable deploy section, local key rotation paragraph). Fix version-tag drift (@v1.13→@v1.19, acdl/→nova/). ---ci--- project: acdl phase: 1 milestone: v1.20 status: execute requirements: [REQ-230, REQ-231, REQ-232] ---/ci---
68 lines
4.0 KiB
Markdown
68 lines
4.0 KiB
Markdown
# Nova Deferred Metrics Activation Roadmap
|
|
|
|
|
|
This document lists all 8 deferred metrics + the onboarding-funnel
|
|
"granted" half, with their blocking decisions, unblock requirements,
|
|
and candidate future milestones. It also includes the hot-path activation
|
|
plan (post-D-096) and the re-evaluation triggers.
|
|
|
|
## Deferred metrics
|
|
|
|
| # | Metric | Blocking Decision | What's Needed to Unblock | Candidate Milestone |
|
|
|---|--------|-------------------|-------------------------|---------------------|
|
|
| 1 | Live Infrastructure Health (ECS, ALB, RPS) | D-096 | Re-provision live AWS; deploy microservice/static-assets stacks; emit live health metrics | v1.18+ (live AWS re-provisioning) |
|
|
| 2 | Live Outbox Write Rate / Ledger Append Latency | D-096 | Re-provision DynamoDB outbox table; emit write-latency metrics | v1.18+ |
|
|
| 3 | Tamper-Evident Ledger Checkpoints / JWS Signature Rate | D-083 | Build S3 Object Lock + JWS signing + async worker + DLQ + daily checkpoints | v1.19+ (audit ledger build-out) |
|
|
| 4 | Onboarding Funnel (requested → granted) | D-113/D-114/D-119 | Implement auto-grant: Lambda provisions the cross-account role + ABAC tag + environment binding | v1.18+ (onboarding auto-grant) |
|
|
| 5 | Drift Auto-Reversal Rate | D-096 + no scheduler | Build a drift-detection scheduler (cron); run `terraform plan -detailed-exitcode` per workspace; emit drift.detected events | v1.20+ (drift detection) |
|
|
| 6 | Live CUR Reconciliation | D-096 | Re-provision live AWS billing access; build CUR reconciler (6h schedule); match bill lines to resource addresses via tags | v1.18+ |
|
|
| 7 | SLA / Unplanned Downtime | D-096 | Deploy live services with SLOs; emit uptime metrics against SLO targets | v1.18+ |
|
|
| 8 | Predictive vs Reactive Ratio | future emitter | Build an ML anomaly-forecasting service; emit anomaly.predicted events with proactive label | v1.21+ (predictive ops) |
|
|
|
|
## Onboarding-funnel "granted" half
|
|
|
|
The onboarding request path is grounded (REQ-182/183 from v1.16): a
|
|
consumer submits a request → the Lambda writes a `pending` CMDB row →
|
|
`core/onboarding.py` generates a binding file. The "granted" half
|
|
(actual AWS account/network/state provisioning) is deferred per
|
|
D-113/D-114/D-119. When a future milestone implements auto-grant, the
|
|
onboarding funnel metric activates: `count(granted) ÷ count(requested)`.
|
|
|
|
## Hot-Path Activation (post-D-096)
|
|
|
|
**Current state (v1.17):** SQLite cold store only (D-126). No hot path.
|
|
The hot path activates when live AWS is re-provisioned (D-096 lift).
|
|
|
|
**Nova-native hot-path candidates (D-120 — no Kafka/Prometheus/ClickHouse):**
|
|
1. **SQLite read-replica:** the cold store becomes a read-replica updated
|
|
on each run; a lightweight file-watcher notifies the dashboard of
|
|
changes. Freshness = "last run" (not 1-second, but sufficient for
|
|
batch ops).
|
|
2. **JSONL tail + webhook:** the events.jsonl log is tailed by a small
|
|
daemon that pushes updates to a webhook (e.g., a PowerBI streaming
|
|
dataset or a custom dashboard). Nova-native (no new infra).
|
|
3. **SQLite + Grafana SQLite datasource:** Grafana can read SQLite
|
|
directly via the SQLite datasource plugin. No TSDB needed.
|
|
|
|
**Migration steps (when D-096 lifts):**
|
|
1. Re-provision live AWS (microservice + static-assets stacks).
|
|
2. Add live-health emitters (ECS running count, ALB 5xx, RPS) to
|
|
`run_platform.sh`.
|
|
3. Choose a hot-path candidate (above) and implement it.
|
|
4. Populate the 8 placeholder views with real data.
|
|
5. Re-run the collector + PowerBI export.
|
|
|
|
## Re-evaluation Triggers
|
|
|
|
A follow-up metrics ideation should be triggered when any of these
|
|
events occurs:
|
|
|
|
1. **D-096 lift** (live AWS re-provisioned) — triggers hot-path
|
|
activation + placeholder view population for metrics 1, 2, 5, 6, 7.
|
|
2. **D-083 lift** (S3 Object Lock + JWS build-out approved) — triggers
|
|
tamper-evident ledger checkpoint metric (metric 3).
|
|
3. **Onboarding-grant lift** (auto-grant implemented) — triggers
|
|
onboarding funnel metric (metric 4).
|
|
|
|
When any trigger fires, re-run `/ci-run` with a metrics-focused milestone
|
|
to activate the corresponding placeholder views. |