az monitor metrics alert create的文档未解释用于--conditon
参数的格式。在我看来,该值最终作为allOf
参数传递给MetricAlertSingleResourceMultipleMetricCriteria 类的构造函数,如 metric_alert.py的Azure CLI 源中所示。但是,这意味着这是一个 列表MetricCritieria
,但文档示例如下:
--condition "total transactions > 5 where ResponseType includes Success"
--condition "avg SuccessE2ELatency > 250 where ApiName includes GetBlob or PutBlob"
这看起来不像是有效的格式list[MetricCritieria]