Skip to content

Commit 0d25521

Browse files
committed
docs(showcase): rename probe references e2e-deep → d6-all-pills
Slice 3 (CopilotKit#5022) renamed the e2e-deep probe driver to d6-all-pills (also d4-chat-roundtrip + d5-single-pill in the same family). The two operator-facing docs still referenced the old names. Fix. No probe behavior change.
1 parent 7255531 commit 0d25521

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

showcase/DEBUGGING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,15 +463,15 @@ If a feature flipped red right when a deploy happened and `fail_count=1`, it's d
463463
**Get per-service flapping rates** from the harness API (last 10 probe runs):
464464

465465
```sh
466-
curl -s 'https://showcase-harness-production.up.railway.app/api/probes/probe:e2e-deep' | \
466+
curl -s 'https://showcase-harness-production.up.railway.app/api/probes/probe:d6-all-pills-e2e' | \
467467
python3 -c "
468468
import json, sys
469469
data = json.load(sys.stdin)
470470
runs = [r for r in data.get('runs', []) if r.get('state') == 'completed' and r.get('summary')][:10]
471471
stats = {}
472472
for run in runs:
473473
for svc in run['summary'].get('services', []):
474-
slug = svc.get('slug','?').replace('e2e-deep:showcase-','')
474+
slug = svc.get('slug','?').replace('d6-all-pills-e2e:showcase-','')
475475
result = svc.get('result', '?')
476476
stats.setdefault(slug, {'green': 0, 'red': 0})
477477
stats[slug]['green' if result == 'green' else 'red'] += 1

showcase/RUNBOOK.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Showcase D5 (e2e-deep) Runbook
1+
# Showcase D5 (d6-all-pills) Runbook
22

33
Operational documentation for debugging and fixing showcase D5 probe failures locally.
44
Intended audience: engineers and AI agents working on showcase integrations.
@@ -93,10 +93,10 @@ The harness emits structured logs at INFO level for probe lifecycle events:
9393

9494
- `probe.tick-start` / `probe.tick-complete` — probe run lifecycle
9595
- `probe.target-start` / `probe.target-complete` — per-service results
96-
- `probe.e2e-deep.service-start` / `probe.e2e-deep.service-complete` — D5 per-service
97-
- `probe.e2e-deep.feature-complete` — per-feature pass/fail with error details
96+
- `probe.d6-all-pills.service-start` / `probe.d6-all-pills.service-complete` — D5 per-service
97+
- `probe.d6-all-pills.feature-complete` — per-feature pass/fail with error details
9898
- `probe.run-summary` — single line with all service results
99-
- `probe.e2e-deep.pool-abort-release` — browser pool starvation events
99+
- `probe.d6-all-pills.pool-abort-release` — browser pool starvation events
100100

101101
View with: `RAILWAY_PROJECT_ID=6f8c6bff-a80d-4f8f-b78d-50b32bcf4479 railway logs --service showcase-harness --tail 200`
102102

@@ -109,7 +109,7 @@ To enable temporarily: set the env var in Railway dashboard → showcase-harness
109109
### Triggering probes manually
110110

111111
```
112-
curl -sf -X POST "https://showcase-harness-production.up.railway.app/api/probes/probe:e2e-deep/trigger" \
112+
curl -sf -X POST "https://showcase-harness-production.up.railway.app/api/probes/probe:d6-all-pills-e2e/trigger" \
113113
-H "Authorization: Bearer $OPS_TRIGGER_TOKEN" \
114114
-H "Content-Type: application/json"
115115
```

0 commit comments

Comments
 (0)