Request Inspector

The request inspector shows a live waterfall view of HTTP requests flowing through your bext instance, similar to browser DevTools but for your server.

Features

  • Auto-refreshing list — the inspector polls the connected instance every few seconds, so new requests show up within seconds of arriving
  • Filtering — Filter by status code, path pattern, method, or response time
  • Detail view — method, path, status, latency, cache status, content type, response size, and headers for each captured request

Usage

  1. Connect to an instance in the companion sidebar
  2. Click Requests in the navigation
  3. New requests appear automatically as the list refreshes
  4. Click any request to see the full detail panel

Tips

  • The status code column is color-coded: green (2xx), yellow (3xx), red (4xx/5xx)
  • Filter with path:/api/* to focus on API routes, or status:500 for errors
Note

The inspector polls on a refresh interval — it is not a live WebSocket stream. A short burst of requests may appear as a batch when the next poll fires.

Related