Skip to content

Commit f403253

Browse files
authored
Addressing first review comments
1 parent 68356ee commit f403253

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
128128

129129
+ Get management operations in the last 7 days.
130130

131-
```Kusto
131+
```kusto
132132
AzureDiagnostics
133133
| where TimeGenerated > ago(7d)
134134
| where ResourceProvider =="MICROSOFT.SERVICEBUS"
@@ -137,15 +137,15 @@ Following are sample queries that you can use to help you monitor your Azure Ser
137137
```
138138
+ Get runtime audit logs generated in the last one hour.
139139
140-
```Kusto
140+
```kusto
141141
AzureDiagnostics
142142
| where TimeGenerated > ago(1h)
143143
| where ResourceProvider =="MICROSOFT.SERVICEBUS"
144144
| where Category == "RuntimeAuditLogs"
145145
```
146146
+ Get access attempts to a key vault that resulted in "key not found" error.
147147
148-
```Kusto
148+
```kusto
149149
AzureDiagnostics
150150
| where ResourceProvider == "MICROSOFT.SERVICEBUS"
151151
| where Category == "Error" and OperationName == "wrapkey"
@@ -154,7 +154,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
154154
155155
+ Get errors from the past 7 days
156156
157-
```Kusto
157+
```kusto
158158
AzureDiagnostics
159159
| where TimeGenerated > ago(7d)
160160
| where ResourceProvider =="MICROSOFT.SERVICEBUS"
@@ -164,7 +164,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
164164
165165
+ Get operations performed with a key vault to disable or restore the key.
166166
167-
```Kusto
167+
```kusto
168168
AzureDiagnostics
169169
| where ResourceProvider == "MICROSOFT.SERVICEBUS"
170170
| where (Category == "info" and (OperationName == "disable" or OperationName == "restore"))

0 commit comments

Comments
 (0)