如何使用 Application Insights 在将新资源添加到资源组时创建警报

How to create an alert when new resource is added to resource group using Application Insights

我有资源组 我想在使用 application-Insights 向该资源组添加新资源时创建警报

你应该使用Log Analytics workspace来监控这个行为(据我所知,当添加新资源时,application insights 无法监控资源组)。

步骤如下:

1.In azure portal -> 你的 Log Analytics workspace -> 日志,这样写查询:

AzureActivity 
| where ResourceGroup == "the resource group name" 
| where OperationName == "Create Deployment" 

2.Then 单击 + New alert rule button

3.In Create rule 页面,按照下面的截图设置合适的值:

4.Complete其他设置。

如果您还有其他问题,请告诉我。