AZMSVnetConnectionEvents 테이블에 대한 쿼리

네임스페이스별로 거부 연결 게시

네트워크 데이터에 네임스페이스별로 거부 연결을 게시합니다.

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 데이터 게시

작업 상태 네임스페이스에 대한 vnet 데이터를 게시합니다.

AZMSVnetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "EventHub"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count, _ResourceId
| summarize by NamespaceName, Action

네임스페이스별로 거부 연결 게시

네임스페이스별로 거부 네트워크 연결 정보를 게시합니다.

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

네임스페이스별로 가상 네트워크 이벤트 게시

네임스페이스에 대한 결과를 사용하여 가상 네트워크 이벤트를 게시합니다.

AZMSVNetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "Relay"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count, _ResourceId
| summarize by NamespaceName, Action

네임스페이스별로 거부 연결 게시

네임스페이스별로 거부 네트워크 연결 정보를 게시합니다.

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

네임스페이스별로 가상 네트워크 이벤트 게시

네임스페이스에 대한 결과를 사용하여 가상 네트워크 이벤트를 게시합니다.

AZMSVNetConnectionEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where Provider =~ "ServiceBus"
| project Action, _SubscriptionId, NamespaceName, AddressIp, Reason, Count, _ResourceId
| summarize by NamespaceName, Action