-
Notifications
You must be signed in to change notification settings - Fork 747
Expand file tree
/
Copy pathPackageSourceTelemetry.cs
More file actions
532 lines (452 loc) · 19.6 KB
/
PackageSourceTelemetry.cs
File metadata and controls
532 lines (452 loc) · 19.6 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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#nullable disable
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using NuGet.Common;
using NuGet.Configuration;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using NuGet.Protocol.Events;
namespace NuGet.VisualStudio.Telemetry
{
public sealed class PackageSourceTelemetry : IDisposable
{
private readonly IReadOnlyDictionary<string, Data> _data;
private readonly IDictionary<string, SourceRepository> _sources;
private readonly Guid _parentId;
private readonly ConcurrentDictionary<string, ConcurrentDictionary<string, string>> _resourceStringTable;
private readonly string _actionName;
private readonly PackageSourceMapping _packageSourceMappingConfiguration;
internal const string EventName = "PackageSourceDiagnostics";
public enum TelemetryAction
{
Unknown = 0,
Restore,
Search
}
public PackageSourceTelemetry(IEnumerable<SourceRepository> sources, Guid parentId, TelemetryAction action, PackageSourceMapping packageSourceMappingConfiguration)
: this(sources, parentId, action)
{
_packageSourceMappingConfiguration = packageSourceMappingConfiguration;
}
public PackageSourceTelemetry(IEnumerable<SourceRepository> sources, Guid parentId, TelemetryAction action)
{
if (sources == null)
{
throw new ArgumentNullException(nameof(sources));
}
// Multiple sources can use the same feed url. We can't know which one protocol events come from, so choose any.
_sources = new Dictionary<string, SourceRepository>();
foreach (var source in sources)
{
_sources[source.PackageSource.Source] = source;
}
var data = new Dictionary<string, Data>(_sources.Count);
foreach ((var source, _) in _sources)
{
data[source] = new Data();
}
_data = data;
_resourceStringTable = new ConcurrentDictionary<string, ConcurrentDictionary<string, string>>();
ProtocolDiagnostics.HttpEvent += ProtocolDiagnostics_HttpEvent;
ProtocolDiagnostics.ResourceEvent += ProtocolDiagnostics_ResourceEvent;
ProtocolDiagnostics.NupkgCopiedEvent += ProtocolDiagnostics_NupkgCopiedEvent;
ProtocolDiagnostics.ServiceIndexEntryEvent += ProtocolDiagnostics_ServiceIndexEntryEvent;
_parentId = parentId;
_actionName = GetActionName(action);
}
private void ProtocolDiagnostics_ServiceIndexEntryEvent(ProtocolDiagnosticServiceIndexEntryEvent pdEvent)
{
if (pdEvent.HttpsSourceHasHttpResource)
{
if (_data.TryGetValue(pdEvent.Source, out Data data))
{
lock (data._lock)
{
data.HttpsSourceHasHttpResource = pdEvent.HttpsSourceHasHttpResource;
}
}
}
}
private static string GetActionName(TelemetryAction action)
{
switch (action)
{
case TelemetryAction.Restore:
case TelemetryAction.Search:
return action.ToString();
default:
throw new ArgumentException("Unknown value of " + nameof(TelemetryAction), nameof(action));
}
}
private void ProtocolDiagnostics_ResourceEvent(ProtocolDiagnosticResourceEvent pdEvent)
{
AddResourceData(pdEvent, _data, _resourceStringTable);
}
internal static void AddResourceData(
ProtocolDiagnosticResourceEvent pdEvent,
IReadOnlyDictionary<string, Data> allData,
ConcurrentDictionary<string, ConcurrentDictionary<string, string>> resourceStringTable)
{
if (!allData.TryGetValue(pdEvent.Source, out Data data))
{
return;
}
var resourceMethodNameTable = resourceStringTable.GetOrAdd(pdEvent.ResourceType, t => new ConcurrentDictionary<string, string>());
var resourceTypeAndMethod = resourceMethodNameTable.GetOrAdd(pdEvent.Method, m => pdEvent.ResourceType + "." + m);
lock (data._lock)
{
if (data.Resources.TryGetValue(resourceTypeAndMethod, out var t))
{
data.Resources[resourceTypeAndMethod] = (t.count + 1, t.duration + pdEvent.Duration);
}
else
{
data.Resources[resourceTypeAndMethod] = (1, pdEvent.Duration);
}
}
}
private void ProtocolDiagnostics_HttpEvent(ProtocolDiagnosticHttpEvent pdEvent)
{
AddHttpData(pdEvent, _data);
}
internal static void AddHttpData(ProtocolDiagnosticHttpEvent pdEvent, IReadOnlyDictionary<string, Data> allData)
{
if (!allData.TryGetValue(pdEvent.Source, out Data data))
{
return;
}
lock (data._lock)
{
var httpData = data.Http;
httpData.Requests++;
httpData.TotalDuration += pdEvent.EventDuration;
// If any one event header duration is null, we want the HttpData value to be null,
// since the request count would otherwise be incorrect. C# nullable does this automatically for us.
httpData.HeaderDuration += pdEvent.HeaderDuration;
if (pdEvent.IsSuccess)
{
httpData.Successful++;
}
if (pdEvent.IsRetry)
{
httpData.Retries++;
}
if (pdEvent.IsCancelled)
{
httpData.Cancelled++;
}
if (pdEvent.IsLastAttempt && !pdEvent.IsSuccess && !pdEvent.IsCancelled)
{
httpData.Failed++;
}
if (pdEvent.Bytes > 0)
{
httpData.TotalBytes += pdEvent.Bytes;
}
if (pdEvent.HttpStatusCode.HasValue)
{
if (!httpData.StatusCodes.TryGetValue(pdEvent.HttpStatusCode.Value, out var count))
{
count = 0;
}
httpData.StatusCodes[pdEvent.HttpStatusCode.Value] = count + 1;
}
}
}
private void ProtocolDiagnostics_NupkgCopiedEvent(ProtocolDiagnosticNupkgCopiedEvent ncEvent)
{
AddNupkgCopiedData(ncEvent, _data);
}
internal static void AddNupkgCopiedData(ProtocolDiagnosticNupkgCopiedEvent ncEvent, IReadOnlyDictionary<string, Data> allData)
{
if (!allData.TryGetValue(ncEvent.Source, out Data data))
{
return;
}
lock (data._lock)
{
data.NupkgCount++;
data.NupkgSize += ncEvent.FileSize;
data.IdContainsNonAlphanumericDotDashOrUnderscoreCharacter = data.IdContainsNonAlphanumericDotDashOrUnderscoreCharacter || (ncEvent.PackageId != null && HasNonAlphanumericDotDashOrUnderscoreCharacters(ncEvent.PackageId));
}
bool HasNonAlphanumericDotDashOrUnderscoreCharacters(string packageId)
{
foreach (char c in packageId.AsSpan())
{
if (!IsCharacterAlphanumericDotDashOrUnderscore(c))
{
return true;
}
}
return false;
bool IsCharacterAlphanumericDotDashOrUnderscore(char c)
{
return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '.' || c == '-' || c == '_';
}
}
}
public void Dispose()
{
ProtocolDiagnostics.HttpEvent -= ProtocolDiagnostics_HttpEvent;
ProtocolDiagnostics.ResourceEvent -= ProtocolDiagnostics_ResourceEvent;
ProtocolDiagnostics.NupkgCopiedEvent -= ProtocolDiagnostics_NupkgCopiedEvent;
}
public async Task SendTelemetryAsync()
{
var parentId = _parentId.ToString();
foreach (var kvp in _data)
{
Data data = kvp.Value;
string source = kvp.Key;
if (!_sources.TryGetValue(kvp.Key, out SourceRepository sourceRepository))
{
// Should not be possible. This is just defensive programming to avoid an exception being thrown in case I'm wrong.
sourceRepository = new SourceRepository(new PackageSource(source), Repository.Provider.GetCoreV3());
}
var telemetry = await ToTelemetryAsync(data, sourceRepository, parentId, _actionName, _packageSourceMappingConfiguration);
if (telemetry != null)
{
TelemetryActivity.EmitTelemetryEvent(telemetry);
}
}
}
internal static async Task<TelemetryEvent> ToTelemetryAsync(Data data, SourceRepository sourceRepository, string parentId, string actionName, PackageSourceMapping packageSourceMappingConfiguration)
{
if (data.Resources.Count == 0)
{
return null;
}
FeedType feedType = await sourceRepository.GetFeedType(CancellationToken.None);
TelemetryEvent telemetry;
lock (data._lock)
{
bool isPackageSourceMappingEnabled = packageSourceMappingConfiguration?.IsEnabled ?? false;
telemetry = new TelemetryEvent(EventName,
new Dictionary<string, object>()
{
{ PropertyNames.ParentId, parentId },
{ PropertyNames.Action, actionName },
{ PropertyNames.PackageSourceMapping.IsMappingEnabled, isPackageSourceMappingEnabled }
});
AddSourceProperties(telemetry, sourceRepository, feedType);
telemetry[PropertyNames.Duration.Total] = data.Resources.Values.Sum(r => r.duration.TotalMilliseconds);
telemetry[PropertyNames.Nupkgs.Copied] = data.NupkgCount;
telemetry[PropertyNames.Nupkgs.Bytes] = data.NupkgSize;
telemetry[PropertyNames.Nupkgs.IdContainsNonAlphanumericDotDashOrUnderscoreCharacter] = data.IdContainsNonAlphanumericDotDashOrUnderscoreCharacter;
AddResourceProperties(telemetry, data.Resources);
if (data.Http.Requests > 0)
{
AddHttpProperties(telemetry, data.Http);
}
}
return telemetry;
}
private static void AddSourceProperties(TelemetryEvent telemetry, SourceRepository sourceRepository, FeedType feedType)
{
telemetry.AddPiiData(PropertyNames.Source.Url, sourceRepository.PackageSource.Source);
telemetry[PropertyNames.Source.Type] = feedType;
var msFeed = GetMsFeed(sourceRepository.PackageSource);
if (msFeed != null)
{
telemetry[PropertyNames.Source.MSFeed] = msFeed;
}
}
private static void AddResourceProperties(TelemetryEvent telemetry, Dictionary<string, (int count, TimeSpan duration)> resources)
{
telemetry[PropertyNames.Resources.Calls] = resources.Values.Sum(r => r.count);
telemetry.ComplexData[PropertyNames.Resources.Details] = ToResourceDetailsTelemetry(resources);
}
private static void AddHttpProperties(TelemetryEvent telemetry, HttpData data)
{
telemetry[PropertyNames.Http.Requests] = data.Requests;
telemetry[PropertyNames.Http.Successful] = data.Successful;
telemetry[PropertyNames.Http.Retries] = data.Retries;
telemetry[PropertyNames.Http.Cancelled] = data.Cancelled;
telemetry[PropertyNames.Http.Failed] = data.Failed;
telemetry[PropertyNames.Http.Bytes] = data.TotalBytes;
telemetry[PropertyNames.Http.Duration.Total] = data.TotalDuration.TotalMilliseconds;
if (data.HeaderDuration != null)
{
telemetry[PropertyNames.Http.Duration.Header] = data.HeaderDuration.Value.TotalMilliseconds;
}
if (data.StatusCodes.Count > 0)
{
telemetry.ComplexData[PropertyNames.Http.StatusCodes] = ToStatusCodeTelemetry(data.StatusCodes);
}
}
private static TelemetryEvent ToResourceDetailsTelemetry(Dictionary<string, (int count, TimeSpan duration)> resources)
{
var subevent = new TelemetryEvent(eventName: string.Empty);
foreach (var resource in resources)
{
var details = new TelemetryEvent(eventName: string.Empty);
details["count"] = resource.Value.count;
details["duration"] = resource.Value.duration.TotalMilliseconds;
subevent.ComplexData[resource.Key] = details;
}
return subevent;
}
private static TelemetryEvent ToStatusCodeTelemetry(Dictionary<int, int> statusCodes)
{
var subevent = new TelemetryEvent(eventName: string.Empty);
foreach (var pair in statusCodes)
{
subevent[pair.Key.ToString(CultureInfo.CurrentCulture)] = pair.Value;
}
return subevent;
}
internal static string GetMsFeed(PackageSource source)
{
if (source.IsHttp)
{
if (UriUtility.IsNuGetOrg(source.Source))
{
return "nuget.org";
}
else if (TelemetryUtility.IsAzureArtifacts(source))
{
return "Azure DevOps";
}
else if (TelemetryUtility.IsGitHub(source))
{
return "GitHub";
}
}
else if (source.IsLocal)
{
if (TelemetryUtility.IsVsOfflineFeed(source))
{
return "VS Offline";
}
}
return null;
}
public Totals GetTotals()
{
return GetTotals(_data);
}
internal static Totals GetTotals(IReadOnlyDictionary<string, Data> data)
{
int requests = 0;
long bytes = 0;
int numberOfSourcesWithAnHttpResource = 0;
TimeSpan duration = TimeSpan.Zero;
foreach (var source in data)
{
lock (source.Value._lock)
{
foreach (var resource in source.Value.Resources.Values)
{
requests += resource.count;
duration += resource.duration;
}
bytes += source.Value.NupkgSize;
}
if (source.Value.HttpsSourceHasHttpResource)
{
numberOfSourcesWithAnHttpResource++;
}
}
return new Totals(requests, bytes, duration, numberOfSourcesWithAnHttpResource);
}
public class Totals
{
public Totals(int requests, long bytes, TimeSpan duration, int numberOfSourcesWithAnHttpResource)
{
Requests = requests;
Bytes = bytes;
Duration = duration;
NumberOfSourcesWithAnHttpResource = numberOfSourcesWithAnHttpResource;
}
public int Requests { get; }
public long Bytes { get; }
public TimeSpan Duration { get; }
public int NumberOfSourcesWithAnHttpResource { get; }
}
internal class Data
{
internal bool HttpsSourceHasHttpResource { get; set; }
internal object _lock;
internal Dictionary<string, (int count, TimeSpan duration)> Resources { get; }
internal HttpData Http { get; }
internal int NupkgCount { get; set; }
internal long NupkgSize { get; set; }
internal bool IdContainsNonAlphanumericDotDashOrUnderscoreCharacter { get; set; }
internal Data()
{
_lock = new object();
Resources = new Dictionary<string, (int count, TimeSpan duration)>();
Http = new HttpData();
HttpsSourceHasHttpResource = false;
}
}
internal class HttpData
{
public int Requests;
public TimeSpan TotalDuration;
public TimeSpan? HeaderDuration;
public long TotalBytes;
public readonly Dictionary<int, int> StatusCodes = new Dictionary<int, int>();
public int Successful;
public int Retries;
public int Cancelled;
public int Failed;
public HttpData()
{
HeaderDuration = TimeSpan.Zero;
}
}
internal static class PropertyNames
{
internal const string ParentId = "parentid";
internal const string Action = "action";
internal static class Source
{
internal const string Url = "source.url";
internal const string Type = "source.type";
internal const string MSFeed = "source.msfeed";
}
internal static class Duration
{
internal const string Total = "duration.total";
}
internal static class Nupkgs
{
internal const string Copied = "nupkgs.copied";
internal const string Bytes = "nupkgs.bytes";
internal const string IdContainsNonAlphanumericDotDashOrUnderscoreCharacter = "nupkgs.idcontainsNonAlphanumericDotDashOrUnderscorecharacter";
}
internal static class Resources
{
internal const string Calls = "resources.calls";
internal const string Details = "resources.details";
}
internal static class Http
{
internal const string Requests = "http.requests";
internal const string Successful = "http.successful";
internal const string Retries = "http.retries";
internal const string Cancelled = "http.cancelled";
internal const string Failed = "http.failed";
internal const string Bytes = "http.bytes";
internal const string StatusCodes = "http.statuscodes";
internal static class Duration
{
internal const string Total = "http.duration.total";
internal const string Header = "http.duration.header";
}
}
internal static class PackageSourceMapping
{
internal const string IsMappingEnabled = "PackageSourceMapping.IsMappingEnabled";
}
}
}
}