Created
October 13, 2023 13:42
-
-
Save tomaustin700/4c47ecfe199a02e0d7a7e2207e4dcb6d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mode": "All", | |
"policyRule": { | |
"if": { | |
"allOf": [ | |
{ | |
"field": "type", | |
"equals": "Microsoft.SQL/servers/databases" | |
}, | |
{ | |
"field": "[concat('tags[', parameters('MonitorDisable'), ']')]", | |
"notEquals": "true" | |
} | |
] | |
}, | |
"then": { | |
"effect": "[parameters('effect')]", | |
"details": { | |
"roleDefinitionIds": [ | |
"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c" | |
], | |
"type": "Microsoft.Insights/metricAlerts", | |
"existenceCondition": { | |
"allOf": [ | |
{ | |
"field": "Microsoft.Insights/metricAlerts/criteria.Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria.allOf[*].metricNamespace", | |
"equals": "Microsoft.Sql/servers/databases" | |
}, | |
{ | |
"field": "Microsoft.Insights/metricAlerts/criteria.Microsoft.Azure.Monitor.MultipleResourceMultipleMetricCriteria.allOf[*].metricName", | |
"equals": "DeadlockAlert" | |
}, | |
{ | |
"field": "Microsoft.Insights/metricAlerts/enabled", | |
"equals": "[parameters('enabled')]" | |
} | |
] | |
}, | |
"deployment": { | |
"properties": { | |
"mode": "incremental", | |
"template": { | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"resourceName": { | |
"type": "String", | |
"metadata": { | |
"displayName": "resourceName", | |
"description": "Name of the resource" | |
} | |
}, | |
"resourceId": { | |
"type": "String", | |
"metadata": { | |
"displayName": "resourceId", | |
"description": "Resource ID of the resource emitting the metric that will be used for the comparison" | |
} | |
}, | |
"severity": { | |
"type": "String" | |
}, | |
"windowSize": { | |
"type": "String" | |
}, | |
"evaluationFrequency": { | |
"type": "String" | |
}, | |
"autoMitigate": { | |
"type": "String" | |
}, | |
"enabled": { | |
"type": "String" | |
}, | |
"threshold": { | |
"type": "String" | |
} | |
}, | |
"variables": {}, | |
"resources": [ | |
{ | |
"type": "Microsoft.Insights/metricAlerts", | |
"apiVersion": "2018-03-01", | |
"name": "[concat(parameters('resourceName'), '-DeadlockAlert')]", | |
"location": "global", | |
"tags": { | |
"_deployed_by_amba": true | |
}, | |
"properties": { | |
"description": "Metric Alert for KeyVault Capacity", | |
"severity": "[parameters('severity')]", | |
"enabled": "[parameters('enabled')]", | |
"scopes": [ | |
"[parameters('resourceId')]" | |
], | |
"evaluationFrequency": "[parameters('evaluationFrequency')]", | |
"windowSize": "[parameters('windowSize')]", | |
"criteria": { | |
"allOf": [ | |
{ | |
"name": "DeadlockAlert", | |
"metricNamespace": "Microsoft.Sql/servers/databases", | |
"metricName": "deadlock", | |
"operator": "GreaterThan", | |
"threshold": "[parameters('threshold')]", | |
"timeAggregation": "Count", | |
"criterionType": "StaticThresholdCriterion" | |
} | |
], | |
"odata.type": "Microsoft.Azure.Monitor.SingleResourceMultipleMetricCriteria" | |
}, | |
"autoMitigate": "[parameters('autoMitigate')]", | |
"parameters": { | |
"severity": { | |
"value": "[parameters('severity')]" | |
}, | |
"windowSize": { | |
"value": "[parameters('windowSize')]" | |
}, | |
"evaluationFrequency": { | |
"value": "[parameters('evaluationFrequency')]" | |
}, | |
"autoMitigate": { | |
"value": "[parameters('autoMitigate')]" | |
}, | |
"enabled": { | |
"value": "[parameters('enabled')]" | |
}, | |
"threshold": { | |
"value": "[parameters('threshold')]" | |
} | |
} | |
} | |
} | |
] | |
}, | |
"parameters": { | |
"resourceName": { | |
"value": "[field('name')]" | |
}, | |
"resourceId": { | |
"value": "[field('id')]" | |
}, | |
"severity": { | |
"value": "[parameters('severity')]" | |
}, | |
"windowSize": { | |
"value": "[parameters('windowSize')]" | |
}, | |
"evaluationFrequency": { | |
"value": "[parameters('evaluationFrequency')]" | |
}, | |
"autoMitigate": { | |
"value": "[parameters('autoMitigate')]" | |
}, | |
"enabled": { | |
"value": "[parameters('enabled')]" | |
}, | |
"threshold": { | |
"value": "[parameters('threshold')]" | |
} | |
} | |
} | |
} | |
} | |
} | |
}, | |
"parameters": { | |
"severity": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Severity", | |
"description": "Severity of the Alert" | |
}, | |
"allowedValues": [ | |
"0", | |
"1", | |
"2", | |
"3", | |
"4" | |
], | |
"defaultValue": "1" | |
}, | |
"windowSize": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Window Size", | |
"description": "Window size for the alert" | |
}, | |
"allowedValues": [ | |
"PT1M", | |
"PT5M", | |
"PT15M", | |
"PT30M", | |
"PT1H", | |
"PT6H", | |
"PT12H", | |
"P1D" | |
], | |
"defaultValue": "PT5M" | |
}, | |
"evaluationFrequency": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Evaluation Frequency", | |
"description": "Evaluation frequency for the alert" | |
}, | |
"allowedValues": [ | |
"PT1M", | |
"PT5M", | |
"PT15M", | |
"PT30M", | |
"PT1H" | |
], | |
"defaultValue": "PT1M" | |
}, | |
"autoMitigate": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Auto Mitigate", | |
"description": "Auto Mitigate for the alert" | |
}, | |
"allowedValues": [ | |
"true", | |
"false" | |
], | |
"defaultValue": "true" | |
}, | |
"enabled": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Alert State", | |
"description": "Alert state for the alert" | |
}, | |
"allowedValues": [ | |
"true", | |
"false" | |
], | |
"defaultValue": "true" | |
}, | |
"threshold": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Threshold", | |
"description": "Threshold for the alert" | |
}, | |
"defaultValue": "1" | |
}, | |
"effect": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Effect", | |
"description": "Effect of the policy" | |
}, | |
"allowedValues": [ | |
"deployIfNotExists", | |
"disabled" | |
], | |
"defaultValue": "disabled" | |
}, | |
"MonitorDisable": { | |
"type": "String", | |
"metadata": { | |
"displayName": "Effect", | |
"description": "Tag name to disable monitoring resource. Set to true if monitoring should be disabled" | |
}, | |
"defaultValue": "MonitorDisable" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment