首页 > 解决方案 > TelemetryClient.Context.Device.Id 属性是否记录在 AppInsights 中?

问题描述

我有以下代码:

var client = new TelemetryClient();
client.Context.Device.Id = "{some unique identifier associated with the device here}";
client.TrackEvent( "AppStarted" );

customEvents 表似乎不包含 Device.Id 属性。此属性是否记录在 AppInsights 表中的某处?

标签: appinsights

解决方案


推荐阅读