File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
articles/service-bus-messaging Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
128
128
129
129
+ Get management operations in the last 7 days.
130
130
131
- ``` Kusto
131
+ ``` kusto
132
132
AzureDiagnostics
133
133
| where TimeGenerated > ago(7d)
134
134
| where ResourceProvider =="MICROSOFT.SERVICEBUS"
@@ -137,15 +137,15 @@ Following are sample queries that you can use to help you monitor your Azure Ser
137
137
```
138
138
+ Get runtime audit logs generated in the last one hour.
139
139
140
- ```Kusto
140
+ ```kusto
141
141
AzureDiagnostics
142
142
| where TimeGenerated > ago(1h)
143
143
| where ResourceProvider =="MICROSOFT.SERVICEBUS"
144
144
| where Category == "RuntimeAuditLogs"
145
145
```
146
146
+ Get access attempts to a key vault that resulted in "key not found" error.
147
147
148
- ```Kusto
148
+ ```kusto
149
149
AzureDiagnostics
150
150
| where ResourceProvider == "MICROSOFT.SERVICEBUS"
151
151
| 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
154
154
155
155
+ Get errors from the past 7 days
156
156
157
- ```Kusto
157
+ ```kusto
158
158
AzureDiagnostics
159
159
| where TimeGenerated > ago(7d)
160
160
| where ResourceProvider =="MICROSOFT.SERVICEBUS"
@@ -164,7 +164,7 @@ Following are sample queries that you can use to help you monitor your Azure Ser
164
164
165
165
+ Get operations performed with a key vault to disable or restore the key.
166
166
167
- ```Kusto
167
+ ```kusto
168
168
AzureDiagnostics
169
169
| where ResourceProvider == "MICROSOFT.SERVICEBUS"
170
170
| where (Category == "info" and (OperationName == "disable" or OperationName == "restore"))
You can’t perform that action at this time.
0 commit comments