通过 ARM 模板配置每日交易量上限警告级别

Configure Daily Volume Cap Warning Level via ARM Template

在 Azure Application Insights 实例的“使用情况和估计成本”边栏选项卡下,“每日上限”window 允许在达到每日交易量上限的特定百分比时发送警告.

默认情况下,此警告级别为 90% - 但可以设置为任何百分比。有没有办法通过 ARM 模板设置此百分比,而不是在 Azure 门户中手动设置?

用于设置应用洞察配额(包括警告阈值)的示例 ARM 模板如下。这将设置 5GiB 的限制,警告为 90%,并在每天 23:00 重置。:

    {
      "name": "[concat(parameters('appInsightsName'),'/Basic')]",
      "type": "Microsoft.Insights/components/CurrentBillingFeatures",
      "location": "[resourceGroup().location]",
      "apiVersion": "2015-05-01",
      "dependsOn": [
        "[resourceId('Microsoft.Insights/components', parameters('appInsightsName'))]"
      ],
      "properties": {
        "CurrentBillingFeatures": "Basic",
        "DataVolumeCap": {
          "Cap": 5,
          "WarningThreshold": 90,
          "ResetTime": 23
        }
      }
    }