2 instantiations of HistogramLogAggregator
Microsoft.CodeAnalysis.Features (2)
ChangeSignature\ChangeSignatureTelemetryLogger.cs (1)
18
private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator =
new
(bucketSize: 1000, maxBucketValue: 30000);
Completion\Log\CompletionProvidersLogger.cs (1)
15
private static readonly HistogramLogAggregator<ActionInfo> s_histogramLogAggregator =
new
(bucketSize: 50, maxBucketValue: 1000);
3 references to HistogramLogAggregator
Microsoft.CodeAnalysis.Features (2)
ChangeSignature\ChangeSignatureTelemetryLogger.cs (1)
18
private static readonly
HistogramLogAggregator
<ActionInfo> s_histogramLogAggregator = new(bucketSize: 1000, maxBucketValue: 30000);
Completion\Log\CompletionProvidersLogger.cs (1)
15
private static readonly
HistogramLogAggregator
<ActionInfo> s_histogramLogAggregator = new(bucketSize: 50, maxBucketValue: 1000);
Microsoft.CodeAnalysis.Workspaces (1)
Log\HistogramLogAggregator.cs (1)
15
internal sealed class HistogramLogAggregator<TKey> : AbstractLogAggregator<TKey,
HistogramLogAggregator
<TKey>.HistogramCounter> where TKey : notnull