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

How many times addTelemetryInitializer can be called?

I would like to call addTelemetryInitializer when initializing the application, and then when the user is logged in, I would like to add some user details to all data passed to application insights (name and other details). Question is: How many…
Ahmad Hajou
  • 1,289
  • 5
  • 22
  • 39
1
vote
1 answer

JSX Element does not have any construct or call signatures

I am trying to add Application Insights in my ReactJS Application. I changed the JS code that is provided on the GitHub Demo to TypeScript.. now I have class TelemetryProvider extends Component { state = { initialized:…
1
vote
1 answer

how does continuous exports work when the same release is available from two different apps?

Suppose two different apps in App Center (let's call them X and Y) are configured to continuously export telemetry to two separate Application Insights resources (let's call them X and Y as well). If a single release (binary) is available from two…
1
vote
1 answer

Remove RoleInstance from data sent to Azure Application Insights from WPF

I'm trying to add Application Insights to a WPF app using this documentation: https://learn.microsoft.com/en-us/azure/azure-monitor/app/windows-desktop. The basic integration is working. I am now trying to remove the RoleInstance property from the…
Trygve
  • 591
  • 1
  • 7
  • 22
1
vote
1 answer

See Azure web app pages with zero views in Azure Application Insights

If it is even possible... Goal: See a report of the number of views each page in my Azure web app has, and include the pages that have received zero views Currently the page views report in Azure Application Insights that I have managed to create…
hcdocs
  • 1,078
  • 2
  • 18
  • 30
1
vote
1 answer

ApplicationInsight: where to view Trace and Error on Azure Portal

I am logging the exeception from JavaScript using the following statements appInsights.trackPageView({ name: pageName }); I can view this on portal appInsights.trackTrace({ message: message }); Where do i look for…
user3799325
  • 590
  • 1
  • 8
  • 20
1
vote
1 answer

Embedding charts from azure log analytics work spaces in web application

I want to embed charts created in azure log analytics work space in my react based application. Any ideas on this?
1
vote
1 answer

Search/replace in Kusto

Use case: Remove a string from Azure Application Insights results This is a simple question but with minimal examples online and as a new user, and with limited experience (but learning) in Regex, I am struggling. How do I remove all instances of |…
hcdocs
  • 1,078
  • 2
  • 18
  • 30
1
vote
1 answer

Invalid character at window.onerror reported in Azure Application Insights; ASP.Net Web Application

We just enabled Azure Application Insights for our ASP.Net web application. The site is hosted through Windows Server 2012 VM on IIS 8 in Azure. We enabled client side telemetry to detect browser errors on the client side. We've seen a bunch of…
1
vote
1 answer

pypi opencensus-ext-azure not functioning properly (sends the same data multiple times + not sending logging.info() traces)

I am using the following function to send some logging standard output from Databricks to Azure application insights logs. my function import logging from opencensus.ext.azure.log_exporter import AzureLogHandler from opencensus.trace import…
NikSp
  • 1,262
  • 2
  • 19
  • 42
1
vote
2 answers

Application insights without azure portal

We are building a enterprise application using UWP technology. We would like to monitor the application performance using Microsoft Application Insights. App insights telemetry data directly logged into the Azure portal. For security reason, we do…
1
vote
1 answer

Application Insights for .NET Core only shows debug level worse than "warning"

I have a .NET Core 2.1 application (Web API) where I added logging providers for the Console and ApplicationInsights. I followed the instructions from this article to learn, how the logger works. Later I added ApplicationInsights Provider what I…
1
vote
3 answers

Add Custom Properties to Application Insights Request Telemetry in WCF

I'm trying to get some additional information about the message we received (basically its application-level outcome) into the Application Insights RequestTelemetry object for a WCF service. Application Insights is logging request telemetry already.…
Mike
  • 827
  • 7
  • 21
1
vote
1 answer

Application insight upgrade in .net

I have a web application developed in MVC. It's an existing application. While doing the SAST testing, we got some security issues under critical status like Insecure Randomness, CRSF (DOM), OPen indirect. This issue is happening due to the…
1
vote
1 answer

Get Azure Insights Telemetry Data / Search Logs in ASP.NET Core app

Is there a way within a C# app using an Azure Nuget package to search Azure Telemetry data and get some sort of json result set back? I have an ASP.NET Core 2.x administrative app and I want to view the last X Azure successful Azure webjob…
Mike Smith
  • 618
  • 10
  • 27
1 2 3
99
100