I am trying to create an alert for SQL Server so that whenever CPU percentage goes high, it should send an email and I have this code which sadly not working.
$ResourceGroup = 'pp-rg-cloud-dev1-aks'
$server = 'abcd'
$db = 'efgh'
$location = 'eastus'
$rid = (Get-AzResource -ResourceGroupName $ResourceGroup -ResourceName "$server/$db").ResourceID
$email = New-AzAlertRuleEmail -CustomEmail 'user@user.com' -SendToServiceOwner
Add-AzMetricAlertRule -Name 'CPU percentage' `
-Location $location `
-ResourceGroup $ResourceGroup `
-TargetResourceId $rid `
-MetricName 'dtu_consumption_percent' `
-Operator GreaterThanOrEqual `
-Threshold 90 `
-WindowSize '00:05:00' `
-TimeAggregationOperator Maximum `
-Action $email
but I get this error:
Add-AzMetricAlertRule : Exception type: ErrorResponseException, Message: Creating or editing classic alert rules based on this metric is no longer supported. To learn about new alert rules see https://aka.ms/create-metric-alerts, Code: BadRequest, Status code:BadRequest, Reason phrase: Bad Request
At line:1 char:1
- Add-AzMetricAlertRule -Name 'CPU percentage'
- CategoryInfo : CloseError: (:) [Add-AzMetricAlertRule], PSInvalidOperationException
- FullyQualifiedErrorId : Microsoft.Azure.Commands.Insights.Alerts.AddAzureRmMetricAlertRuleCommand
No matter what I try, it always says that metric no longer exist. Is there any way I can find the alert name?