* feat(telemetry): D1 schema + migrations for raw events and daily rollups First step of replacing PostHog with self-hosted telemetry on Cloudflare D1. Creates the codegraph-telemetry database binding and the initial migration; no worker code paths change yet (the ingest write path and the nightly rollup cron land next). Schema is raw events plus daily rollups: `events` holds one row per sanitized event with the envelope broken out into columns and event-specific props as JSON; `daily_machines`, `daily_event_counts` and `daily_dim_counts` are the nightly rollups the dashboard reads; `machine_first_seen` and `machine_days` carry the retention cohorts and are never purged. One generic dimension table covers every bar and pie, so a new breakdown is a cron change rather than a migration. The migration is commented as an audit surface, like the rest of this worker — every column, and which dashboard chart each rollup table serves. Three judgment calls worth flagging, all documented in the file: - `events` gets `(day, event)` instead of the separate `(day)` and `(event, day)` indexes. D1 bills a row write per index touched, so a third index on the hot table costs ~97k writes/day, and `(day, event)` is a covering index for plain day-range scans anyway (verified with EXPLAIN QUERY PLAN). - `daily_event_counts` and `daily_dim_counts` carry a `machines` column, and `machine_days` a `prod` flag. The "users by ..." panels and the production-user count are distinct-machine numbers, not event counts, and they are unrecoverable once raw events are purged. - No CHECK constraint on `event`: the worker's allowlist is the source of truth and the write path is fail-silent, so a rejected INSERT would lose data quietly instead of erroring loudly. Volume note in the migration footer: ~30M row writes/month against the 50M included on Workers Paid. Storage is the tighter constraint — raw events grow ~74 MB/day, so retention should start at 90 days (~6.7 GB) rather than 180, which would exceed D1's 10 GB per-database cap. * feat(telemetry): admin dashboard worker — scaffold + shared-password auth New Cloudflare Worker at telemetry-dashboard/, sibling of telemetry-worker/ and bound read-only to the same D1 database. Serves a static frontend plus a JSON API behind a shared password, on stats.getcodegraph.com. Auth is the simplest thing that is actually safe for exactly two users: one password in a secret, compared in constant time over SHA-256 digests, and an HMAC-signed cookie (HttpOnly; Secure; SameSite=Lax; Path=/) with a one-year expiry so you sign in once per browser. The cookie is a signed assertion, not a lookup key — no session store. Its payload carries a fingerprint of the password it was minted against, so rotating ADMIN_PASSWORD signs everyone out. Login attempts are capped at 5/min per IP via a ratelimit binding. Everything is deny-by-default: assets.run_worker_first routes every request through the worker before the static-asset server sees it, so the dashboard HTML, its JS, its CSS and the chart library are all behind the session check. The login page is rendered inline by the worker rather than served from public/, which leaves no "is this file public?" judgement calls in the asset directory. Unauthenticated pages 302 to /login, unauthenticated /api/* gets 401. A missing secret fails closed rather than opening the dashboard. scripts/smoke-auth.sh is the regression net — 54 assertions against a throwaway `wrangler dev` covering the gate, cookie flags and persistence, forged/flipped/ truncated cookies, open-redirect refusal, brute-force capping, and password rotation invalidating live sessions. Refs CG-11. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * chore(telemetry-dashboard): simplify the chart-library probe in the shell Refs CG-11. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * feat(telemetry): nightly rollup cron + raw-event retention purge (CG-10) Adds a scheduled() handler to the ingest worker that recomputes daily_event_counts / daily_dim_counts / daily_machines for the just-completed UTC day plus a 2-day overlap (late-arriving offline buffers), then purges raw events past the retention window. Rollup writes are idempotent upserts, so a re-run never double-counts. Also adds an ADMIN_TOKEN-guarded POST /admin/rollup?day=YYYY-MM-DD for backfill/repair, and drops the PostHog forwarding path. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * feat(telemetry): dashboard charts — SQL API over D1 + the Chart.js views (CG-12, CG-13) Replaces the scaffold page with the dashboard proper: 19 panels covering every view of the PostHog dashboard this retires, driven by one filter row. src/api.ts is the read API CG-12 specified: /api/{meta,summary,timeseries, breakdown,activation,retention}, all range-scoped, all parameterized against a closed set of dims and metrics, all shaped labels[] + datasets[] so the frontend does no arithmetic. Rollups answer everything except the activation funnel, which needs raw events and says where they start. The frontend splits into a DOM-free panel registry (public/panels.js) and the page that mounts it (public/app.js), so the render check can drive the same registry the browser rendered from. Panels fail alone, refetch dims rather than flashing, and every chart carries a table twin. Two numbers are labelled rather than rounded off: range-wide "users" per dimension is machine-days (the rollups cannot give distinct machines, and per-day counts are taken as the largest single-event count so one machine's install + index + usage is not counted three times), and recent activation and retention cohorts are marked as still-converting instead of drawn as a cliff. Both colour scales were run through the data-viz validator against the panel surface, not picked by eye; the results are recorded in public/theme.js. Verification, all against the committed fixture (12 machines over 10 days, every expected number worked out by hand from the events, not recorded from a run): scripts/smoke-api.sh 98 assertions scripts/render-check.mjs 79 assertions — real Chromium over CDP, no new deps scripts/smoke-auth.sh 54 assertions (unchanged, still green) Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * feat(telemetry): cutover runbook + the end-to-end gate that de-risks it (CG-14) The account-level steps of the PostHog cutover are the maintainer's to run, so this lands the runbook they follow and the check that has to pass first. The runbook (telemetry-worker/README.md) walks the six steps in the order that keeps them reversible: Workers Paid → migrate → deploy → watch 24h → verify the first rollup and the dashboard → only then delete POSTHOG_KEY and cancel the subscription. Step 3 records the outgoing version id because `wrangler rollback` is the escape hatch for the whole verification window, and that window is precisely why the PostHog key is deleted last rather than first. The new gate (scripts/smoke-cutover.sh, `npm run smoke:cutover`) covers the one seam nothing else did. Both workers declare the same D1 database_id, so pointing them at a single --persist-to directory runs the real chain: a client batch → the ingest worker → D1 → the nightly rollup → the dashboard API reading the numbers back. Every other suite stops at one link — smoke-ingest at the events table, smoke-rollup at hand-checked SQL, smoke-api at a hand-written fixture that the cron never touched. That left the dimension names the rollup WRITES versus the ones the dashboard READS agreeing by convention across two branches, where a mismatch is silent: no error, no failed request, just a panel reading zero forever. 61 assertions, all 13 dimensions, and three deliberate traps — a ci machine that is active but not a production user, usage_rollup counts that must be summed rather than tallied, and an uninstall's `targets` that must not leak into the install-scoped breakdown. Writing it caught that the activation funnel's denominator is first-seen machines, not install events (deliberate — a reinstall must not re-enter the funnel), so the suite now pins that distinction rather than assuming it. Also rewords the last PostHog reference in dashboard code: a comment justifying the 14-day retention curve by pointing at a dashboard step 6 deletes. The reasoning now stands on its own. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * docs(telemetry): tell the truth about where events are stored (CG-15) The telemetry docs are a privacy contract, and they still described a managed analytics store that no longer receives anything. Replace that with what actually happens now — events land in our own D1 database on Cloudflare, the endpoint makes no outbound requests, raw events are purged after 90 days and only anonymous daily rollups outlive them. This strengthens the guarantee rather than restating it: there is no second party to share with. - TELEMETRY.md: new "Where it is stored" section; the never-collected IP bullet no longer leans on a vendor-side setting to hold. - docs/design/telemetry.md: ingest section rewritten around D1 + the nightly rollup/retention cron; volume math redone on Workers Paid and the D1 quota (storage, not writes, is what sets the 90-day window); new section documenting the dashboard worker and cross-linking it. - Fixed three drifts from the worker allowlist the sweep surfaced: schema_version was still 1, client_name/client_version was still marked "plumbing to add" though session.ts passes it today, and the legacy sqlite_backend field the worker still accepts was undocumented. - telemetry-worker/README.md: step 6 claimed a repo-wide grep came back clean, which this runbook itself falsifies. Added step 7 — deleting the runbook is what makes that grep true, and is the completion check. - smoke-cutover.sh: the vendor guarantee is now asserted by class (no analytics-ingest endpoint referenced) rather than by one vendor's name, so it keeps working once the name is gone. Verified it still catches a planted forwarding URL. 61/61 pass. Retention is documented as 90 days, not the 180 in the task notes: 180 days of raw events exceeds D1's 10 GB per-database cap, and the code purges at 90. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * chore: untrack local Kommandr issue DB and ignore its sqlite artifacts Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
271 lines
13 KiB
Bash
Executable File
271 lines
13 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# The cutover gate (CG-14): drives the WHOLE chain the way production will run it —
|
|
# a client POSTs a batch, the ingest worker writes D1, the nightly rollup aggregates,
|
|
# and the dashboard reads the numbers back out.
|
|
#
|
|
# Every other suite tests one link. smoke-ingest.sh stops at the `events` table,
|
|
# smoke-rollup.sh hand-checks the rollup SQL, and smoke-api.sh reads a fixture that
|
|
# was written by hand rather than by the cron. That leaves exactly the seam this
|
|
# cutover turns on unverified: the dimension names the rollup WRITES versus the ones
|
|
# the dashboard READS. Those two lists live in different workers on different
|
|
# branches, and a mismatch is silent — no error, no failed request, just a panel that
|
|
# renders zero forever. Catching that after cutover means a day of lost telemetry;
|
|
# catching it here costs a minute.
|
|
#
|
|
# Both workers declare the same D1 `database_id`, so pointing them at one
|
|
# `--persist-to` directory gives them literally the same local SQLite file. The state
|
|
# is a fresh mktemp each run, so every expected number below is exact rather than a
|
|
# lower bound.
|
|
#
|
|
# npm run smoke:cutover
|
|
#
|
|
# Expected numbers are derived from THE_BATCH below and nothing else; see the table
|
|
# in that comment block.
|
|
set -uo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
WORKER_DIR="$PWD"
|
|
DASH_DIR="$(cd .. && pwd)/telemetry-dashboard"
|
|
|
|
[ -d "$DASH_DIR" ] || { echo "cannot find telemetry-dashboard/ next to telemetry-worker/"; exit 1; }
|
|
|
|
INGEST_PORT="${CUTOVER_INGEST_PORT:-8795}"
|
|
DASH_PORT="${CUTOVER_DASH_PORT:-8796}"
|
|
INGEST="http://127.0.0.1:$INGEST_PORT"
|
|
DASH="http://127.0.0.1:$DASH_PORT"
|
|
|
|
# Test-only credentials. The point is to exercise the wiring, not to keep a secret.
|
|
ADMIN_TOKEN=cutover-admin-token
|
|
DASH_PASSWORD=cutover-dashboard-password
|
|
SESSION_SECRET=cutover-session-secret
|
|
|
|
STATE="$(mktemp -d -t cg-cutover-state)"
|
|
JAR="$(mktemp -t cg-cutover-jar)"
|
|
ILOG=/tmp/cg-cutover-ingest.log
|
|
DLOG=/tmp/cg-cutover-dash.log
|
|
|
|
pass=0; fail=0
|
|
ok() { pass=$((pass + 1)); printf ' ok %s\n' "$1"; }
|
|
bad() { fail=$((fail + 1)); printf ' FAIL %s — expected %s, got %s\n' "$1" "$2" "$3"; }
|
|
is() { [ "$2" = "$3" ] && ok "$1" || bad "$1" "$2" "$3"; }
|
|
|
|
DEV_PID=""
|
|
stop_dev() {
|
|
[ -n "$DEV_PID" ] || return 0
|
|
kill "$DEV_PID" 2>/dev/null
|
|
wait "$DEV_PID" 2>/dev/null
|
|
DEV_PID=""
|
|
}
|
|
cleanup() { stop_dev; rm -rf "$STATE" "$JAR"; }
|
|
trap cleanup EXIT
|
|
|
|
# Boot a worker in <dir> on <port> against the SHARED state, wait for <readyurl>.
|
|
boot() { # boot <dir> <port> <readyurl> <log> [extra wrangler args...]
|
|
local dir="$1" port="$2" ready="$3" log="$4"; shift 4
|
|
( cd "$dir" && exec npx wrangler dev --port "$port" --ip 127.0.0.1 \
|
|
--persist-to "$STATE" "$@" ) >"$log" 2>&1 &
|
|
DEV_PID=$!
|
|
for _ in $(seq 1 90); do
|
|
curl -sf -o /dev/null "$ready" && return 0
|
|
kill -0 "$DEV_PID" 2>/dev/null || break
|
|
sleep 1
|
|
done
|
|
echo "worker in $dir never came up on :$port — log follows"; cat "$log"; exit 1
|
|
}
|
|
|
|
# Resolve a dotted path through a JSON document. Numeric segments index arrays.
|
|
jget() {
|
|
node -e '
|
|
let v = JSON.parse(process.argv[1]);
|
|
for (const k of process.argv[2].split(".")) v = v?.[k];
|
|
console.log(v === undefined ? "<missing>" : typeof v === "object" && v !== null ? JSON.stringify(v) : String(v));
|
|
' "$1" "$2"
|
|
}
|
|
|
|
day_ago() { node -e 'console.log(new Date(Date.now()-process.argv[1]*864e5).toISOString().slice(0,10))' "$1"; }
|
|
|
|
# Inside the ingest clamp window (30 days) and outside the cron's 3-day lookback.
|
|
DAY="$(day_ago 5)"
|
|
RANGE="from=$DAY&to=$DAY"
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# THE_BATCH — three machines, one day. Everything asserted below follows from here.
|
|
#
|
|
# machine os arch node version ci events
|
|
# m1 darwin arm64 22 1.5.0 false install(local/fresh, [claude,cursor])
|
|
# index([typescript,python], 100-1k, 10-60s)
|
|
# usage_rollup(codegraph_explore x12, Claude Code)
|
|
# m2 linux x64 20 1.5.0 false install(global/upgrade, [codex])
|
|
# index([typescript], 1k-10k, 1-5m)
|
|
# usage_rollup(codegraph_explore x8, Codex CLI)
|
|
# m3 linux arm64 22 1.4.1 TRUE index([go], <100, <10s)
|
|
# uninstall([claude])
|
|
#
|
|
# The three deliberate traps:
|
|
# * m3 is ci=true, so it counts as active but NOT as a production user.
|
|
# * tool_calls must SUM the `count` prop (12 + 8 = 20), not count the 2 rows.
|
|
# * m3's uninstall carries targets=[claude], so a `target` breakdown that forgets
|
|
# to scope by event would report claude twice.
|
|
# ---------------------------------------------------------------------------
|
|
M1=11111111-1111-4111-8111-111111111111
|
|
M2=22222222-2222-4222-8222-222222222222
|
|
M3=33333333-3333-4333-8333-333333333333
|
|
|
|
post_batch() { # post_batch <json>
|
|
curl -s -o /dev/null -w '%{http_code}' -X POST "$INGEST/v1/events" \
|
|
-H 'content-type: application/json' --data-binary "$1"
|
|
}
|
|
|
|
batch() { # batch <machine> <os> <arch> <node> <version> <ci> <events-json>
|
|
node -e '
|
|
const [m, os, arch, node_major, v, ci, events, day] = process.argv.slice(1);
|
|
process.stdout.write(JSON.stringify({
|
|
machine_id: m, codegraph_version: v, os, arch,
|
|
node_major: Number(node_major), ci: ci === "true", schema_version: 1,
|
|
events: JSON.parse(events).map((e) => ({ ...e, ts: `${day}T12:00:00Z` })),
|
|
}));
|
|
' "$@" "$DAY"
|
|
}
|
|
|
|
# ---------------------------------------------------------------------------
|
|
echo "cutover chain: client → ingest worker → D1 → rollup → dashboard"
|
|
echo
|
|
echo "migrating the shared local D1 state"
|
|
( cd "$WORKER_DIR" && npx wrangler d1 migrations apply codegraph-telemetry \
|
|
--local --persist-to "$STATE" ) >/tmp/cg-cutover-migrate.log 2>&1 ||
|
|
{ echo "migration failed:"; cat /tmp/cg-cutover-migrate.log; exit 1; }
|
|
|
|
echo "booting the ingest worker on :$INGEST_PORT"
|
|
boot "$WORKER_DIR" "$INGEST_PORT" "$INGEST/" "$ILOG" --var "ADMIN_TOKEN:$ADMIN_TOKEN"
|
|
|
|
echo
|
|
echo "ingest accepts the batch"
|
|
is "m1 batch → 204" 204 "$(post_batch "$(batch "$M1" darwin arm64 22 1.5.0 false '[
|
|
{"event":"install","props":{"scope":"local","kind":"fresh","targets":["claude","cursor"]}},
|
|
{"event":"index","props":{"languages":["typescript","python"],"file_count_bucket":"100-1k","duration_bucket":"10-60s"}},
|
|
{"event":"usage_rollup","props":{"kind":"mcp_tool","name":"codegraph_explore","count":12,"client_name":"Claude Code"}}
|
|
]')")"
|
|
is "m2 batch → 204" 204 "$(post_batch "$(batch "$M2" linux x64 20 1.5.0 false '[
|
|
{"event":"install","props":{"scope":"global","kind":"upgrade","targets":["codex"]}},
|
|
{"event":"index","props":{"languages":["typescript"],"file_count_bucket":"1k-10k","duration_bucket":"1-5m"}},
|
|
{"event":"usage_rollup","props":{"kind":"mcp_tool","name":"codegraph_explore","count":8,"client_name":"Codex CLI"}}
|
|
]')")"
|
|
is "m3 (ci) batch → 204" 204 "$(post_batch "$(batch "$M3" linux arm64 22 1.4.1 true '[
|
|
{"event":"index","props":{"languages":["go"],"file_count_bucket":"<100","duration_bucket":"<10s"}},
|
|
{"event":"uninstall","props":{"targets":["claude"]}}
|
|
]')")"
|
|
|
|
sleep 2 # let the ctx.waitUntil writes drain before rolling up
|
|
|
|
echo
|
|
echo "the nightly rollup aggregates the day"
|
|
ROLL=$(curl -s -X POST -H "x-admin-token: $ADMIN_TOKEN" "$INGEST/admin/rollup?day=$DAY")
|
|
is "POST /admin/rollup → ok" true "$(jget "$ROLL" ok)"
|
|
is "rollup wrote rows" true "$(node -e 'process.stdout.write(String((JSON.parse(process.argv[1]).rows ?? 0) > 0))' "$ROLL")"
|
|
|
|
stop_dev # free the D1 lock before the dashboard opens the same file
|
|
|
|
echo
|
|
echo "booting the dashboard on :$DASH_PORT against the same D1"
|
|
( cd "$DASH_DIR" && npm run --silent vendor ) >/dev/null 2>&1
|
|
boot "$DASH_DIR" "$DASH_PORT" "$DASH/robots.txt" "$DLOG" \
|
|
--var "ADMIN_PASSWORD:$DASH_PASSWORD" --var "SESSION_SECRET:$SESSION_SECRET"
|
|
|
|
curl -s -o /dev/null -c "$JAR" -X POST "$DASH/login" --data-urlencode "password=$DASH_PASSWORD"
|
|
api() { curl -s -b "$JAR" "$DASH/api/$1"; }
|
|
is "dashboard session established" 200 "$(curl -s -o /dev/null -w '%{http_code}' -b "$JAR" "$DASH/api/health")"
|
|
|
|
# --- the big numbers -------------------------------------------------------
|
|
echo
|
|
echo "summary panel reads back what was ingested"
|
|
S=$(api "summary?$RANGE")
|
|
is "production users (ci machine excluded)" 2 "$(jget "$S" production_users)"
|
|
is "active machines" 3 "$(jget "$S" active_machines)"
|
|
is "new machines" 3 "$(jget "$S" new_machines)"
|
|
is "installs" 2 "$(jget "$S" installs)"
|
|
is "uninstalls" 1 "$(jget "$S" uninstalls)"
|
|
is "indexing runs" 3 "$(jget "$S" index_runs)"
|
|
is "tool calls SUM the count prop (12+8)" 20 "$(jget "$S" tool_calls)"
|
|
|
|
# --- every dimension the dashboard offers ----------------------------------
|
|
# This is the actual point of the suite: each of these is a distinct string that
|
|
# must match between rollup.ts and api.ts's DIMS registry. An empty `labels` means
|
|
# the dashboard is asking for a dimension the cron never writes.
|
|
echo
|
|
echo "every breakdown dimension resolves against the cron's output"
|
|
bd() { # bd <desc> <query> <expected-labels-json> <expected-data-json>
|
|
local body; body=$(api "breakdown?$RANGE&$2")
|
|
is "$1 — labels" "$3" "$(jget "$body" labels)"
|
|
is "$1 — data" "$4" "$(jget "$body" datasets.0.data)"
|
|
}
|
|
bd "os" "dim=os" '["linux","darwin"]' '[2,1]'
|
|
bd "arch" "dim=arch" '["arm64","x64"]' '[2,1]'
|
|
bd "version" "dim=codegraph_version" '["1.5.0","1.4.1"]' '[2,1]'
|
|
bd "node major" "dim=node_major" '["22","20"]' '[2,1]'
|
|
bd "language" "dim=language" '["typescript","go","python"]' '[2,1,1]'
|
|
bd "files in project" "dim=file_count_bucket" '["<100","100-1k","1k-10k","10k+"]' '[1,1,1,0]'
|
|
bd "run length" "dim=duration_bucket" '["<10s","10-60s","1-5m","5m+"]' '[1,1,1,0]'
|
|
bd "install scope" "dim=scope" '["global","local"]' '[1,1]'
|
|
bd "install kind" "dim=kind" '["fresh","upgrade"]' '[1,1]'
|
|
bd "tool name" "dim=name" '["codegraph_explore"]' '[20]'
|
|
bd "agent" "dim=client_name" '["Claude Code","Codex CLI"]' '[12,8]'
|
|
|
|
# The trap: `target` defaults to event=install, so the uninstall's own claude target
|
|
# must NOT be folded in — and must still be reachable by asking for it explicitly.
|
|
bd "agent target (install-scoped)" "dim=target" '["claude","codex","cursor"]' '[1,1,1]'
|
|
bd "agent target (uninstall)" "dim=target&event=uninstall" '["claude"]' '[1]'
|
|
|
|
# --- the remaining panels --------------------------------------------------
|
|
echo
|
|
echo "the timeseries and funnel panels see the day"
|
|
# Every entry in api.ts's SERIES registry — each one reads a different rollup table,
|
|
# so this is the second half of the write-vs-read seam the breakdowns cover above.
|
|
ts() { # ts <desc> <metric> <series-0> [series-1]
|
|
local body; body=$(api "timeseries?$RANGE&metric=$2")
|
|
is "$1 — day" "[\"$DAY\"]" "$(jget "$body" labels)"
|
|
is "$1 — series" "$3" "$(jget "$body" datasets.0.data)"
|
|
[ $# -ge 4 ] && is "$1 — second series" "$4" "$(jget "$body" datasets.1.data)"
|
|
}
|
|
ts "installs and uninstalls" installs_uninstalls '[2]' '[1]'
|
|
ts "new installs" new_installs '[3]'
|
|
ts "production users" production_users '[2]'
|
|
ts "indexing activity" indexing_activity '[3]' '[3]'
|
|
ts "tool calls (sums the prop)" tool_calls '[20]' '[2]'
|
|
|
|
MET=$(api "meta")
|
|
is "meta anchors on the rolled-up day" "$DAY" "$(jget "$MET" latest_day)"
|
|
is "meta reports the rollup ran" "$DAY" "$(jget "$MET" latest_rollup_day)"
|
|
|
|
# The funnel is the one panel that reads RAW events rather than a rollup, so it is
|
|
# also the one the retention purge can blind — worth pinning that it works today.
|
|
#
|
|
# Its denominator is FIRST-SEEN MACHINES, not `install` events (api.ts: "a machine
|
|
# that reinstalls does not re-enter the funnel"). m3 is the discriminator: it never
|
|
# sent an install event, but it is new and it indexed, so it belongs in both legs.
|
|
# Reading 2 here would mean the funnel had quietly become an install-event ratio.
|
|
ACT=$(api "activation?$RANGE&window=1")
|
|
is "funnel counts new machines, not install events" 3 "$(jget "$ACT" installs)"
|
|
is "all three indexed within the window" 3 "$(jget "$ACT" activated)"
|
|
is "nobody dropped out" 0 "$(jget "$ACT" dropped)"
|
|
is "raw-event floor is reported to the caller" "$DAY" "$(jget "$ACT" raw_events_from)"
|
|
|
|
is "retention endpoint answers" 200 \
|
|
"$(curl -s -o /dev/null -w '%{http_code}' -b "$JAR" "$DASH/api/retention?$RANGE")"
|
|
|
|
# --- the guarantee the cutover is selling ----------------------------------
|
|
echo
|
|
echo "the no-third-party guarantee still holds"
|
|
is "ingest worker makes no outbound fetch" 0 \
|
|
"$(grep -E 'fetch\(' "$WORKER_DIR"/src/*.ts | grep -vc 'async fetch(request' || true)"
|
|
is "ingest worker names no third-party analytics endpoint" 0 \
|
|
"$(grep -rEil 'https?://[a-z0-9.-]+/(batch|capture|collect|track|ingest)' \
|
|
"$WORKER_DIR"/src "$WORKER_DIR"/wrangler.jsonc 2>/dev/null | wc -l | tr -d ' ')"
|
|
|
|
echo
|
|
if [ "$fail" -eq 0 ]; then
|
|
echo "$pass passed, 0 failed — the chain is whole; safe to cut over"
|
|
else
|
|
echo "$pass passed, $fail failed"
|
|
fi
|
|
[ "$fail" -eq 0 ]
|