6 instantiations of HistogramLogAggregator
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\AsyncCompletionLogger.cs (1)
14private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(25, 500);
Microsoft.CodeAnalysis.Features (2)
ChangeSignature\ChangeSignatureTelemetryLogger.cs (1)
20private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(bucketSize: 1000, maxBucketValue: 30000);
Completion\Log\CompletionProvidersLogger.cs (1)
15private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(bucketSize: 50, maxBucketValue: 1000);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\RequestTelemetryLogger.cs (2)
60_queuedDurationLogAggregator = new HistogramLogAggregator<string>(bucketSize: 10, maxBucketValue: 1000); 64_requestDurationLogAggregator = new HistogramLogAggregator<string>(bucketSize: 1, maxBucketValue: 40);
Microsoft.VisualStudio.LanguageServices (1)
InheritanceMargin\InheritanceMarginLogger.cs (1)
13private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(1000, 60000);
7 references to HistogramLogAggregator
Microsoft.CodeAnalysis.EditorFeatures (1)
IntelliSense\AsyncCompletion\AsyncCompletionLogger.cs (1)
14private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(25, 500);
Microsoft.CodeAnalysis.Features (2)
ChangeSignature\ChangeSignatureTelemetryLogger.cs (1)
20private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(bucketSize: 1000, maxBucketValue: 30000);
Completion\Log\CompletionProvidersLogger.cs (1)
15private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(bucketSize: 50, maxBucketValue: 1000);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\RequestTelemetryLogger.cs (2)
27private readonly HistogramLogAggregator<string> _queuedDurationLogAggregator; 37private readonly HistogramLogAggregator<string> _requestDurationLogAggregator;
Microsoft.CodeAnalysis.Workspaces (1)
Log\HistogramLogAggregator.cs (1)
15internal sealed class HistogramLogAggregator<TKey> : AbstractLogAggregator<TKey, HistogramLogAggregator<TKey>.HistogramCounter> where TKey : notnull
Microsoft.VisualStudio.LanguageServices (1)
InheritanceMargin\InheritanceMarginLogger.cs (1)
13private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator = new(1000, 60000);