1

我有一个脚本,它有助于 ARM 模板在存储等其他依赖项中配置 Azure Service Fabric 集群(官方 Windows 服务器)。我不通过门户提供。

事实:

  1. 两天前,我使用此脚本配置集群并取得了圆满成功。

  2. 我昨天又试了一次,但配置失败(错误如下)。

  3. 只是为了向您保证配置脚本有效,我可以在其他订阅上成功地配置此脚本,并且它会持续可靠地成功。

错误:

资源 Microsoft.Insights/autoscaleSettings '1NodeVMSetAutoScale' 失败,并显示消息 'The metric with namespace '' and name '\Processor(_Total)\% Processor Time' is not supported for this resource id '/subscriptions/----/resourceGroups/ -cluster/providers/Microsoft.Compute/virtualMachineScaleSets/1'。晚上 8:10:01 - 资源 Microsoft.Insights/autoscaleSettings '2NodeVMSetAutoScale' 失败,并显示消息 'The metric with namespace'' and name '\Processor(_Total)\% Processor Time' is not supported for this resource id '/subscriptions/ ----/resourceGroups/cluster/providers/Microsoft.Compute/virtualMachineScaleSets/2'。8:10:01 PM -“模板输出评估已跳过:至少一项资源部署操作失败。请列出部署操作以了解详细信息。请参阅https://aka.ms/arm-debug有关用法的详细信息。”“字符串”不包含“错误”的定义

我的问题是为什么?它不能持续成功的原因是什么?你能帮忙解决问题吗?

相关信息:https ://azure.microsoft.com/en-us/documentation/articles/insights-autoscale-common-metrics/

4

2 回答 2

0

2个问题:

1)您在哪个地区部署?

2)在新订阅中,可以查看自己注册了哪些资源提供者,注册在哪些地区?在CLI中,命令如下所示:

azure config mode arm
azure provider list
azure provider show  Microsoft.Insights
于 2016-10-21T20:01:52.250 回答
0

自从订阅一周以来,我就遇到了同样的问题。出路是通过在 waddiagnostic 性能计数器部分下添加计数器“\Processor(_Total)\% Processor Time”来更改诊断配置。您还可以在这里讨论自动缩放:Service Fabric Autoscale

请分享您的模板/其中的一部分以进一步分析。

于 2016-10-29T03:49:10.350 回答