简体   繁体   中英

How to Export Performance Data in Azure Application Insights

Is there a way to export performance data in Azure Application Insights?

在此输入图像描述

Yes, kind of. But not from there. You can use Application Insights Analytics for that.

You have to create a query there that shows what you need. You can then export the results to csv or render it as a chart and save that one.

An example query to get you started could be:

requests 
| where timestamp >= ago(24h) 
| summarize percentiles(duration, 95), count()  by name 

Queries are, once you get to know the language a bit, easy to write and you can get very interesting queries. Another performance example is

requests 
| where timestamp >= ago(24h) 
| summarize avg(duration), min(duration), max(duration), stdev(duration) , count()  by name 
| order by avg_duration  desc

如果要将数据导出到sql server,可以先配置应用程序洞察以连续导出到blob,然后使用Stream Analytics Job将这些数据实时导出到所需的目标,例如sql server ,这最后一个选项还允许您强大的数据转换。

你可以在遵循拉动指标/事件/查询数据更多信息

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM