Skip to content

Commit 68b59e6

Browse files
author
Jill Grant
authored
Merge pull request #291855 from spelluru/spsbusfreshness1211
Service Bus - freshness, Acrolynx, Learn Linter
2 parents acff869 + 088c028 commit 68b59e6

18 files changed

+44
-43
lines changed

articles/service-bus-messaging/explorer.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use Azure Service Bus Explorer to run data operations
33
description: This article provides information on how to use the portal-based Azure Service Bus Explorer to access Azure Service Bus data.
44
ms.topic: how-to
5-
ms.date: 11/30/2023
5+
ms.date: 12/11/2024
66
ms.author: egrootenboer
77
---
88

@@ -145,14 +145,14 @@ The receive function on the Service Bus Explorer permits receiving messages from
145145
> [!NOTE]
146146
> For performance reasons, when receiving messages from a queue or subscription which has it's maximum message size set over 1MB, only one message will be received at a time. If the message body is over 1MB it will be truncated before being displayed.
147147
148-
After a message has been received in **PeekLock** mode, there are various actions we can take on it.
148+
After a message is received in **PeekLock** mode, there are various actions you can take on it.
149149

150150
> [!NOTE]
151-
> We can only take these actions as long as we have a lock on the message.
151+
> You can only take these actions as long as you have a lock on the message.
152152
153153
### Complete a message
154154

155-
1. In the grid, select the received message(s) we want to complete.
155+
1. In the grid, select the received messages you want to complete.
156156
1. Select the **Complete** button.
157157

158158
:::image type="content" source="./media/service-bus-explorer/receive-message-from-queue-complete.png" alt-text="Screenshot indicating the Complete button." lightbox="./media/service-bus-explorer/receive-message-from-queue-complete.png":::
@@ -162,28 +162,28 @@ After a message has been received in **PeekLock** mode, there are various action
162162
163163
### Defer a message
164164

165-
1. In the grid, select the received message(s) we want to [defer](./message-deferral.md).
165+
1. In the grid, select one or more received messages you want to [defer](./message-deferral.md).
166166
1. Select the **Defer** button.
167167

168168
:::image type="content" source="./media/service-bus-explorer/receive-message-from-queue-defer.png" alt-text="Screenshot indicating the Defer button." lightbox="./media/service-bus-explorer/receive-message-from-queue-defer.png":::
169169

170170
### Abandon lock
171171

172-
1. In the grid, select the received message(s) for which we want to abandon the lock.
172+
1. In the grid, select one or more received messages for which you want to abandon the lock.
173173
1. Select the **Abandon lock** button.
174174

175175
:::image type="content" source="./media/service-bus-explorer/receive-message-from-queue-abandon-lock.png" alt-text="Screenshot indicating the Abandon Lock button." lightbox="./media/service-bus-explorer/receive-message-from-queue-abandon-lock.png":::
176176

177-
After the lock has been abandoned, the message will be available for receive operations again.
177+
After the lock is abandoned, the message will be available for receive operations again.
178178

179179
### Dead-letter
180180

181-
1. In the grid, select the received message(s) we want to [dead-letter](./service-bus-dead-letter-queues.md).
181+
1. In the grid, select one or more received messages you want to [dead-letter](./service-bus-dead-letter-queues.md).
182182
1. Select the **Dead-letter** button.
183183

184184
:::image type="content" source="./media/service-bus-explorer/receive-message-from-queue-dead-letter.png" alt-text="Screenshot indicating the Dead-letter button." lightbox="./media/service-bus-explorer/receive-message-from-queue-dead-letter.png":::
185185

186-
After a message has been dead-lettered, it will be available from the **Dead-letter** subqueue.
186+
After a message is dead-lettered, it will be available from the **Dead-letter** subqueue.
187187

188188
### Purge messages
189189

@@ -199,28 +199,28 @@ To send a message to a **queue** or a **topic**, select the **Send messages** bu
199199

200200
1. Select the **Content Type** to be either **Text/Plain**, **Application/Xml** or **Application/Json**.
201201
1. For **Message body**, add the message content. Ensure that it matches the **Content Type** set earlier.
202-
1. Set the **Broker properties** (optional) - these include Correlation ID, Message ID, ReplyTo, Label/Subject, Time to Live (TTL) and Scheduled Enqueue Time (for Scheduled Messages).
203-
1. Set the **Custom Properties** (optional) - these can be any user properties set against a dictionary key.
202+
1. Set the **Broker properties** (optional). These properties include Correlation ID, Message ID, ReplyTo, Label/Subject, Time to Live (TTL) and Scheduled Enqueue Time (for Scheduled Messages).
203+
1. Set the **Custom Properties** (optional). These properties can be any user properties set against a dictionary key.
204204
1. Check **Repeat send** to send the same message multiple times. If no Message ID was set, it's automatically populated with sequential values.
205-
1. Once the message has been composed, select the **Send** button.
205+
1. Once the message is composed, select the **Send** button.
206206

207207
:::image type="content" source="./media/service-bus-explorer/send-experience.png" alt-text="Screenshot showing the compose message experience." lightbox="./media/service-bus-explorer/send-experience.png":::
208208

209-
1. When the send operation is completed successfully, one of the following will happen:
209+
1. When the send operation is completed successfully, one of the following changes happen:
210210

211-
- If sending to a queue, **Active Messages** metrics counter will increment.
212-
- If sending to a topic, **Active Messages** metrics counter will increment on the Subscriptions where the message was routed to.
211+
- If sending to a queue, **Active Messages** metrics counter is incremented.
212+
- If sending to a topic, **Active Messages** metrics counter is incremented on the subscriptions where the message was routed to.
213213

214214
## Resend a message
215215

216-
After peeking or receiving a message, we can resend it, which will send a copy of the message to the same entity, while allowing us to update it's content and properties. The original will remain and isn't deleted even when resend is from the deadletter queue.
216+
After peeking or receiving a message, you can resend it, which will send a copy of the message to the same entity, while allowing us to update it's content and properties. The original remains and isn't deleted even when resend is from the deadletter queue.
217217

218-
1. In the grid, select the message(s) we want to resend.
218+
1. In the grid, select one or more messages you want to resend.
219219
1. Select the **Re-send selected messages** button.
220220

221221
:::image type="content" source="./media/service-bus-explorer/queue-select-messages-for-resend.png" alt-text="Screenshot indicating the Resend selected messages button." lightbox="./media/service-bus-explorer/queue-select-messages-for-resend.png":::
222222

223-
1. Optionally, select any message for which we want to update its details and make the desired changes.
223+
1. Optionally, select any message for which you want to update its details and make the desired changes.
224224
1. Select the **Send** button to send the messages to the entity.
225225

226226
:::image type="content" source="./media/service-bus-explorer/queue-resend-selected-messages.png" alt-text="Screenshot showing the resend messages experience." lightbox="./media/service-bus-explorer/queue-resend-selected-messages.png":::
8.54 KB
Loading
-6.37 KB
Loading
Loading
78.9 KB
Loading
Loading
-14.1 KB
Loading
-3.74 KB
Loading

articles/service-bus-messaging/includes/service-bus-create-namespace-portal.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: include file
3-
description: include file
2+
title: Create a namespace
3+
description: Provides step-by-step instructions to create an Azure Service Bus namespace using the Azure portal.
44
author: spelluru
55
ms.service: azure-service-bus
66
ms.topic: include
7-
ms.date: 11/28/2023
7+
ms.date: 12/11/2024
88
ms.author: spelluru
99
ms.custom: include file
1010
---
@@ -21,15 +21,16 @@ To create a namespace:
2121
:::image type="content" source="./media/service-bus-create-namespace-portal/create-resource-service-bus-menu.png" alt-text="Image showing selection of Create a resource, Integration, and then Service Bus in the menu." lightbox="./media/service-bus-create-namespace-portal/create-resource-service-bus-menu.png":::
2222
4. In the **Basics** tag of the **Create namespace** page, follow these steps:
2323
1. For **Subscription**, choose an Azure subscription in which to create the namespace.
24-
1. For **Resource group**, choose an existing resource group in which the namespace will live, or create a new one.
24+
1. For **Resource group**, choose an existing resource group, or create a new one.
2525
1. Enter a **name for the namespace**. The namespace name should adhere to the following naming conventions:
2626
- The name must be unique across Azure. The system immediately checks to see if the name is available.
2727
- The name length is at least 6 and at most 50 characters.
28-
- The name can contain only letters, numbers, hyphens “-“.
28+
- The name can contain only letters, numbers, hyphens `-`.
2929
- The name must start with a letter and end with a letter or number.
30-
- The name doesn't end with -sb or -mgmt.
30+
- The name doesn't end with `-sb` or `-mgmt`.
3131
1. For **Location**, choose the region in which your namespace should be hosted.
3232
1. For **Pricing tier**, select the pricing tier (Basic, Standard, or Premium) for the namespace. For this quickstart, select **Standard**.
33+
1. If you select **Premium** tier, select whether you can enable **geo-replication** for the namespace. The Geo-Replication feature ensures that the metadata and data of a namespace are continuously replicated from a primary region to one or more secondary regions.
3334

3435
> [!IMPORTANT]
3536
> If you want to use [topics and subscriptions](../service-bus-queues-topics-subscriptions.md#topics-and-subscriptions), choose either Standard or Premium. Topics/subscriptions aren't supported in the Basic pricing tier.

0 commit comments

Comments
 (0)