You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- trace.rs: Use repeated query params (?keys=a&keys=b) instead of
comma-separated, since commas are legal in S3 keys
- trace.rs: Fetch S3 objects concurrently with join_all instead of
sequentially
- storage.rs: Use DisplayErrorContext for S3 errors to preserve the
full error chain
- dev_server.rs: Make port overrideable via PORT env var
- Update browser.html, tests, and README to match new keys format
Copy file name to clipboardExpand all lines: dial9-viewer/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Open `http://localhost:3000` to browse traces. Enter a search prefix (e.g. `2026
34
34
| Endpoint | Description |
35
35
|----------|-------------|
36
36
|`GET /api/search?q=<prefix>&bucket=<bucket>`| List S3 objects matching the prefix |
37
-
|`GET /api/trace?keys=<k1,k2,...>&bucket=<bucket>`| Fetch, gunzip, and concatenate trace segments |
37
+
|`GET /api/trace?keys=<k1>&keys=<k2>&bucket=<bucket>`| Fetch, gunzip, and concatenate trace segments |
38
38
39
39
The trace endpoint returns raw binary data (`application/octet-stream`) suitable for loading directly in the trace viewer via `?trace=` URL parameter. Maximum response size is 50 MB.
0 commit comments