Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/azure/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Azure 通过ARM模板配置每日音量上限警告级别_Azure_Azure Application Insights_Arm Template - Fatal编程技术网

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

Azure 通过ARM模板配置每日音量上限警告级别,azure,azure-application-insights,arm-template,Azure,Azure Application Insights,Arm Template,在Azure Application Insights实例的“使用情况和估计成本”刀片下,“每日容量上限”窗口允许在达到每日容量上限的特定百分比时发送警告 默认情况下,此警告级别为90%,但可以设置为任何百分比。是否有办法通过ARM模板而不是在Azure门户中手动设置此百分比?用于设置应用程序洞察配额(包括警告阈值)的ARM模板示例如下。这将设置5Gb的限制,警告为90%,并在每天23:00重置: { “名称”:“[concat(参数('appInsightsName'),'/Basic')”,

在Azure Application Insights实例的“使用情况和估计成本”刀片下,“每日容量上限”窗口允许在达到每日容量上限的特定百分比时发送警告


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

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

{
“名称”:“[concat(参数('appInsightsName'),'/Basic')”,
“类型”:“Microsoft.Insights/components/CurrentBillingFeatures”,
“位置”:“[resourceGroup().location]”,
“apiVersion”:“2015-05-01”,
“dependsOn”:[
[resourceId('Microsoft.Insights/components',parameters('appInsightsName'))]
],
“财产”:{
“CurrentBillingFeatures”:“基本”,
“DataVolumeCap”:{
“第5章”,
“警告阈值”:90,
“重置时间”:23
}
}
}

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

{
“名称”:“[concat(参数('appInsightsName'),'/Basic')”,
“类型”:“Microsoft.Insights/components/CurrentBillingFeatures”,
“位置”:“[resourceGroup().location]”,
“apiVersion”:“2015-05-01”,
“dependsOn”:[
[resourceId('Microsoft.Insights/components',parameters('appInsightsName'))]
],
“财产”:{
“CurrentBillingFeatures”:“基本”,
“DataVolumeCap”:{
“第5章”,
“警告阈值”:90,
“重置时间”:23
}
}
}

这正是我要找的。谢谢这正是我要找的。谢谢