Questions tagged [azure-application-insights]

For programming questions about Microsoft's Azure Application Insights, which is a monitoring service for deployed live applications, allowing collection of availability, performance, usage, and other diagnostic data. It supports web services, Windows Store apps, and Windows Phone 8 apps.

Application Insights lets you monitor your deployed live applications. It supports web services, web apps, and device apps, across a variety of languages and device ecosystems. Application Insights allows for collection of data around availability, performance, usage, and diagnostics.

Application Insights is part of Microsoft Azure Monitor, which is Microsoft's offering for monitoring applications and infra, in Azure cloud or On-Prem.

For .NET and .NET Core technologies, Application Insights SDKs are available as nuget packages (available from nuget.org), or by functionality built into Visual Studio 2013 (Update 3 and later).

SDKs for other technologies and languages are available on Microsoft's GitHub page.

3791 questions
1
vote
1 answer

Application Insights custom metrics pricing

I am looking at Azure Portal for my App Insights usage. In the volume trends I can see that about 20MB of metrics ingested per day. But under estimated costs I see custom metrics estimated usage is at only a few bytes. Why is there a difference in…
Madushan
  • 6,977
  • 31
  • 79
1
vote
2 answers

Application Insights - How to refer All Tables in a Cross Reference Query

I'm have multiple Application Insights being referred by related multiple API apps as shown below. API1 - AI1 (Application 1 links to Application Insights 1 named ai1) API2 - AI2 (Application 2 links to Application Insights 2 named ai2) API3 - AI3…
Prawin
  • 1,158
  • 2
  • 12
  • 26
1
vote
1 answer

Logging with applicationinsights in spring boot app

We are using spring boot to send metrics to app insight we are using applicationinsights-logging-log4j2. Below are the appenders we are using in logj2-spring.xml *
pvjhs
  • 549
  • 1
  • 9
  • 24
1
vote
1 answer

No exceptions or stack traces in Azure Application Insights

I have an ASP.NET Core 3.1 solution deployed into an Azure Web App hooked up to Application Insights. I can't for the life of me get exceptions and stack traces to log into Application Insights, instead I get a basic request trace with no exception…
1
vote
1 answer

How to properly connect Azure Application Insights to the App Service Spring Application with Azure CLI scripts?

I have my Spring Boot application hosted via Azure App Service with Azure CLI scripts. Also I deployed Azure Application Insights on the same subscription with Azure CLI scripts. My next step is to connect App Insights with App Service using only az…
1
vote
1 answer

Azure App Insights - How to plot over time(say 1h) so we can see how the success percentage changes over time?

requests | summarize Failure=count(resultCode contains "500" or resultCode contains "503"), Success=count(resultCode contains "200") | extend Percentage=((Success*1.0)/(Success+Failure))*100 The above code would display the success rate per any…
1
vote
1 answer

Log Analytics KQL with Time Range does not work from App Insights using "workspace"

I have a Log Analytics KQL as below for Custom Table with Time Range; it works fine in Log Analytics. You can notice the Time range = Set in query automatically. But when I run the same KQL from App Insights using workspace, it doesn't take…
1
vote
1 answer

Azure Logic app querying application insights returning code not html

I have an Azure app that is supposed to query my qna maker bot and return a html table. instead it returns this. I'm following https://microsoft.github.io/slg-covid-bot/docs/telemetry-analytics.html ```…
user12533025
1
vote
0 answers

Missing logs with ApplicationInsights-Java and Spring Boot 2.3.0

Since we updated Spring Boot from 2.1.6 to 2.3.0 (or 2.3.1) we are missing log output in Azure Application Insights. The logs are printed to stdout when running local. Deployed to an aks cluster, the logs are visible with "kubectl logs" but missing…
1
vote
1 answer

Link to application insights search by URL parameter

is it possible to start application insights search by URL parameter? see the picture below: I like to generate a link to start the search: something like: https://?search=b4eb0000-f22e-18db-fc92-08d81c2df34d
Daniel
  • 9,491
  • 12
  • 50
  • 66
1
vote
1 answer

How to delete logs from Azure using custom conditions?

I am trying to find a way to delete logs from Azure using some custom conditions(automatically or manually it doesn't matter right now) for e.g: Say I want to delete all logs from Azure except the exceptions that occurred in the last 3 days with a…
1
vote
1 answer

Application Insights - How to create a auto-hookup framework?

I would like to improve a open source data driver and integrate it to Azure Application Insights like the Sql Server, where all you have to do is add it... Another option is to set it up like Azure Message Bus:…
Leonardo
  • 10,737
  • 10
  • 62
  • 155
1
vote
1 answer

Python Azure Functions alert if timeout greater than 10 minutes

I have an Azure Functions app that is running on a timer trigger that I don't expect to exceed the 10 minute timeout limit, but I would like to receive an alert in the unlikely event that the application runs longer than 10 minutes. Is this possible…
ddx
  • 469
  • 2
  • 9
  • 27
1
vote
1 answer

Can we Call REST api from Azure Serverless Database Stored Procedures

Is it possible to call REST Api (Azure Application Insights Api) from Azure Serverless Database Stored Procedures? It seems, SQL CLR is not available for Azure Serverless Sql Database. Any other options?
1
vote
1 answer

Export Azure Application Insights with REST API for search term

I have a requirement where I need to search a particular term in App insights and then export this 'report' and send it in the email. Consider this as "report a bug" use case. So if I search key "xxxxxx123", it should retrieve all matching…
Max
  • 1,528
  • 21
  • 33