Azure PowerShell Add-AlertRule在资源组上使用CpuPercentage时返回错误请求

时间:2015-11-09 02:04:54

标签: powershell azure

我获得了一个Azure资源组并尝试添加类型为CPUPercentage的度量标准警报规则,但它在BadRequest中失败。

> $r = Get-AzureRmResourcegroup
WARNING: The output object of this cmdlet will be modified in a future release.
> $a = $r[0]
> Add-AlertRule -Location "West US" -MetricName CpuPercentage -Name CPU98Percent -Operator GreaterThanOrEqual -ResourceGroup $a.ResourceGroupName -ResourceId $a.ResourceId -RuleType Metric -Threshold 98
Add-AlertRule : BadRequest:
At line:1 char:1
+ add-alertrule -Location "West US" -metricName CpuPercentage -Name CPU ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Add-AlertRule], CloudException
    + FullyQualifiedErrorId : Hyak.Common.CloudException,Microsoft.Azure.Commands.Insights.Alerts.AddAlertRuleCommand

它从门户网站正常工作。还没有具有相同名称的警报。 我使用的是Azure模块的第1版和AzureRM的1.0.2版。

1 个答案:

答案 0 :(得分:2)

当警报名称在Sql Server上的所有数据库中都不唯一时,我收到了同样的错误。也就是说,我在同一台服务器上有多个数据库,并且正在尝试创建名为“DTU Percentage”的规则,该规则在创建第一个数据库后将失败。使用唯一名称(“DTU Percentage DB_NAME”)后,即会创建警报。

不幸的是,听起来您遇到了另一个问题。我想我会为搜索类似错误的人添加这个答案。