我几乎没有创建过的应用洞察力和警报(智能检测-故障异常)。众所周知,“经典警报”将于2019年3月31日停用。
在我的场景中,我想通过ARM模板手动创建“新警报”。以前是“类型”:“ Microsoft.Insights / alertRules”的“故障异常-appinsightname01”。在这里,appinsightname01是应用程序分析名称,该警报是在应用程序分析时自动创建的。
现在,在8月31日之后将不再支持此功能,因此我想手动使用ARM模板创建新的
。在我们创建“ MetricAlert,AuditLogs,LogSearch”时使用代码支持它?
请给我您的意见。 谢谢
答案 0 :(得分:0)
感谢您与我们联系!
您可以将以下ARM模板用于故障异常v2(非经典)警报规则:
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "microsoft.alertsmanagement/smartdetectoralertrules",
"apiVersion": "2019-03-01",
"name": "Failure Anomalies - my-app",
"properties": {
"description": "Detects a spike in the failure rate of requests or dependencies",
"state": "Enabled",
"severity": "2",
"frequency": "PT1M",
"detector": {
"id": "FailureAnomaliesDetector"
},
"scope": ["/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyResourceGroup/providers/microsoft.insights/components/my-app"],
"actionGroups": {
"groupIds": ["/subscriptions/00000000-1111-2222-3333-444444444444/resourcegroups/MyResourceGroup/providers/microsoft.insights/actiongroups/MyActionGroup"]
}
}
}
]
}
希望这会有所帮助!