Can we get application response time from Appinsights over an email via alerts

Copper Contributor

Hi Team

In Appinsights, we have alerts to notify the users.

 

Is there any way to automatically send output of below query over an email via alerts or some other way on Periodic basis.

 

For example.  Results of below query should be send on daily basis at specific configurable time.

 

let start=datetime("2021-01-18T08:28:00.000Z");
let end=datetime("2021-01-18T09:05:00.000Z");
requests
| where timestamp > start and timestamp <=end
| summarize count(), percentile(duration,90) by operation_Name

 

 

 

 

0 Replies