Skip to content

Commit 129f089

Browse files
committed
Fixed links
1 parent 3189c4c commit 129f089

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

docs/realtime/backend/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Use these backend functions to subscribe to runs and streams from your server-si
1313
There are three main categories of functionality:
1414

1515
- **[Subscribe functions](/realtime/backend/subscribe)** - Subscribe to run updates using async iterators
16-
- **[Metadata](/realtime/backend/metadata)** - Update and subscribe to run metadata in real-time
16+
- **[Metadata](/realtime/backend/subscribe#subscribe-to-metadata-updates-from-your-tasks)** - Update and subscribe to run metadata in real-time
1717
- **[Streams](/realtime/backend/streams)** - Emit and consume real-time streaming data from your tasks
1818

1919
## Authentication

docs/realtime/overview.mdx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ import RealtimeExamplesCards from "/snippets/realtime-examples-cards.mdx";
88

99
Trigger.dev Realtime allows you to trigger, subscribe to, and get real-time updates for runs. This is useful for monitoring runs, updating UIs, and building real-time dashboards.
1010

11-
## What you can do with Realtime
12-
13-
Subscribe to real-time updates for different scopes of runs:
11+
You can subscribe to real-time updates for different scopes of runs:
1412

1513
- **Specific runs** - Monitor individual run progress by run ID
1614
- **Runs with specific tags** - Track all runs that have certain [tags](/tags) (e.g., all runs tagged with `user:123`)
@@ -20,21 +18,21 @@ Subscribe to real-time updates for different scopes of runs:
2018
Once subscribed, you'll receive the complete [run object](/realtime/run-object) with automatic real-time updates whenever the [run changes](/realtime/how-it-works#run-changes), including:
2119

2220
- **Status changes** - queued → executing → completed, etc.
23-
- **Metadata updates** - Custom progress tracking, status updates, user data, etc. ([React hooks](/realtime/react-hooks/subscribe#using-metadata) | [backend](/realtime/backend/metadata))
21+
- **Metadata updates** - Custom progress tracking, status updates, user data, etc. ([React hooks](/realtime/react-hooks/subscribe#using-metadata-to-show-progress-in-your-ui) | [backend](/realtime/backend/subscribe#subscribe-to-metadata-updates-from-your-tasks))
2422
- **Tag changes** - When [tags](/tags) are added or removed from the run
2523
- **Stream data** - Real-time data chunks from your tasks, perfect for AI/LLM streaming ([React hooks](/realtime/react-hooks/streams) | [backend](/realtime/backend/streams))
2624

27-
## Authentication
25+
## Using Realtime in your applications
2826

29-
All Realtime subscriptions require authentication so you can securely trigger and subscribe to runs. See our [authentication guide](/realtime/auth) for more details.
27+
### Authentication
3028

31-
## Realtime approaches
29+
All Realtime subscriptions require authentication so you can securely trigger and subscribe to runs. See our [authentication guide](/realtime/auth) for more details.
3230

3331
### Frontend implementation
3432

3533
Use our React hooks to build real-time UIs that update as runs execute. Ideal for progress bars, status indicators, and live dashboards.
3634

37-
**[See our React hooks guide](/realtime/react-hooks)**
35+
**[See our React hooks guide](/realtime/react-hooks/)**
3836

3937
### Backend implementation
4038

0 commit comments

Comments
 (0)