Questions tagged [appinsights]

198 questions
0
votes
1 answer

App Insights memory leak in background tasks

I am using Simple Injector DI in .NET web api (.net 4.8 framework) and have a wrapper class(my own implementation) around the telemetry client. public class MyAppInsights : IMyAppInsights { private static TelemetryClient telemetry; public…
0
votes
1 answer

Custom exclusions for Azure App Insights Smart Alerts

We are using smart detectors in Azure App Insights to generate some alerts when there are anomalies in our app. However, there are some failures that are intentional in our code, where we throw a 403. Is there a way to modify these "Smart Alerts" in…
Snooks
  • 91
  • 1
  • 11
0
votes
0 answers

Azure Application Insight Application map like query

I am trying to have the same kind of query as I see in application map but in an exportable format. I need to have all the dependencies to my main app service grouped by target and then I need to see once each of the queries done in this…
Kapoue
  • 847
  • 2
  • 11
  • 15
0
votes
1 answer

Setting the User Context App Insights for React Native

We have a React Native app and we are logging to App Insights using the "applicationinsights-react-native package", this all works fine in a sense, but we are trying to start using the monitoring side of things which uses a User ID. Now I'm pretty…
Rich Shepard
  • 347
  • 2
  • 7
0
votes
1 answer

Azure App Insights: How limits log informations for a specif domain or ipaddress

Is there a way to configure Azure App Insight to collect logs informations only from a single ipaddress or a single domain? Thanks in advance
mdavi
  • 53
  • 8
0
votes
0 answers

Custom events not logged in the AppInsights when called the TP rom ValidationTechnicalProfile

I have added the technical profile to log the custom events in the AppInsights and called the technical profile from the sign-in TP's ValidationTechnicalProfile section, but the logs are not recorded in the AppInsights. Can someone please help me to…
0
votes
1 answer

Implement Availability test for Intranet application

I have an application which as intranet application. I have app insights configured on Azure. I want to configure the Availability test using URL ping method. Since my application is not on public internet, I am not able to implement the same.…
0
votes
1 answer

Application Insghts Failed request Error 405

Hi when I deploy my site to Azure I see in App Insights a lot of "Failed request count" with status code result 405 for a page where I do not have any POST action. If I see in my local App Insights I do not receive that alert. I am new with app…
Francisco G
  • 1,434
  • 2
  • 14
  • 22
0
votes
1 answer

Kql equivalent functions

I'm trying to manipulate the contents of fields returned from application Insights logging and was wondering if there are KQL equivalents for the Oracle substr and instr functions?
atamata
  • 997
  • 3
  • 14
  • 32
0
votes
4 answers

How to query multiple Azure API Management API names with Application Insights query

Hello i was working on getting requests through the Azure API Management , however i am getting all the api exsiting. i wanted to filter just the apis i needed here is what i did : requests |summarize totalCount=sum(itemCount) by…
medone
  • 3
  • 2
0
votes
2 answers

How to get the Operation ID in a HTTPTrigger Azure Function 3.x. Image attached

We need OperationId value inside a HTTP Trigger Azure Function. How can we get it. Highlighted OperationID in the image Fetching OperationId.png
Saranyan
  • 13
  • 3
0
votes
1 answer

How to use where condition in a kusto/appinsight join

I am trying to achieve these things: Get most recent data for certain fields (base on timestamp) -> call this latestRequest Get previous data for these fields (basically timestamp < latestRequest.timestamp)-> call this previousRequest Count the…
daxu
  • 3,514
  • 5
  • 38
  • 76
0
votes
1 answer

how to replace existing serilog implementation with Azure App Insights

I have an existing asp.net Web api project. this project is using Serilog for logging. Using OwinStartup it is configuring Serilog like this var logger = new LoggerConfiguration() .ReadFrom.AppSettings() .CreateLogger(); …
0
votes
1 answer

Kusto Query to the earliest timestamp grouped by user_Id

I'm just starting with kusto, and my journey was abruptly stopped by the problem of getting the list of user_Ids with the timestamp of the very first customEvent sent by a user in the given time frame. How should I modify my query to get the results…
DegH
  • 53
  • 8
0
votes
1 answer

Application insights in Console/WPF application with DependencyTracking

I have a application insights configuration I am trying to get working in a .NET 4.8 WPF application. Everything seems to be transmitting fine (including the live metrics data) BUT unfortunately I cannot successfully get the system to transmit my…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243