You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-bus-messaging/explorer.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Use Azure Service Bus Explorer to run data operations
3
3
description: This article provides information on how to use the portal-based Azure Service Bus Explorer to access Azure Service Bus data.
4
4
ms.topic: how-to
5
-
ms.date: 11/30/2023
5
+
ms.date: 12/11/2024
6
6
ms.author: egrootenboer
7
7
---
8
8
@@ -145,14 +145,14 @@ The receive function on the Service Bus Explorer permits receiving messages from
145
145
> [!NOTE]
146
146
> 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.
147
147
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.
149
149
150
150
> [!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.
152
152
153
153
### Complete a message
154
154
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.
156
156
1. Select the **Complete** button.
157
157
158
158
:::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
162
162
163
163
### Defer a message
164
164
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).
166
166
1. Select the **Defer** button.
167
167
168
168
:::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":::
169
169
170
170
### Abandon lock
171
171
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.
173
173
1. Select the **Abandon lock** button.
174
174
175
175
:::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":::
176
176
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.
178
178
179
179
### Dead-letter
180
180
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).
182
182
1. Select the **Dead-letter** button.
183
183
184
184
:::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":::
185
185
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.
187
187
188
188
### Purge messages
189
189
@@ -199,28 +199,28 @@ To send a message to a **queue** or a **topic**, select the **Send messages** bu
199
199
200
200
1. Select the **Content Type** to be either **Text/Plain**, **Application/Xml** or **Application/Json**.
201
201
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.
204
204
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.
206
206
207
207
:::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":::
208
208
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:
210
210
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.
213
213
214
214
## Resend a message
215
215
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.
217
217
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.
219
219
1. Select the **Re-send selected messages** button.
Copy file name to clipboardExpand all lines: articles/service-bus-messaging/includes/service-bus-create-namespace-portal.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
---
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.
4
4
author: spelluru
5
5
ms.service: azure-service-bus
6
6
ms.topic: include
7
-
ms.date: 11/28/2023
7
+
ms.date: 12/11/2024
8
8
ms.author: spelluru
9
9
ms.custom: include file
10
10
---
@@ -21,15 +21,16 @@ To create a namespace:
21
21
:::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":::
22
22
4. In the **Basics** tag of the **Create namespace** page, follow these steps:
23
23
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.
25
25
1. Enter a **name for the namespace**. The namespace name should adhere to the following naming conventions:
26
26
- The name must be unique across Azure. The system immediately checks to see if the name is available.
27
27
- 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 `-`.
29
29
- 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`.
31
31
1. For **Location**, choose the region in which your namespace should be hosted.
32
32
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.
33
34
34
35
> [!IMPORTANT]
35
36
> 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.
description: Provides step-by-step instructions to create an Azure Service Bus queue using the Azure portal.
4
4
author: spelluru
5
5
ms.service: azure-service-bus
6
6
ms.topic: include
7
-
ms.date: 11/28/2023
7
+
ms.date: 12/11/2024
8
8
ms.author: spelluru
9
9
ms.custom: include file
10
10
---
11
11
12
12
## Create a queue in the Azure portal
13
-
1. On the **Service Bus Namespace** page, select**Queues**in the left navigational menu.
13
+
1. On the **Service Bus Namespace** page, expand**Entities**on the navigational menu to the left, and select **Queues**.
14
14
1. On the **Queues** page, select **+ Queue** on the toolbar.
15
15
1. Enter a **name** for the queue, and leave the other values with their defaults.
16
16
1. Now, select **Create**.
17
17
18
-
:::image type="content" source="./media/service-bus-create-queue-portal/create-queue3.png" alt-text="Image showing creation of a queue in the portal":::
18
+
:::image type="content" source="./media/service-bus-create-queue-portal/create-queue.png" alt-text="Screenshot that shows the Create queue page.":::
0 commit comments