Skip to content

Commit fd486d8

Browse files
authored
[Queues] Updating dash instructions (#23965)
* Updating dash instructions to match current version * Updating instructions
1 parent 46028da commit fd486d8

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

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

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,34 @@ 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.
24-
5. Select **Queued Messages**.
25-
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-
29-
7. Select **List messages**.
30-
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)
26+
5. Select **List**.
27+
6. When the list of messages loads, select the blue arrow to the right of each row to expand the message preview.
28+
</Steps>
3329

3430
This will preview a batch of messages currently in the Queue.
3531

3632
## Acknowledge messages from the dashboard
3733

3834
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.
3935

36+
<Steps>
4037
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.
4138
2. Select **Acknowledge messages**.
4239
3. Confirm you want to acknowledge the messages, and select **Acknowledge messages**.
40+
</Steps>
4341

4442
This will remove the selected messages from the queue and prevent consumers from processing them further.
4543

0 commit comments

Comments
 (0)