使用资源管理器模板创建资源运行状况警报
本文介绍如何使用 Azure 资源管理器模板和 Azure PowerShell 以编程方式创建资源运行状况活动日志警报。
通过 Azure 资源运行状况可得知 Azure 资源的当前及历史运行状况。 Azure 资源运行状况警报会在这些资源的运行状况发生变化时几乎实时地发出通知。 通过以编程方式创建资源运行状况警报,用户可以批量创建警报并对其进行自定义。
注意
建议使用 Azure Az PowerShell 模块与 Azure 交互。 若要开始,请参阅安装 Azure PowerShell。 若要了解如何迁移到 Az PowerShell 模块,请参阅 将 Azure PowerShell 从 AzureRM 迁移到 Az。
先决条件
若要按本页中的说明操作,需事先进行几项设置:
- 需安装 Azure PowerShell 模块
- 创建或重新使用配置为向你发出通知的操作组
说明
使用 PowerShell,使用你的帐户登录到 Azure,并选择需与之交互的订阅
Connect-AzAccount -Environment AzureChinaCloud Select-AzSubscription -Subscription <subscriptionId>
可以使用
Get-AzSubscription
列出有权访问的订阅。查找并保存操作组的完整 Azure 资源管理器 ID
(Get-AzActionGroup -ResourceGroupName <resourceGroup> -Name <actionGroup>).Id
创建资源运行状况警报的资源管理器模板,并保存为
resourcehealthalert.json
(请参阅下面的详细信息)使用该模板创建一个新的 Azure 资源管理器部署
New-AzResourceGroupDeployment -Name ExampleDeployment -ResourceGroupName <resourceGroup> -TemplateFile <path\to\resourcehealthalert.json>
系统将提示你键入之前复制的警报名称和操作组资源 ID:
Supply values for the following parameters: (Type !? for Help.) activityLogAlertName: <Alert Name> actionGroupResourceId: /subscriptions/<subscriptionId>/resourceGroups/<resourceGroup>/providers/microsoft.insights/actionGroups/<actionGroup>
如果一切正常,PowerShell 中将显示一条确认消息
DeploymentName : ExampleDeployment ResourceGroupName : <resourceGroup> ProvisioningState : Succeeded Timestamp : 11/8/2017 2:32:00 AM Mode : Incremental TemplateLink : Parameters : Name Type Value =============== ========= ========== activityLogAlertName String <Alert Name> activityLogAlertEnabled Bool True actionGroupResourceId String /... Outputs : DeploymentDebugLogLevel :
请注意,如果你打算使该进程完全自动化,只需在第 5 步中将资源管理器模板编辑为不提示值。
资源运行状况警报的资源管理器模板选项
可将此基本模板用作创建资源运行状况警报的起点。 此模板按创建时指定的方式运行,将你注册为接收订阅中所有资源所有新激活的资源运行状况事件的警报。
在本文末,我们还附有一个更为复杂的警报模板,与本模板相比,该模板增强了资源运行状况的噪音比信号。
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"activityLogAlertName": {
"type": "string",
"metadata": {
"description": "Unique name (within the Resource Group) for the Activity log alert."
}
},
"actionGroupResourceId": {
"type": "string",
"metadata": {
"description": "Resource Id for the Action group."
}
}
},
"resources": [
{
"type": "Microsoft.Insights/activityLogAlerts",
"apiVersion": "2017-04-01",
"name": "[parameters('activityLogAlertName')]",
"location": "Global",
"properties": {
"enabled": true,
"scopes": [
"[subscription().id]"
],
"condition": {
"allOf": [
{
"field": "category",
"equals": "ResourceHealth"
},
{
"field": "status",
"equals": "Active"
}
]
},
"actions": {
"actionGroups":
[
{
"actionGroupId": "[parameters('actionGroupResourceId')]"
}
]
}
}
}
]
}
但,不建议使用和本警报类似的广泛警报。 了解如何将本警报的范围精细调整为关注我们关心的以下事件。
调整警报范围
可将资源运行状况警报配置为监视三种不同的范围的事件:
- 订阅级别
- 资源组级别
- 资源级别
警报模板是在订阅级别配置的,但如果你需要将警报配置为仅通知关于某些资源或某个资源组内资源的运行状况,只需修改上述模板的 scopes
部分。
对于资源组级别的范围而言,范围部分应如下所示:
"scopes": [
"/subscriptions/<subscription id>/resourcegroups/<resource group>"
],
对于资源级别的范围而言,范围部分应如下所示:
"scopes": [
"/subscriptions/<subscription id>/resourcegroups/<resource group>/providers/<resource>"
],
例如:"/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourcegroups/myRG/providers/microsoft.compute/virtualmachines/myVm"
查看 Azure 资源以获取此字符串时,你可以转到 Azure 门户并查看 URL。
调整向你发出警报的资源类型
订阅级别或资源组级别的警报可能具有不同类型的资源。 如果要将警报限制为仅来自某个资源组子集,可在模板的 condition
部分进行定义,如下所示:
"condition": {
"allOf": [
...,
{
"anyOf": [
{
"field": "resourceType",
"equals": "MICROSOFT.COMPUTE/VIRTUALMACHINES",
"containsAny": null
},
{
"field": "resourceType",
"equals": "MICROSOFT.STORAGE/STORAGEACCOUNTS",
"containsAny": null
},
...
]
}
]
},
其中,我们使用 anyOf
包装器使资源运行状况警报符合指定的任何条件,从而实现以特定资源类型为目标的警报。
调整向你发出警报的资源运行状况事件
在资源经历运行状况事件时,它们可经过几个代表运行状况事件状态的阶段:Active
、In Progress
、Updated
和 Resolved
。
你可能希望在资源运行状况不正常时获得通知,在这种情况下需将警报配置为仅在 status
为 Active
时发出通知。 而如果希望在其他阶段也得到通知,可以像下面的示例那样添加相关详细信息:
"condition": {
"allOf": [
...,
{
"anyOf": [
{
"field": "status",
"equals": "Active"
},
{
"field": "status",
"equals": "In Progress"
},
{
"field": "status",
"equals": "Resolved"
},
{
"field": "status",
"equals": "Updated"
}
]
}
]
}
如果希望在运行状况的全部四个阶段都获得通知,可以将这一条件全部删除,这样不管 status
属性是什么,警报都会向你发出通知。
注意
每个“anyOf”部分应只包含一个字段类型值。
将资源运行状况警报调整为避免“Unknown”事件
Azure 资源运行状况可通过使用测试运行器持续监控资源,向你报告资源的最新运行状况。 其报告的相关运行状况为:“Available”、“Unavailable”和“Degraded”。 但是,在运行器和 Azure 资源无法通信的情况下,会将资源的运行状况报告为被视为“Active”运行状况的“Unknown”。
但是,如果资源报告为“Unknown”,很有可能自上一次准确报告以来,其运行状况未发生变化。 如果想取消关于“Unknown”事件的警报,可以在模板中指明该逻辑:
"condition": {
"allOf": [
...,
{
"anyOf": [
{
"field": "properties.currentHealthStatus",
"equals": "Available",
"containsAny": null
},
{
"field": "properties.currentHealthStatus",
"equals": "Unavailable",
"containsAny": null
},
{
"field": "properties.currentHealthStatus",
"equals": "Degraded",
"containsAny": null
}
]
},
{
"anyOf": [
{
"field": "properties.previousHealthStatus",
"equals": "Available",
"containsAny": null
},
{
"field": "properties.previousHealthStatus",
"equals": "Unavailable",
"containsAny": null
},
{
"field": "properties.previousHealthStatus",
"equals": "Degraded",
"containsAny": null
}
]
},
]
},
在此示例中,我们仅对当前和以前的运行状况不是“Unknown”的事件发出通知。 如果你的警报被直接发送到移动电话货电子邮件,这一变化可能比较有用。
请注意,在某些事件中,currentHealthStatus 和 previousHealthStatus 属性可能为 null。 例如,发生更新事件时,资源的运行状况状态可能自上次报告以来并未变化,只有该额外的事件信息(例如,原因)可用。 因此,使用上述原因可能导致某些警报无法触发,因为 properties.currentHealthStatus 和 properties.previousHealthStatus 的值将会设置为 null。
将警报调整为避免通知用户发起的事件
资源运行状况事件可以由平台发起的事件和用户发起的事件触发。 它的意义在于仅在运行状况事件由 Azure 平台引发时发送通知。
很容易地将警报配置为仅筛选以下事件类型:
"condition": {
"allOf": [
...,
{
"field": "properties.cause",
"equals": "PlatformInitiated",
"containsAny": null
}
]
}
请注意,在某些事件中,原因字段可能为 null。 也就是说,发生了运行状况转换(例如,从可用变为不可用),因此系统会立即记录事件,防止通知延迟。 因此,使用上述子句可能导致某个警报无法触发,因为 properties.cause 属性值将会设置为 NULL。
完成资源运行状况警报模板
下面是一个示例,该示例使用上一部分所述的不同调整方式进行了配置,可以最大限度增强信噪比。 请牢记上述注意事项,即,在某些事件中,currentHealthStatus、previousHealthStatus 和 cause 属性值可能为 null。
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"activityLogAlertName": {
"type": "string",
"metadata": {
"description": "Unique name (within the Resource Group) for the Activity log alert."
}
},
"actionGroupResourceId": {
"type": "string",
"metadata": {
"description": "Resource Id for the Action group."
}
}
},
"resources": [
{
"type": "Microsoft.Insights/activityLogAlerts",
"apiVersion": "2017-04-01",
"name": "[parameters('activityLogAlertName')]",
"location": "Global",
"properties": {
"enabled": true,
"scopes": [
"[subscription().id]"
],
"condition": {
"allOf": [
{
"field": "category",
"equals": "ResourceHealth",
"containsAny": null
},
{
"anyOf": [
{
"field": "properties.currentHealthStatus",
"equals": "Available",
"containsAny": null
},
{
"field": "properties.currentHealthStatus",
"equals": "Unavailable",
"containsAny": null
},
{
"field": "properties.currentHealthStatus",
"equals": "Degraded",
"containsAny": null
}
]
},
{
"anyOf": [
{
"field": "properties.previousHealthStatus",
"equals": "Available",
"containsAny": null
},
{
"field": "properties.previousHealthStatus",
"equals": "Unavailable",
"containsAny": null
},
{
"field": "properties.previousHealthStatus",
"equals": "Degraded",
"containsAny": null
}
]
},
{
"anyOf": [
{
"field": "properties.cause",
"equals": "PlatformInitiated",
"containsAny": null
}
]
},
{
"anyOf": [
{
"field": "status",
"equals": "Active",
"containsAny": null
},
{
"field": "status",
"equals": "Resolved",
"containsAny": null
},
{
"field": "status",
"equals": "In Progress",
"containsAny": null
},
{
"field": "status",
"equals": "Updated",
"containsAny": null
}
]
}
]
},
"actions": {
"actionGroups": [
{
"actionGroupId": "[parameters('actionGroupResourceId')]"
}
]
}
}
}
]
}
不过,什么样的配置最有效只有自己知道,请使用本文所述工具进行自定义吧。
后续步骤
了解有关资源运行状况的详细信息:
创建服务运行状况警报: