The subscriptions view lists every subscription known to the subscription engine, shows its current state, and lets you control it. This is where you boot new projectors, rerun them, pause noisy processors, or rebuild a projection from scratch.

Each subscription shows its id, group, run mode and status, alongside the total number of messages in the store so you can gauge how much work a rebuild involves. The status and run mode values come straight from the engine, so they always match what your application reports.
You can narrow the list with these filters:
The available groups, run modes and statuses are derived from the registered subscriptions, so the filter options reflect your actual setup.
Each subscription exposes the operations of the subscription engine as individual actions:
Rebuild and remove are destructive. Rebuild drops the subscription's current state and replays every event again, and remove deletes it outright. On a large store a rebuild can take a long time and put load on your database.
These actions run synchronously inside the web request. For a subscription that is far behind, run and rebuild can exceed your PHP execution time limit. For large catch-ups prefer the console commands of the event-sourcing-bundle and use the dashboard for inspection and lighter operations.