Telemetry refers to software which automates the process of measuring physical hardware status information, mapping it to a metadata format, and transmitting the results
Telemetry is used for remote monitoring of software and hardware events to facilitate the discovery, control, and troubleshooting of performance issues in a released application.
I am exploring different PubSub platforms and I was wondering what the limits are in Kafka for listening to multiple topics. Consider for instance this Use Case. We have trains, station entry gates, devices that all publish their telemetry.…
For Flush() method in Azure App Insights, I was wondering if it impacts the performance of the project?
I tried to remove Flush() and all the custom data are still sent to App Insights.So my question should be why do we need the Flush()? Can we…
I load custom data into an application insights app via a Azure Function programatically on a schedule. The workflow is essentially loading a json file onto an azure storage account, calling post to a particular endpoint with body containing link…
We have ASP.Net Web App with AppInsights. There was ability in Azure Portal to view Session charts with groupping by client Operating System, Browser, Screen Resolution etc. But now, with a new version of AppInsights (2.1.0), it seemed that there is…
Our team is developing a Phoenix project and this week a new member joined us. He tries to work in a Docker environment on the Ubuntu 20.04 box.
He pulled the source code from our GitHub repo and found that our app failed to start with this error…
I have set up app insights in Asp.net core application. All my web api requests are tracked on app insights and if I have any failures I can simply find them in Failures section.
However, I have also Hangfire background jobs running and if they are…
I have spent a while trying to RequestTelemetry to work. It did when I was first playing around with it, but then oddly just stopped working whenever an exception is thrown. I have read documentation using Application Insights for custom events and…
I am trying to set the InstrumentationKey of AppInsights TTelemetry from appsettings.json. My code looks like this
Program.cs
WebHost.CreateDefaultBuilder(args)
.UseApplicationInsights()
.UseStartup()
…
Is it possible to view request's response body in Application Insights?
I have seen many questions/articles regarding Request body but found none directing about Response body.
I am building a MVC core 2.1 Web Api.
Related article:
View POST…
I read this documentation: https://learn.microsoft.com/en-us/azure/application-insights/app-insights-api-custom-events-metrics
There are many different API method to track exceptions, track trace etc..
I have a ASP.NET MVC 5 application.
For…
I would like to customize the application insight configuration for an azure function by creating telemetry initializer. My current scope of work is to identify a way to correlate messages sent from an HTTP triggered azure function to another HTTP…
I have run a query on https://analytics.applicationinsights.io like the following:
traces
| where timestamp >= datetime(2017-03-17T13:12:59.999Z) and timestamp <
datetime(2017-03-21T12:13:12.001Z)
| where (itemType == 'trace' and (timestamp >=…
I'd like to switch to using Application Insights for logging etc. I know I'm going to need to use sampling on my telemetry data, to stay within the free plan. However, I want to be able to see all event sequences that led to an exception being…
I'm looking for a way to get the current battery telemetry under Windows Phone 7. The closest part of the framework looks like Microsoft.Phone.Info.DeviceExtendedProperties.GetValue() but it seems you can only query the device info (model, serial)…