[ Documentation ]
peach network

peach network

Read the shared observability store (fetch + XHR captured in the render worker) from the terminal. List recent requests, tail in real time, filter by URL or status, inspect one entry in detail, or clear the buffer. Shares its data source with the in-shell devtools dock so both views stay in lock-step.

terminal
peach network [limit]
peach network --failed
peach network --slow [--threshold <ms>]
peach network --filter <substring>
peach network --tail
peach network get <id>
peach network clear

Options

flagdescription
--failedonly show errored or non-2xx responses
--slowonly show requests slower than —threshold (default 1000ms), sorted by duration desc
--threshold <ms>slow threshold in milliseconds for —slow (default 1000)
--filter <substring>URL substring filter (case-insensitive)
--limit <n>max entries to print (default 20)
--tail, -ffollow mode: stream new entries as they land
--jsonemit structured JSON instead of formatted rows
--sim <sim>target a specific connected sim
--port <number>bridge port (defaults to 7668)

Examples

terminal
peach network
peach network 100
peach network --failed
peach network --slow
peach network --slow --threshold 200
peach network --filter api.example.com
peach network --tail
peach network --tail --failed
peach network get req-42-l7k9
peach network clear