Maetness
Maetness

Reputation: 87

How to extract Log-Data from Azure Log Analytics / Application Insights?

I am struggling to understand where Azure does store logs and how I can access and export them.

Is there some kind of interface I can use? I've been at it in the official Documentation for hours but cannot seem to find anything definite on how to get the data OUT of azure.

I anyone can help me understand the topic better or has any advice or resources to share, any input is appreciated. :)

Regards

Upvotes: 0

Views: 2838

Answers (1)

Peter Bons
Peter Bons

Reputation: 29770

There are some options, you can for example enable continuous export for Application Insights:

Continuous Export is ideal for this. The events you see in the Application Insights portal can be exported to storage in Microsoft Azure in JSON format. From there, you can download your data and write whatever code you need to process it.

Another option is using the App Insights Rest Api:

Query and integrate with the performance, availability and usage data collected by Application Insights for your application

Upvotes: 2

Related Questions