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
48
votes
1 answer

Are Azure Subscription ID, AAD Tenant ID, and AAD App Client ID considered secret/PII?

I would like to log the following in my telemetry for diagnostic and usage purposes: Azure Subscription ID AAD Tenant ID AAD App Client ID Should I treat them as secrets/PII and hash/encrypt them? (it goes without saying I will not be retaining…
Ohad Schneider
  • 36,600
  • 15
  • 168
  • 198
11
votes
2 answers

How to use dependency inject for TelemetryConfiguration in Azure Function

I try to use Dependency injection in Azure Functions for TelemetryConfiguration. In my function I will have it resolved when I inject TelemetryConfiguration in the functions constructor. I suppose I don't really understand how I will do with…
11
votes
1 answer

What's Application Insights Telemetry (unconfigured) doing?

I'm running an MVC app in VS 2015. During debug mode, everything is work just fine until when I try to create new user. The create form works also the save button. But the new data is not showing in the index but the new edit/details/delete is the…
Botski
  • 195
  • 2
  • 3
  • 13
9
votes
3 answers

Error in ggmap, "must be an array" and "HTTP 400 bad request"

I'm trying to call a map from google maps using ggmap. Example code: get_googlemap(center = c(lon = -56.67, lat = 51.47), zoom = 8, size = c(640, 640), scale = 2, format = "png8", maptype = "satellite") However, this returns the…
Hunter Stevens
  • 251
  • 2
  • 7
9
votes
2 answers

Performance Considerations of Microsoft Application Insights?

I couldn't find any information about an async implementation of application Insights, specifically the TelemetryClient for Microsoft.ApplicationInsights Nuget. And by that I mean a full implementation from the exposed methods down to the actual…
baywet
  • 4,377
  • 4
  • 20
  • 49
8
votes
2 answers

How to exclude multiple labels from Prometheus Query?

I want to exclude mulitple app groups from my query... Not sure how to go about it.. My thoughts are like this count(master_build_state{app_group~! "oss-data-repair", "pts-plan-tech-solution", kubernets_namespace = "etc"} ==0) I do not want to…
ColeGulledge
  • 393
  • 1
  • 2
  • 12
8
votes
0 answers

How to fully disable network request from vs code(telemetry, updates, etc.)

Built from the latest sources. I am trying to prevent vs code to make any network requests(checking for updates, telemetry, etc.). I tried this config: { "telemetry.enableCrashReporter": false, "telemetry.enableTelemetry": false, …
TheMx
  • 138
  • 1
  • 7
7
votes
2 answers

Adding authenticated user ID information in server-side NodeJS Application Insights events

I have a NodeJS app in which I'm consuming the applicationinsights NodeJS package (this). According to ApplicationInsights data model described here, it says the property exists, but I am not able to find a code snipped as to how to set this…
upInCloud
  • 979
  • 2
  • 10
  • 29
7
votes
2 answers

App Insights Telemetry not sending when offline

I am using application insights sdk for a wpf app I've been working on to capture some simple telemetry. I am loading the configuration file that looks like this
Matthew The Terrible
  • 1,589
  • 5
  • 31
  • 53
7
votes
2 answers

Querying swap space in java 9

Due to a bug in the sigar library version I am using (returns bogus values for swap), I tried using com.sun.management.OperatingSystemMXBean instead. This worked fine and gave me the desired results (on Windows). Class sunMxBeanClass =…
Selim
  • 1,064
  • 11
  • 23
7
votes
2 answers

How to send 'Application Version' with client side application insights using javascript?

We can send 'application version' property with every insight in c# like in this tutorial by adding a initializer. class AppVersionTelemetryInitializer : Microsoft.ApplicationInsights.Extensibility.ITelemetryInitializer { public void…
7
votes
2 answers

storing telemetry data from 10000s of nodes

I need to store telemetry data that is being generated every few minutes from over 10000 nodes (which may increase), each supplying the data over the internet to a server for logging. I'll also need to query this data from a web application. I'm…
Pete
  • 4,784
  • 26
  • 33
6
votes
4 answers

How do I stop .NET Telemetry to stop collecting data in Ubuntu Linux

When updating my ubuntu system I saw the following messages. **Telemetry The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by…
RonSpa
  • 89
  • 1
  • 4
6
votes
2 answers

Application insights for a console application doesn't work

I have created a basic console app with AI following the blog https://azure.microsoft.com/en-us/documentation/articles/app-insights-windows-desktop/, however no metrics are captured in AI of my Azure account. There isn't any error/exception reported…
Mothupally
  • 750
  • 2
  • 8
  • 16
6
votes
2 answers

How inject dependency in custom TelemetryInitializer?

We are using Autofac 4 for DI and I started experimenting with AI a short while ago. Now I created a IdentityTelemetryInitializer class which needs and IIdentityProvider to be able to get the ID of the current authorized user and set it add it to…
Para Jaco
  • 211
  • 2
  • 9
1
2 3
20 21