Documentation Index
Fetch the complete documentation index at: https://wsignal.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Storage Model
Each matched request is persisted as one JSON object per line. Typical file layout:Example Record
Field Reference
id
Generated event ID in the form evt_<timestamp>_<random>.
endpoint
Configured endpoint name that handled the request.
receivedAt
UTC timestamp for when the request was processed.
method
Incoming HTTP method.
url
Fully resolved request URL, including query string.
path
Matched request pathname.
statusCode
HTTP status that wsignal returned. For proxy endpoints, this is the upstream status or 502 if the upstream request failed.
logFile
Resolved destination log file path at capture time.
headers
Normalized incoming request headers.
query
Query parameters extracted from the request URL.
rawBody
UTF-8 body string as received.
bodySize
Captured body size in bytes.
jsonBody
Parsed JSON body, only present when rawBody is valid JSON.
In-Memory Read Model
Whenwsignal loads events for logs, inspect, or replay, it adds a sourceFile field in memory so commands can identify which file a record came from.
sourceFile is not written to disk.