Build your first Workbook
Auto-generate with Discovery, or build by hand; a worked example.
workbooksgetting-starteddiscovery
Build your first Workbook
Option A — auto-generate (fastest)
- Workbooks → Discover, paste your app URL.
- The Discovery Agent crawls and generates a runnable Workbook (web + API + APM + assertions).
- Run it, watch the narration, then save and schedule.
Option B — build by hand
- New Workbook → drag a Web Test node; configure the journey.
- Add an API Test node and connect it after the web node.
- Add an APM Observe node for the service you exercised.
- Add an Assertion node:
hasErrors IS_FALSE. - Optionally add a Branch → HTTP Action to remediate on failure.
- Click Run and watch the live timeline.
Worked example — "checkout is truly healthy"
Web Test (login -> add to cart -> checkout)
-> API Test (GET /api/order/{{orderId}}) assert status == 200
-> DB Collector (SELECT status FROM orders WHERE id = {{orderId}}) assert == 'confirmed'
-> APM Observe (service: checkout-api) assert hasErrors == false, p95 < 800ms
-> Assertion (all good?) -> Branch
true -> end (green)
false -> HTTP Action (open war room) + Approval (page on-call?)
This single run proves the journey worked, the order persisted, the replica was consistent, and the backend was clean — something no single tool checks.