forked from microsoft/TemplateStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTelemetryService.cs
More file actions
447 lines (380 loc) · 16.1 KB
/
TelemetryService.cs
File metadata and controls
447 lines (380 loc) · 16.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.ApplicationInsights;
using Microsoft.ApplicationInsights.Extensibility;
using VsTelem = Microsoft.VisualStudio.Telemetry;
namespace Microsoft.Templates.Core.Diagnostics
{
public class TelemetryService : IHealthWriter, IDisposable
{
public bool IsEnabled { get; private set; }
private Configuration _currentConfig;
private TelemetryClient _client;
private bool vsTelemAvailable = false;
private static TelemetryService _current;
public static TelemetryService Current
{
get
{
if (_current == null)
{
_current = new TelemetryService(Configuration.Current);
}
return _current;
}
private set
{
_current = value;
}
}
private TelemetryService(Configuration config)
{
_currentConfig = config ?? throw new ArgumentNullException(nameof(config));
IntializeTelemetryClient();
}
public static void SetConfiguration(Configuration config)
{
_current = new TelemetryService(config);
}
public async Task TrackEventAsync(string eventName, Dictionary<string, string> properties = null, Dictionary<string, double> metrics = null)
{
await SafeExecuteAsync(() => _client.TrackEvent(eventName, properties, metrics)).ConfigureAwait(false);
}
public async Task TrackExceptionAsync(Exception ex, Dictionary<string, string> properties = null, Dictionary<string, double> metrics = null)
{
await SafeExecuteAsync(() => _client.TrackException(ex, properties, metrics)).ConfigureAwait(false);
}
public async Task WriteTraceAsync(TraceEventType eventType, string message, Exception ex = null)
{
// Trace events will not be forwarded to the remote service
await Task.Run(() => { });
}
public async Task WriteExceptionAsync(Exception ex, string message = null)
{
var properties = new Dictionary<string, string>();
if (!string.IsNullOrEmpty(message))
{
properties.Add("Additional info", message);
}
await TelemetryService.Current.TrackExceptionAsync(ex, properties);
}
public bool AllowMultipleInstances()
{
return false;
}
private void IntializeTelemetryClient()
{
try
{
_client = new TelemetryClient()
{
InstrumentationKey = _currentConfig.RemoteTelemetryKey
};
if (VsTelemetryIsOptedIn() && RemoteKeyAvailable())
{
if (!string.IsNullOrEmpty(_currentConfig.CustomTelemetryEndpoint))
{
TelemetryConfiguration.Active.TelemetryChannel.EndpointAddress = _currentConfig.CustomTelemetryEndpoint;
}
SetSessionData();
_client.TrackEvent(TelemetryEvents.SessionStart);
IsEnabled = true;
#if DEBUG
TelemetryConfiguration.Active.TelemetryChannel.DeveloperMode = true;
#endif
}
else
{
IsEnabled = false;
TelemetryConfiguration.Active.DisableTelemetry = true;
}
}
catch (Exception ex)
{
IsEnabled = false;
TelemetryConfiguration.Active.DisableTelemetry = true;
Trace.TraceError($"Exception instantiating TelemetryClient:\n\r{ex.ToString()}");
}
}
private bool VsTelemetryIsOptedIn()
{
try
{
Assembly.Load(new AssemblyName("Microsoft.VisualStudio.Telemetry"));
vsTelemAvailable = true;
return SafeVsTelemetryIsOptedIn();
}
catch (Exception ex)
{
// Not running in VS so we assume we are in the emulator => we allow telemetry
Trace.TraceWarning($"Unable to load the assembly 'Microsoft.VisualStudio.Telemetry'. Visual Studio Telemetry OptIn/OptOut setting will not be considered. Details:\r\n{ex.ToString()}");
return true;
}
}
private bool SafeVsTelemetryIsOptedIn()
{
bool result = false;
string vsEdition = string.Empty;
string vsVersion = string.Empty;
string vsCulture = string.Empty;
string vsManifestId = string.Empty;
try
{
if (VsTelem.TelemetryService.DefaultSession != null)
{
var isOptedIn = VsTelem.TelemetryService.DefaultSession.IsOptedIn;
Trace.TraceInformation($"Vs Telemetry IsOptedIn: {isOptedIn}");
vsEdition = VsTelem.TelemetryService.DefaultSession?.GetSharedProperty("VS.Core.SkuName");
vsVersion = VsTelem.TelemetryService.DefaultSession?.GetSharedProperty("VS.Core.ExeVersion");
vsCulture = VsTelem.TelemetryService.DefaultSession?.GetSharedProperty("VS.Core.Locale.ProductLocaleName");
vsManifestId = VsTelem.TelemetryService.DefaultSession?.GetSharedProperty("VS.Core.ManifestId");
result = isOptedIn;
}
else
{
// Not running in VS so we assume we are in the emulator => we allow telemetry
Trace.TraceInformation($"Checking VsTelemetry IsOptedIn value VsTelem.TelemetryService.DefaultSession is Null.");
result = true;
}
}
catch (Exception ex)
{
// Not running in VS so we assume we are in the emulator => we allow telemetry
Trace.TraceInformation($"Exception checking VsTelemetry IsOptedIn:\r\n" + ex.ToString());
result = true;
}
_client.Context.Properties.Add(TelemetryProperties.VisualStudioEdition, vsEdition);
_client.Context.Properties.Add(TelemetryProperties.VisualStudioExeVersion, vsVersion);
_client.Context.Properties.Add(TelemetryProperties.VisualStudioCulture, vsCulture);
_client.Context.Properties.Add(TelemetryProperties.VisualStudioManifestId, vsManifestId);
return result;
}
private void SetSessionData()
{
// No PII tracked
string userToTrack = Guid.NewGuid().ToString();
string machineToTrack = Guid.NewGuid().ToString();
_client.Context.User.Id = userToTrack;
_client.Context.User.AccountId = userToTrack;
_client.Context.User.AuthenticatedUserId = userToTrack;
_client.Context.Device.Id = machineToTrack;
_client.Context.Device.OperatingSystem = Environment.OSVersion.VersionString;
_client.Context.Cloud.RoleInstance = TelemetryProperties.RoleInstanceName;
_client.Context.Cloud.RoleName = TelemetryProperties.RoleInstanceName;
_client.Context.Session.Id = Guid.NewGuid().ToString();
_client.Context.Component.Version = GetVersion();
_client.Context.Properties.Add(TelemetryProperties.WizardFileVersion, GetFileVersion());
}
private string GetVsProjectId()
{
var session = VsTelem.TelemetryService.DefaultSession;
return string.Empty;
}
public void SetContentVersionToContext(Version contentVersion)
{
if (contentVersion != null && _client != null && _client.Context != null && _client.Context.Properties != null)
{
if (!_client.Context.Properties.ContainsKey(TelemetryProperties.WizardContentVersion))
{
_client.Context.Properties.Add(TelemetryProperties.WizardContentVersion, contentVersion.ToString());
}
else
{
_client.Context.Properties[TelemetryProperties.WizardContentVersion] = contentVersion.ToString();
}
}
}
public void SetContentVsProductVersionToContext(string vsProductVersion)
{
if (!string.IsNullOrEmpty(vsProductVersion) && _client != null && _client.Context != null && _client.Context.Properties != null)
{
if (!_client.Context.Properties.ContainsKey(TelemetryProperties.VisualStudioProductVersion))
{
_client.Context.Properties.Add(TelemetryProperties.VisualStudioProductVersion, vsProductVersion);
}
else
{
_client.Context.Properties[TelemetryProperties.VisualStudioProductVersion] = vsProductVersion;
}
}
}
public void SafeTrackProjectVsTelemetry(Dictionary<string, string> properties, string pageIdentities, string featureIdentities, Dictionary<string, double> metrics, bool success = true)
{
try
{
if (vsTelemAvailable)
{
TrackProjectVsTelemetry(properties, pageIdentities, featureIdentities, metrics, success);
}
}
catch (Exception ex)
{
Trace.TraceInformation($"Exception tracking Project Creation in VsTelemetry:\r\n" + ex.ToString());
}
}
private static void TrackProjectVsTelemetry(Dictionary<string, string> properties, string pageIdentities, string featureIdentities, Dictionary<string, double> metrics, bool success)
{
VsTelem.TelemetryResult result = success ? VsTelem.TelemetryResult.Success : VsTelem.TelemetryResult.Failure;
VsTelem.UserTaskEvent e = new VsTelem.UserTaskEvent(VsTelemetryEvents.WtsGen, result, "Project generated");
foreach (var key in properties.Keys)
{
string renamedKey = key.Replace(TelemetryEvents.Prefix, VsTelemetryEvents.Prefix);
if (!string.IsNullOrEmpty(properties[key]))
{
e.Properties[renamedKey] = properties[key];
}
}
e.Properties.Add(VsTelemetryProperties.Pages, pageIdentities);
e.Properties.Add(VsTelemetryProperties.Features, featureIdentities);
foreach (var key in metrics.Keys)
{
string renamedKey = key.Replace(TelemetryEvents.Prefix, TelemetryEvents.Prefix.ToUpperInvariant() + ".");
e.Properties[renamedKey] = new VsTelem.TelemetryMetricProperty(metrics[key]);
}
VsTelem.TelemetryService.DefaultSession.PostEvent(e);
}
public void SafeTrackNewItemVsTelemetry(Dictionary<string, string> properties, string pageIdentities, string featureIdentities, Dictionary<string, double> metrics, bool success = true)
{
try
{
if (vsTelemAvailable)
{
TrackNewItemVsTelemetry(properties, pageIdentities, featureIdentities, metrics, success);
}
}
catch (Exception ex)
{
Trace.TraceInformation($"Exception tracking New Item Creation in VsTelemetry:\r\n" + ex.ToString());
}
}
private void TrackNewItemVsTelemetry(Dictionary<string, string> properties, string pageIdentities, string featureIdentities, Dictionary<string, double> metrics, bool success = true)
{
VsTelem.TelemetryResult result = success ? VsTelem.TelemetryResult.Success : VsTelem.TelemetryResult.Failure;
VsTelem.UserTaskEvent e = new VsTelem.UserTaskEvent(VsTelemetryEvents.WtsGen, result, "New Item generated");
foreach (var key in properties.Keys)
{
string renamedKey = key.Replace(TelemetryEvents.Prefix, VsTelemetryEvents.Prefix);
if (!string.IsNullOrEmpty(properties[key]))
{
e.Properties[renamedKey] = properties[key];
}
}
e.Properties.Add(VsTelemetryProperties.Pages, pageIdentities);
e.Properties.Add(VsTelemetryProperties.Features, featureIdentities);
foreach (var key in metrics.Keys)
{
string renamedKey = key.Replace(TelemetryEvents.Prefix, TelemetryEvents.Prefix.ToUpperInvariant() + ".");
e.Properties[renamedKey] = new VsTelem.TelemetryMetricProperty(metrics[key]);
}
VsTelem.TelemetryService.DefaultSession.PostEvent(e);
}
private async Task SafeExecuteAsync(Action action)
{
try
{
var task = Task.Run(action);
await task;
}
catch (AggregateException aggEx)
{
foreach (var ex in aggEx.InnerExceptions)
{
Trace.TraceError($"Error tracking telemetry: {ex}");
}
}
catch (Exception ex)
{
Trace.TraceError($"Error tracking telemetry: {ex}");
}
}
private async Task SafeExecuteAsync(Func<Task> action)
{
try
{
var task = Task.Run(action);
await task;
}
catch (AggregateException aggEx)
{
foreach (Exception ex in aggEx.InnerExceptions)
{
Trace.TraceError($"Error tracking telemetry: {ex}");
}
}
catch (Exception ex)
{
Trace.TraceError($"Error tracking telemetry: {ex}");
}
}
public async Task FlushAsync()
{
await SafeExecuteAsync(async () =>
{
if (_client != null)
{
_client.Flush();
_client = null;
}
await Task.Delay(1000);
});
}
public void Flush()
{
try
{
if (_client != null)
{
_client.Flush();
System.Threading.Thread.Sleep(1000);
_client = null;
}
}
catch (Exception ex)
{
Trace.TraceError("Error tracking telemetry: {0}", ex.ToString());
}
}
private bool RemoteKeyAvailable()
{
// Returns true if a valid AI key or tagged AI key exists
bool validGuid = Guid.TryParse(_currentConfig.RemoteTelemetryKey, out var auxA);
bool taggedGuid = Guid.TryParse(_currentConfig.RemoteTelemetryKey.Substring(4), out var auxB);
return validGuid || taggedGuid;
}
private static string GetVersion()
{
Assembly assembly = Assembly.GetExecutingAssembly();
return assembly.GetName().Version.ToString();
}
private static string GetFileVersion()
{
Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
FileVersionInfo fvi = FileVersionInfo.GetVersionInfo(assembly.Location);
return fvi.FileVersion;
}
~TelemetryService()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
// free managed resources
Flush();
}
// free native resources if any
}
}
}