> ## Documentation Index
> Fetch the complete documentation index at: https://docs.subtrace.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Using the dashboard

> See your app's backend requests in Subtrace

Once you've installed Subtrace and you've signed in to the [dashboard](https://subtrace.dev/dashboard),
you can view all the requests flowing through your app in real time! You can also inspect the headers,
payload, and request/response bodies:

<video width="100%" height="100%" controls>
  <source src="https://mintcdn.com/subtrace/qpTd5I2XwvFUV3U2/videos/live_requests.mp4?fit=max&auto=format&n=qpTd5I2XwvFUV3U2&q=85&s=b45af838a0902dbc01fb6baf1b658641" type="video/mp4" data-path="videos/live_requests.mp4" />
</video>

<Info>
  If your requests have timing information via the
  [Server-Timing](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Server-Timing)
  header, it will show up in the "Timing" tab as seen above.
</Info>

## Filtering requests

The filter bar in the dashboard allows you to restrict what kind of requests
show up on the Subtrace dashboard. For example, maybe you want to see only
requests that look like `api/HealthCheck`. You could use the filter
`request.url.endsWith("api/HealthCheck")` to achieve this.

Here's the filter in action:

<video width="100%" height="100%" controls>
  <source src="https://mintcdn.com/subtrace/qpTd5I2XwvFUV3U2/videos/filter_use.mp4?fit=max&auto=format&n=qpTd5I2XwvFUV3U2&q=85&s=9d970a29d47c4fc9b01ab6b327fefcb8" type="video/mp4" data-path="videos/filter_use.mp4" />
</video>

<Info>
  The syntax used in the filter bar is the same as in Subtrace's config file.
  You can find more details about the syntax [here](rules#syntax).
</Info>
