Skip to content

Commit 1d226da

Browse files
authored
Update monitor-service-bus.md
Fixing closing brackets
1 parent 6c0771f commit 1d226da

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

articles/service-bus-messaging/monitor-service-bus.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,10 @@ Following are sample queries that you can use to help you monitor your Azure Ser
180180
| where EventName_s startswith "AutoDelete"
181181
| summarize count() by EventName_s, _ResourceId
182182
```
183-
### [Resource Specific Table](#tab/Resource specific table)
183+
### [Resource Specific Table](#tab/Resourcespecifictable)
184184
185185
+ Get deny connection events for namespace
186+
186187
```kusto
187188
AZMSVNetConnectionEvents
188189
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
@@ -193,6 +194,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
193194
```
194195
195196
+ Get failed operation logs for namespace
197+
196198
```kusto
197199
AZMSOperationalLogs
198200
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
@@ -203,6 +205,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
203205
```
204206
205207
+ Get failed send message events for namespace
208+
206209
```kusto
207210
AZMSRunTimeAuditLogs
208211
| extend NamespaceInfo = tostring(split(_ResourceId, "/")[8])
@@ -212,14 +215,15 @@ Following are sample queries that you can use to help you monitor your Azure Ser
212215
| summarize by NamespaceInfo, ActivityName
213216
```
214217
+ Get Failed authorization results for SAS key
218+
215219
```kusto
216-
AZMSRunTimeAuditLogs
217-
| extend NamespaceInfo = tostring(split(_ResourceId, "/")[8])
218-
| where Provider =~ "ServiceBus"
219-
| where isnotnull(NamespaceInfo) and isnotnull(AuthKey) and AuthType == "AAD" and Status != "Success"
220-
| project NamespaceInfo, AuthKey, ActivityName, Protocol, NetworkType, ClientIp, ResourceId
221-
| summarize by NamespaceInfo, AuthKey, ActivityName
222-
```
220+
AZMSRunTimeAuditLogs
221+
| extend NamespaceInfo = tostring(split(_ResourceId, "/")[8])
222+
| where Provider =~ "ServiceBus"
223+
| where isnotnull(NamespaceInfo) and isnotnull(AuthKey) and AuthType == "AAD" and Status != "Success"
224+
| project NamespaceInfo, AuthKey, ActivityName, Protocol, NetworkType, ClientIp, ResourceId
225+
| summarize by NamespaceInfo, AuthKey, ActivityName
226+
```
223227

224228
## Alerts
225229
You can access alerts for Azure Service Bus by selecting **Alerts** from the **Azure Monitor** section on the home page for your Service Bus namespace. See [Create, view, and manage metric alerts using Azure Monitor](../azure-monitor/alerts/alerts-metric.md) for details on creating alerts.

0 commit comments

Comments
 (0)