【发布时间】:2020-03-22 00:35:24
【问题描述】:
我正在尝试查询所有受保护的 Azure VM 的复制运行状况,并将它们分为三种状态:正常、警告和严重。但是我在下面的代码中运行时出错:
AzureDiagnostics
| where replicationProviderName_s == "A2A"
| where isnotempty(name_s) and isnotnull(name_s)
| summarize hint.strategy=partitioned arg_max(TimeGenerated, *) by name_s
| project name_s , replicationHealth_s
| summarize count() by replicationHealth_s
| render piechart
错误是:“where”运算符:无法解析列或标量表达式;名为“replicationProviderName_S”的表达式
请帮我解决错误。
【问题讨论】: