Questions tagged [telemetry]

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.

References

314 questions
3
votes
0 answers

How to authenticate public application to telemetry service?

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.…
3
votes
1 answer

How can I parse path parameters from a url in KQL (Kusto for Log Analytics)?

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…
3
votes
0 answers

Fixing end to end trace with custom telemetry

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…
3
votes
1 answer

Azure Functions and AppInsights RequestTelemetry

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…
3
votes
1 answer

Azure Application Insights - Not recording all requests on high traffic situations

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,…
3
votes
1 answer

What does this error mean with MSAL in nodejs configuration?

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 …
Parth Mangukiya
  • 434
  • 3
  • 13
3
votes
1 answer

Application Insights does not pickup Instrumentation Key from ApplicationInsights.config

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=" +…
Eduard G
  • 443
  • 5
  • 21
3
votes
1 answer

How to retrieve telemetry for all customer devices from Thingsboard via websocket

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…
windsor
  • 379
  • 4
  • 9
3
votes
0 answers

ISTIO: telemetry traffic not showing correctly in grafana & kiali

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…
Soufiaane
  • 1,737
  • 6
  • 24
  • 45
3
votes
2 answers

Telemetry sampling without affecting the errors/failures

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…
Wouter
  • 154
  • 17
3
votes
3 answers

Include SQL query parameter values in Application Insights telemetry

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…
Edward Brey
  • 40,302
  • 20
  • 199
  • 253
3
votes
3 answers

Adding request headers to Application Insights telemetry for Nancy application

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…
3
votes
2 answers

What is the term used to describe the collection of user usage data?

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…
Steve Broberg
  • 4,255
  • 3
  • 28
  • 40
3
votes
1 answer

Telemetry Design Patterns - Interoperability between device and server (SMS, GPRS etc.)

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…
2
votes
1 answer

How to use JProfiler custom probe telemetry for monitoring Guava cache statistics

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…
1 2
3
20 21