Skip to content

Commit f09f17e

Browse files
committed
Updating dash instructions to match current version
1 parent 4616091 commit f09f17e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/content/docs/queues/examples/list-messages-from-dash.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,36 @@ head:
1010
description: Use the dashboard to fetch and acknowledge the messages currently in a queue.
1111

1212
---
13+
import {Steps} from "~/components";
1314

1415
## List messages from the dashboard
1516

1617
Listing messages from the dashboard allows you to debug Queues or queue producers without a consumer Worker. Fetching a batch of messages to preview will not acknowledge or retry the message or affect its position in the queue. The queue can still be consumed normally by a consumer Worker.
1718

1819
To list messages in the dashboard:
1920

21+
<Steps>
2022
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com) and select your account.
21-
2. Select **Workers & Pages** > **Queues**.
23+
2. Select **Storage & Databases** > **Queues**.
2224
3. Select the queue to preview messages from.
2325
4. Select the **Messages** tab.
2426
5. Select **Queued Messages**.
2527
6. Select a maximum batch size of messages to fetch. The size can be a number from 1 to 100. If a consumer Worker is configured, this defaults to your consumer Worker's maximum batch size.
26-
27-
![A form to configure how many messages are listed at a time, with a number input showing '10'](~/assets/images/queues/examples/fetch-message-batch-size.png)
28-
2928
7. Select **List messages**.
3029
8. When the list of messages loads, select the blue arrow to the right of each row to expand the message preview.
31-
32-
![A table showing two previewed messages, one text and one JSON, both with some placeholder text](~/assets/images/queues/examples/fetched-messages.png)
30+
</Steps>
3331

3432
This will preview a batch of messages currently in the Queue.
3533

3634
## Acknowledge messages from the dashboard
3735

3836
Acknowledging messages from the [Cloudflare dashboard](https://dash.cloudflare.com) will permanently remove them from the queue, with equivalent behavior as `ack()` in a Worker.
3937

38+
<Steps>
4039
1. Select the checkbox to the left of each row to select the message for acknowledgement, or select the checkbox in the table header to select all messages.
4140
2. Select **Acknowledge messages**.
4241
3. Confirm you want to acknowledge the messages, and select **Acknowledge messages**.
42+
</Steps>
4343

4444
This will remove the selected messages from the queue and prevent consumers from processing them further.
4545

0 commit comments

Comments
 (0)