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 Transactional breakdown chart

Looking to create a chart with an average transaction breakdown for an app service (APM) same as New Relic provides. This information is available in the performance blade. Need to be able to see the transaction performance of…
Mark
  • 99
  • 7
1
vote
1 answer

Having trouble selecting rows using KQL (Kusto)

I am trying to select rows based on the timestamp. In the sample data that follows, some columns contain duplicate computer names. I am interested in the row with the latest timestamp. +------------------------+----------+---------+------------+ |…
ezG
  • 391
  • 1
  • 17
1
vote
1 answer

Add QnA users questions and answers to Insights telemetry in Node JS

I need to send QnA users questions and answers to my Azure bot insights using telemetry. Already tried this tutorial : https://learn.microsoft.com/en-us/azure/bot-service/bot-builder-telemetry?view=azure-bot-service-4.0&tabs=javascript And this SO…
jsanchezs
  • 1,992
  • 3
  • 25
  • 51
1
vote
0 answers

Application insights - Live metrics

We have wired up Azure application insights instance to Azure service fabric which is hosting .net core 2.1 applications. As expected Azure service fabric related telemetry data pumped in to target application insights instance but CPU & memory…
1
vote
1 answer

Azure Functions: Configure Slf4j binding with Log4j2 and send logs to appinsights

I am using an Azure Function and I need to perform logging using slf4j binding with log4j2. I want my logs to get stored in application insights (Azure monitor). For this I have a log4j2.xml file for configuration, where I add the…
1
vote
1 answer

In kql, how can I convert `make-series` in to table?

The following query returns the data that I need: let timeSpn = bin(ago(60m),1m); requests | where cloud_RoleName == "myApp" | where success == "False" | where timestamp > timeSpn | make-series count() on timestamp from timeSpn to now() step 1m by…
Leonardo
  • 10,737
  • 10
  • 62
  • 155
1
vote
2 answers

Application insight logging - only log what I say and nothing else

I have an Azure Function V3 (.net core). I'm using ILogger comes from Microsoft.Extensions.Logging. My problem is I can't make it to do: The function just to log what I put in my C# code using ILogger. Either information, exception, warning,…
Daniel
  • 3,322
  • 5
  • 30
  • 40
1
vote
1 answer

Alternative to https://www.nuget.org/packages/Microsoft.Azure.ApplicationInsights/

I've been using this library to fetch ApplicationInsights data from Azure (https://www.nuget.org/packages/Microsoft.Azure.ApplicationInsights/), but it's only a preview library and is kind of dated (last updated 19/04/2018). I'm using an AD role…
gplumb
  • 712
  • 6
  • 29
1
vote
1 answer

Show Operation Name on Application Insights with URLs in lowercase for dotnet core 3.1 application

Right now, Application Insights shows the Operation Name including the casing, so if clients use different casing, I end up with multiple entries, like so: POST /api/v1/myapi POST /api/v1/myApi // Capital "A" in Api I want all of them to appear…
David Gourde
  • 3,709
  • 2
  • 31
  • 65
1
vote
2 answers

Get the user information from teams using Bot framework composer

I had created a bot using bot framework composer and integrated it with MS Teams with help of the azure web app. Now I need to get the login user(MS Team) information i.e. the user who using the bot. I need to get the user information and log it in…
1
vote
1 answer

Can Azure Application Insights Kusto queries obtain the user's current time zone?

We have a chart that restricts details to "today". Today means something different depending on the viewer's time zone: right now for me (in Adelaide, AUS) today means everything in the last 15 hours but for someone in the UK it only means…
Dunc
  • 63
  • 2
  • 5
1
vote
1 answer

Running multiple aggregations on metrics (Kusto/Application Insights)

I am looking to run a Kusto query against an Application Insights instance that will report a metric binned by a certain time amount but also grouped by a custom property. Currently, I have this working if I were to run a query that just targets a…
1
vote
0 answers

Can't find Azure Function logs

I'm using a consumption plan Linux Function, published using VS. Everything works locally, but for some reason I can't see any logs when I deploy it. I tried 'Log Stream - Application Insights', nothing there except some framework…
1
vote
1 answer

How to configure Adaptive Sampling through IServiceCollection

According to the docs, under "Configure sampling settings", we can configure adaptive sampling and also include or exclude certain types from sampling: public void Configure(IApplicationBuilder app, IHostingEnvironment env, TelemetryConfiguration…
1
vote
0 answers

Using azure Application Insights SDK with quarkus jar web application?

Is it possible to use azure Application Insights SDK with quarkus web application that runs as jar? I have tried using it as described here https://learn.microsoft.com/en-us/azure/azure-monitor/app/java-get-started?tabs=maven but it just doesn't…
aki
  • 1,731
  • 2
  • 19
  • 24