SOLVED

New V2 alert from PowerShell

Brass Contributor

Hi All,

 

I want to create alert using PowerShell and could certainly do this however I have three questions: -

 

1- When I am using "Add-AzureRmMetricAlertRule" CMDlet to create alerts they are coming under classic alerts. Why? . And how I could create new alert using PowerShell not the classic ones. 

The script what I am using is as follows: -

 

Add-AzureRmMetricAlertRule -Location "Canada East" -MetricName "Percentage CPU" -Name "GouravRHEL CPU" -Operator GreaterThan -Threshold 90 -ResourceGroup "GouravRHEL" -TargetResourceId "/subscriptions/XXXXXXXXXXXXXXXXXXXXX/resourceGroups/GouravRHEL/providers/Microsoft.Compute/virtualMachines/GouravRHEL" -TimeAggregationOperator Average -WindowSize "02:00:00" -Action $action -Description "This rule sends alert of CPU"

2-  In action I am adding mail ids, so the second question is related to this only. How I could add action group during alert creation using powershell.

 

3- My third and last question is there any possible way to use KQL in place of metric name. As we have some custom alert that are use KQL query to check condition in place of metric name.

9 Replies
Hi, This community space is mainly about Log Analytics and not alerts, but I've sent your message to the alerting team. They will reply here or send me their answer and I'll post it.
Thanks Noa, Please keep me posted about progress.

could you please let me know if we have any particular forum for Azure Monitors.
best response confirmed by GouravIN (Brass Contributor)
Solution

Hi Gourav,

 

The cmdlet you are using is for classic metric alerts in Azure Monitor. Classic metric alerts didn't support action groups and used a custom notification mechanism. 

We don't yet have PowerShell cmdlets for newer metric alerts. We are actively working on those and will provide an announcement once they are ready. 

 

In the meanwhile, if you are trying to create metric alerts, you can use Azure CLI to automate creating alerts. You can also create action groups through CLI as well. 

 

 

If you trying to create log alerts based on Kusto queries, today the only way to automate it is through ARM templates. The PS cmdlets and CLI are being worked  on, but are not available yet.

 

Regards,
Snehith

 

 

Thanks for the response, I am working with ARM now.

Hi Snehith,

Do you have any EDT on the Powershell cmdlets for the new metric alerts? Or is there maybe any reference of a related issue / ticket which we could subscribe to?

It seems kind of inconvenient situation when we're getting notifications in portal about classic alerts being retired soon and suggestion to use new ones. We would be happy to do that. At the same time we don't have an alternative for Powershell cmdlets which we are using for classic alerts at the moment.

Hi @sarbis

 

We expect PowerShell cmdlets for newer metric alerts to be available by end of March.

 

Please subscribe to https://azure.microsoft.com/en-us/updates/?updatetype=management or keep an eye out on What's new tab in Azure Monitor to get notified when we release this.

 

Regards,
Snehith

@snehith 

Hi there!

I just checked the site you recommended and still no news about PowerShell commands to support the new V2 alerts..

But yes, on the 28th of March there was the "New tool available to migrate from classic monitoring alerts" announce.

Just waiting for this, to update my monitoring scripts.

 

Regards, Pedro.

@snehith  Thanks for the update, Good to hear this

1 best response

Accepted Solutions
best response confirmed by GouravIN (Brass Contributor)
Solution

Hi Gourav,

 

The cmdlet you are using is for classic metric alerts in Azure Monitor. Classic metric alerts didn't support action groups and used a custom notification mechanism. 

We don't yet have PowerShell cmdlets for newer metric alerts. We are actively working on those and will provide an announcement once they are ready. 

 

In the meanwhile, if you are trying to create metric alerts, you can use Azure CLI to automate creating alerts. You can also create action groups through CLI as well. 

 

 

If you trying to create log alerts based on Kusto queries, today the only way to automate it is through ARM templates. The PS cmdlets and CLI are being worked  on, but are not available yet.

 

Regards,
Snehith

 

 

View solution in original post