@test-station/cli 0.2.30 → 0.2.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -300,10 +300,19 @@ Each benchmark record now also carries a `profiling` block with:
300
300
  - server-side page-load timings captured during `getServerSideProps`
301
301
  - browser page-ready marks for overview, project, run, operations, and runner-frame milestones
302
302
  - recent client-side route-transition events
303
+ - recent browser-side traced fetches and their upstream response ids
303
304
  - resource timings for `/graphql`, `/_next/data/`, and runner-report iframe requests
304
305
 
305
306
  These profiling fields only appear once the target deployment is running a build that includes the instrumentation hooks from this repo.
306
307
 
308
+ The traced web responses also expose:
309
+
310
+ - `x-request-id`
311
+ - `x-test-station-trace-id`
312
+ - `x-test-station-parent-request-id` when a request is part of a larger chain
313
+ - `x-test-station-upstream-request-id` / `x-test-station-upstream-trace-id` on proxied web API responses
314
+ - `Server-Timing` for SSR page loads and GraphQL endpoint timing
315
+
307
316
  Optional environment variables:
308
317
 
309
318
  - `TEST_STATION_E2E_BASE_URL`: target deployment to benchmark
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@test-station/cli",
3
- "version": "0.2.30",
3
+ "version": "0.2.32",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -12,8 +12,8 @@
12
12
  ".": "./src/index.js"
13
13
  },
14
14
  "dependencies": {
15
- "@test-station/core": "0.2.30",
16
- "@test-station/render-html": "0.2.30"
15
+ "@test-station/core": "0.2.32",
16
+ "@test-station/render-html": "0.2.32"
17
17
  },
18
18
  "scripts": {
19
19
  "build": "node ../../scripts/check-package.mjs ./src/index.js && node --check ./src/cli.js",