Issue I am trying to figure out if virtual network service endpoint is available for azure application insights from my virtual network deployed in azure. The following article lists other azure services that offer service endpoint: https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-service-endpoints-overview In azure portal,
Continue readingTag: azure-application-insights
[SOLVED] Azure alert on Azure Functions "Failed" metric is triggering with no apparent failures
Issue I want an Azure Alert to trigger when a certain function app fails. I set it up as a GTE 1 threshold on the [function name] Failed metric thinking that would yield the expected result. However, when it runs
Continue reading[SOLVED] Azure Application Insights – How to display a row with default values if the kusto query returned no results?
Issue I am using the below Kusto query in the Azure Application Insights workbook to get the count of satisfied users, tolerating users, and frustrated users. let apdexThreshhold = toint(1000); let apdexData = pageViews | where timestamp > ago(7d) |
Continue reading[SOLVED] How to fix 'empty join will fail query'
Issue I want to show amount of total requests, and the total of the failing requests that are being tracked by ApplicationInsights. When there are no failing requests in the table, the query will return an empty object (via API,
Continue reading[SOLVED] Azure Application Insights not showing data
Issue I have an ASP.NET Core application running as Azure App Service. Azure Application Insights is enabled (I followed these instructions). The problem is my instance of Azure Insights on Azure Portal isn’t showing any useful data except for Live
Continue reading[SOLVED] How to get instances count for VMSS in Application Insights?
Issue I have a Virtual Machine Scale Set (VMSS) with autoscaling rules. I can get the performance metrics of a host but there is no graph for instances count. There is a graph on VMSS settings “Scaling” -> “Run history”,
Continue reading[SOLVED] Logging Azure Function
Issue Is there a way to view logging of my Azure Function App without the use of Application Insights? Can I write the logging of my Function app to a separate file that I can view? (edit) If so, how?
Continue reading[SOLVED] Azure KQL – Create Total Average Line on top of timechart
Issue I have some data that I’m logging from our internal label print system. I want to see the duration of each request in a timechart, but would also like to have a total average line on top of the
Continue reading[SOLVED] Application insights profiling NodeJs application using Docker image
Issue I want to know if Azure App insights support profiling for Nodejs Apps. If not the case, is there any alternative for that? Thanks Solution I want to know if Azure App insights support profiling for Nodejs Apps. Yes,
Continue reading[SOLVED] Unable to install ApplicationInsights from Nuget for Azure Function app
Issue I am working on an Azure Function in .NET Core 6 but I’m unable to initialize Application Insights. I tried to install `Microsoft.ApplicationInsights.AspNetCore -Version 2.20.0′ but I’m unable to do so and get an exception: Error: I tried this
Continue reading