Kiran Ramesh
Kiran Ramesh

Reputation: 345

Programmatically Query Azure Application Insights Analytics

Based off Overview of log queries in Azure Monitor, is there any method to programmatically query using .NET the application insights analytics and download the results?

Like say something like this in my C# application:

application_insight_analytics.connect(ApplicationInsightsConnectionString)
application_insight_analytics.query(query).toList();

Upvotes: 7

Views: 8027

Answers (1)

Oleg Ananiev
Oleg Ananiev

Reputation: 901

Full Application Insights API is available, details are here:

https://dev.applicationinsights.io/

Upvotes: 11

Related Questions