AVNMConnectivityConfigurationChange 表的查询
有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询。
最近连接配置更改
列出 10 次最新连接配置更改。
AVNMConnectivityConfigurationChange
| top 10 by TimeGenerated desc
| project TimeGenerated, NetworkResourceIds, AppliedConnectivityConfigurations, ResultType
最近失败的连接配置更改
列出 100 次最新的失败连接配置更改。
AVNMConnectivityConfigurationChange
| where ResultType != "Success"
| sort by TimeGenerated desc
| take 100