我找不到可以通过ARM模板定义的事件/度量名称的文档,以在SQL弹性数据库池上设置警报。例如,我猜测"EdtuPercentage"是该度量的逻辑名称,但我想知道在哪里查找它。我也找不到在ARM资源管理器的门户网站上创建的警报。我感谢任何帮助!
{
"name": "[concat(variables('createElasticPoolOperationName'), '-0')]",
"type": "Microsoft.Resources/deployments",
"apiVersion": "2015-01-01",
"dependsOn": [ "[concat('Microsoft.Resources/deployments/', variables('createSqlServerOperationName'))]" ],
"properties": {
"mode": "Incremental",
"templateLink": {
"uri": "[variables('templateUrls').CreateSqlElasticPoolTemplateUrl]",
"contentVersion": "1.0.0.0"
},
"parameters": {
"sqlServerName": {
"value": "[variables('sqlServerName')]"
},
"name": {
"value": "[concat(variables('elasticPoolCanonicalName'), '-0')]"
},
"edition": {
"value": "[parameters('elasticPoolSettings').edition]"
},
"dtu": {
"value": "[parameters('elasticPoolSettings').dtu]"
},
"databaseDtuMin": {
"value": "[parameters('elasticPoolSettings').databaseDtuMin]"
},
"databaseDtuMax": {
"value": "[parameters('elasticPoolSettings').databaseDtuMax]"
}
}
},
"resources": [
{
"type": "Microsoft.Insights/alertRules",
"name": "[parameters('alertSettings').name]",
"location": "[resourceGroup().location]",
"apiVersion": "2014-04-01",
"properties": {
"name": "[parameters('alertSettings').name]",
"description": "[parameters('alertSettings').description]",
"isEnabled": true,
"condition": {
"odata.type": "Microsoft.Azure.Management.Insights.Models.ThresholdRuleCondition",
"dataSource": {
"odata.type": "Microsoft.Azure.Management.Insights.Models.RuleMetricDataSource",
"resourceUri": "/subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/Default-Storage-NorthCentralUS/providers/Microsoft.Web/serverfarms/Plan",
"metricName": "EdtuPercentage"
},
"threshold": 1,
"windowSize": "PT15M",
"timeAggregation": "Average"
},
"action": {
"odata.type": "Microsoft.Azure.Management.Insights.Models.RuleEmailAction",
"sendToServiceOwners": "[parameters('alertSettings').sendToServiceOwners]"
}
}
}
]
}
要查找可以在特定资源上设置的所有适用/可用度量的列表,可以使用powerShell命令。您可以使用此powershell命令获取所有此类度量及其逻辑名称的列表。
获取AzureRmMetricDefinition
例如,如果你想查找弹性池警报的指标列表,你可以简单地使用这个命令
获取AzureRmMetricDefinition-ResourceId"ElasticPoolResourceId"
您可以在此处提供弹性池的resourceID作为参数。它将为您提供一个列表,列出设置警报的所有适用指标。
希望这能有所帮助!