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 develop a windows desktop app, written in C# which can be downloaded from a public website and installed on a client computer. I would like to add a telemetry to that. My idea is to use some cloud-based solution, e.g. ApplicationInsights on Azure.…
An application insights instance is tracking the request ingestion for a service with the following url path pattern:
http://testurl.net/item/{itemId}/store/{storeId}/buyme
When I go to log analytics to query based on the itemId and storeId, I can…
I have a azure app based on azure functions. Lets say it consists of two apps named A and B, and that A and B have the following functions:
A:
func_A_1
func_A_2
B:
func_B_1
func_B_2
func_B_3
App A and B are connected by a HTTP post from func_A_2…
I'm trying to enhance RequestTelemetry in AppInsights from HttpTrigger Azure Function v3.
Function is initialized with DI and Startup class.
[assembly: FunctionsStartup(typeof(Startup))]
namespace Hager.Example.FunctionApp.FunctionApp
{
public…
It seems "Azure Application Insights" not recording all the requests on high traffic environment.
For example when we testing the .Net Core2.1 Web API app which is deployed on "Azure Service Fabric" with 10,000 requests for the period of 30 mins,…
I want to configure MSAL with Nodejs. But I am getting error from terminal that when I execute this line.
The error I am getting is :
(node:25500) UnhandledPromiseRejectionWarning: TypeError: this.getTelemetryManagerFromConfig is not a function
…
No matter what I try, Application Insights in a simple C# Console App (NetCORE) will not pickup the InstrumentationKey. I am using the following code:
var telemetryClient = new TelemetryClient();
Console.WriteLine("Key=" +…
I want to get the latest telemetry for all devices related to a single customer from thingsboard CE via API over a websocket. So that I can update a jquery datatable in real-time when measurements are received.
after manually adding a relation for…
I am new to kubernetes & istio,
trying to apply the bookinfo tutorial to my personal project, i don't get the same results when monitoring traffic through kiali ui or grafana ui.
i believe i didn't change much from the bookinfo project, here is the…
I want to log a percentage of the success calls in app insights.
I came across this post https://learn.microsoft.com/en-us/azure/azure-monitor/app/sampling and I think Fixed-rate sampling is appropriate here. But does this affect all logging…
For ASP.NET Core (and likely other platforms), Application Insights by default tracks all queries to Azure SQL Database (and likely other platforms) as dependency operations. For each query, it records the query string, something like this:
SELECT…
I want to include headers in the request events in Application Insights and found the following post that has a solution for application with a HttpContext. I'm working with a Nancy application where the request headers are stored in the…
We want to implement the collection of user usage data, for example crash reports, errors reported in logs, and normal usage patterns & statistics (how often the application is launched, how long certain tasks take to execute, etc.) I'm trying to…
I'm working now on project related to remote car management.
We have some device able to start / stop car engine, provide GPS coordinate, check door lock status and so on. This device has SIM card installed.
Second side is a server which should…
At JPL, we use model transformation techniques for our systems engineering work.
We use the Eclipse QVTO implementation of OMG's QVT specification.
http://www.eclipse.org/modeling/m2m/downloads/index.php?project=qvtoml
However, the Eclipse QVTO…