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

# ultra dashboard

> Start the web monitoring dashboard

Start a web-based dashboard for monitoring Ultra's observability data.

## Usage

```bash theme={null}
ultra dashboard [flags]
```

## Flags

| Flag        | Short | Default                    | Description                      |
| ----------- | ----- | -------------------------- | -------------------------------- |
| `--address` | `-a`  | `:8080`                    | Listen address for the dashboard |
| `--storage` | `-s`  | `~/.config/ultra/ultra.db` | Path to the local storage file   |
| `--dev`     |       | `false`                    | Enable development tools         |

## Examples

```bash theme={null}
# Start dashboard on default port
ultra dashboard

# Start dashboard on custom port
ultra dashboard --address :9090

# Use custom storage path
ultra dashboard --storage ~/.config/ultra/ultra.db
```

## Features

The dashboard provides:

* Real-time view of MCP traffic
* Trace inspection and debugging
* Audit log viewer
* Connected server status

## Concurrent Usage

You can run the dashboard while Ultra is running. Concurrent reads (dashboard) and writes (Ultra proxy) are supported.

```bash theme={null}
# Terminal 1: Run the proxy
ultra start

# Terminal 2: View traffic
ultra dashboard
```
