Query's voor de tabel AZMSVnetConnectionEvents
Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.
Verbinding weigeren op naamruimte publiceren
Publiceer de verbinding weigeren op naamruimte op netwerkgegevens.
AZMSVnetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "EventHub"
| where Action == "Deny Connection"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count
| summarize by Action, NamespaceName
VNet-gegevens van naamruimte publiceren
VNet-gegevens voor naamruimte publiceren op actiestatus.
AZMSVnetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "EventHub"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count, _ResourceId
| summarize by NamespaceName, Action
Verbinding weigeren op naamruimte publiceren
Publiceer netwerkverbindingsgegevens op naamruimte.
AZMSVNetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "Relay"
| where Action == "Deny Connection"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count
| summarize by Action, NamespaceName
Gebeurtenissen van virtuele netwerken publiceren op naamruimte
Publiceer gebeurtenissen van virtuele netwerken met resultaat voor naamruimte.
AZMSVNetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "Relay"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count, _ResourceId
| summarize by NamespaceName, Action
Verbinding weigeren op naamruimte publiceren
Publiceer netwerkverbindingsgegevens op naamruimte.
AZMSVNetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "ServiceBus"
| where Action == "Deny Connection"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count
| summarize by Action, NamespaceName
Gebeurtenissen van virtuele netwerken publiceren op naamruimte
Publiceer gebeurtenissen van virtuele netwerken met resultaat voor naamruimte.
AZMSVNetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "ServiceBus"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count, _ResourceId
| summarize by NamespaceName, Action