Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Export Performance Data in Azure Application Insights

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

enter image description here

like image 909
Ben Avatar asked May 18 '17 14:05

Ben


1 Answers

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
like image 64
Peter Bons Avatar answered Oct 05 '22 19:10

Peter Bons