Azure metric alert dimension operator ARM-Template

288 Views Asked by At

I want to exclude a Virtual Machine to an alert rule. I use ARM-Templates to deploy my alerts. The problem is that exclude won't work.

"dimensions": [
                                {
                                    "name": "Computer",
                                    "operator": "Exclude",
                                    "values": [ "VMname" ]
                                },

ISSUE: If I choose Exclude as operator. It performs the same as Include.

Anyone has the same Issue?

1

There are 1 best solutions below

0
KrishnaG On

Related question is raised in this MSDN thread; Just sharing this for the benefit of broader audience who might face similar issue.