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
0 answers

How can I add custom operation to Azure Application Insights's Performance tab?

We have a GraphQL api that runs on .Net Core. Since all queries are made to the /graphql endpoint we only get one operation "POST /graphql" on the performance page of Azure Application Insights while a REST API would have allowed Aplication Insights…
1
vote
1 answer

Show the answers with the score lower than 60% Qna Maker with azure App Insights

I have set up an Azure Bot with Luis and QnA Maker (in C#, Bot Framework v4). I want to query the App Insights and get information about the questions asked together with their answer, and I was able to get them, but I need to get the ones with the…
1
vote
1 answer

SocketException on a "Plan Service" level on Azure

I am starting to see a lot of SocketException's in my Application Insights log, but from the actual machine/azure infrastruture that hosts and run my services. I am certain that it's the services that are somehow causing this but I no clue to how I…
user10285265
1
vote
1 answer

Application Insights - Global Minimum Severity Level Filter?

Is there a single place where I can set the minimum severity for log writing? it should apply also to the traces written via TelemetryClient.TraceTelemetry also! there are several question covering only ILogger...
Leonardo
  • 10,737
  • 10
  • 62
  • 155
1
vote
1 answer

Which roles are required to "Create Work Item" in Azure DevOps from Application Insights

We connected our Application Insights resources in Azure to our Azure DevOps. And those of us with Contributor roles are able to successfully create work items in ADOP from App Insights. We would like to give our Product Management team the same…
Justin C
  • 15
  • 3
1
vote
1 answer

Application Insights - is it right to use href as "View page name"?

As I know, Application Insights uses page title as View page name. But my application has simillar page title for all pages. And that is why I always get only one pageview and can`t create propper userflow graph, because AI displays, that user visit…
1
vote
2 answers

How to calculate time grain based on selected period from azure dashboard in a custom chart

While writing a kusto query to create a custom chart on my azure dashboard, I want to be able to calculate the time grain based on the period the user selected on the dashboard. For example: last 4h => time grain 2 mins, last 24h => 10 mins I tried…
Rick
  • 1,224
  • 3
  • 13
  • 27
1
vote
2 answers

Azure Function + Application Insights - not tracking SQL Queries

We have an Http Triggered Azure Function (.NET Core 3.1). For whatever reason we can't get the detailed SQL Dependency Tracking working, all we see is: tcp:ourdbserver.database.windows.net,1433 | TestDB. It doesn't work both when debugging locally…
1
vote
1 answer

Azure Application Insights codeless agent does not show cloudRoleInstance and cloudRoleName in application map

I am using Azure Application Insights on my Java App, I added an ApplicationInsights.json file next to the JAR (Java codeless agent 3.0.0) but the roleName and roleInstance are not pushed to Aplication Insights. { …
1
vote
1 answer

Application Map for Application Insights WIth Serilog not Working

My original connection with A.I. would produce the correct maps(and live Metrics). Once I linked SeriLog I am getting the proper AI logs but the Application Map (also the live metrics) are not working. I haven't found any articles that mention if…
greektreat
  • 2,329
  • 3
  • 30
  • 53
1
vote
1 answer

i see entries in then Azure Function Monitor Logs screen. How do I find them in the Application Insights?

I open the Monitor for my Azure function by clicking on Functions/FunctionName/Monitor/Logs. It says "Connecting to Application Insights..." followed by "Connected". I run the function and the Monitor screen shows entries generated by…
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
1
vote
0 answers

Dependency is not being tracked in Application Insights - Java Application

We have been working on getting dependency tracking working on Application insights using the following documentation for a Java…
1
vote
0 answers

What to do when library used by typescript / angular universal project expects global variables which are not present?

I have an angular universal project which is using azure application insights to log exceptions. When using angular universal I get an error because the library uses a shim, which expects 2 global variables to be declared. I understand the declare…
1
vote
1 answer

in application insights, how to find the number of servers/instances for a web service at a point in time?

If you look at live metrics in AI for a web service, it shows the number of servers currently active (this is dynamic, it goes up and down dependent on load). We have some periodic major site issues, which we think could be when Azure sales up and…
John Little
  • 10,707
  • 19
  • 86
  • 158
1
vote
0 answers

Finding logs for Azure ServiceBus User Errors

I see on the Metrics for my ServiceBus that there are a large number of user errors, but I can't find any logs telling me what those errors are. They are not showing up in my AppInsights for the Azure Functions that read and write to this bus. …