Two kinds of rows
Each event has akind:
connection— a raw outbound connection. Carries the host (ordstIp), averdict, and byte counts. This is every connection the sandbox opened, whether or not a secret was involved.request— a secret-bearing request (the sandbox used a secret). Carriesmethod,path,status, and thesecretIdthat was used.
Verdicts
Everyconnection row has a verdict:
| Verdict | Meaning |
|---|---|
allowed | Connected — bytesSent / bytesRecv are populated |
blocked | Denied by one of your network rules, or because sandboxes are limited to the public internet — private and internal addresses are always blocked. matchRule names the rule that stopped it |
failed | Allowed by policy, but the connection couldn’t be established |
matchRule names the rule behind a blocked connection — a useful signal for catching when a sandbox tried to reach somewhere you didn’t expect.
Filtering
Narrow by verdict, or to a time window:A
verdict filter returns only connection rows — request rows have no verdict.Pagination
The log is cursor-paginated, newest first. PassnextCursor as before while hasMore is true: